.lm-hot-deals-products {
  --lm-fp-accent: #b8956a;
  --lm-fp-primary: #2c1810;
  --lm-fp-secondary: #f5f3f1;
  --lm-fp-card-bg: #ffffff;
  --lm-fp-border: rgba(44, 24, 16, 0.08);
  --lm-fp-muted: #7c6a60;
  --lm-fp-variant-size: 38px;
  padding: 18px 0 30px;
  background: var(--lm-fp-secondary);
}

.lm-hot-deals-products.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.lm-hdp__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
}

.lm-hdp__title {
  margin: 0 0 12px;
  padding: 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--lm-fp-primary);
}

.lm-hdp__tabs-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2ddd8;
  box-shadow: 0 4px 12px rgba(44, 24, 16, 0.07);
  scrollbar-width: thin;
}

.lm-hdp__tab {
  border: 0;
  background: transparent;
  color: #59524c;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  padding: 20px 28px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: max-content;
  cursor: pointer;
  border-bottom: 4px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lm-hdp__tab:hover {
  color: #8d6b49;
}

.lm-hdp__tab.is-active {
  color: #ad8458;
  border-bottom-color: #b8956a;
}

.lm-hdp__tab-count {
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #efebe8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.lm-hdp__grid {
  margin-top: 18px;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.lm-hdp__page {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  scroll-snap-align: start;
}

.lm-hdp__page .lm-product-card {
  width: 100%;
  min-width: 0;
  max-width: none;
}

.lm-hdp__page .lm-product-card.is-hidden {
  display: none;
}

.lm-hot-deals-products .lm-product-card__media {
  aspect-ratio: 5 / 4;
}

.lm-hot-deals-products .lm-product-card__variants {
  gap: 8px;
}

.lm-hot-deals-products .lm-product-card__variant {
  border-radius: 10px;
}

.lm-hot-deals-products .lm-product-card__variant-icon {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

@media (max-width: 980px) {
  .lm-hdp__page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lm-hdp__tab {
    padding: 16px 20px 14px;
    gap: 10px;
  }

  .lm-hdp__tab-count {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .lm-hot-deals-products {
    padding: 12px 0 20px;
  }

  .lm-hdp__inner {
    padding: 0 8px;
  }

  .lm-hdp__title {
    margin-bottom: 10px;
    padding: 0 8px;
  }

  .lm-hdp__grid {
    padding: 0 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .lm-hdp__grid::-webkit-scrollbar {
    display: none;
  }

  .lm-hdp__page {
    grid-template-columns: minmax(0, 1fr);
  }

  .lm-hdp__page .lm-product-card {
    max-width: 100%;
  }
}
