/* ============================================================
   HOME.CSS — SHOP.SN Homepage Styles
   Conversion-optimized — 13 sections
   ============================================================ */

/* ============================================================
   HP-SECTION — Shared section layout
   ============================================================ */
.hp-section {
  margin-bottom: var(--space-10);
}

.hp-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.hp-section__header-left {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hp-section__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  white-space: nowrap;
}

.hp-section__title i {
  color: var(--color-primary);
  font-size: var(--fs-2xl);
}

.hp-section__see-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  white-space: nowrap;
  transition: gap var(--transition-fast);
}

.hp-section__see-all:hover {
  gap: var(--space-2);
  color: var(--color-primary-light);
}

/* ============================================================
   1. HERO SLIDER
   ============================================================ */
.hp-hero {
  margin-bottom: var(--space-6);
}

.hp-hero__slider {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.hp-hero__track {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.hp-hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.hp-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hp-hero__slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: var(--space-8) var(--space-10);
  gap: var(--space-8);
}

.hp-hero__slide--gradient-1 {
  background: linear-gradient(135deg, #1a0800 0%, #3d1500 40%, var(--color-primary-dark) 100%);
}

.hp-hero__slide--gradient-2 {
  background: linear-gradient(135deg, #001a33 0%, #003366 40%, var(--color-secondary) 100%);
}

.hp-hero__slide--gradient-3 {
  background: linear-gradient(135deg, #1a0033 0%, #4d0099 40%, #8b00cc 100%);
}

.hp-hero__content {
  flex: 1;
  min-width: 0;
}

.hp-hero__badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: #fff;
  margin-bottom: var(--space-3);
}

.hp-hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--space-2);
}

.hp-hero__subtitle {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: var(--space-4);
  max-width: 420px;
}

.hp-hero__prices {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.hp-hero__price {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
}

.hp-hero__old-price {
  font-size: var(--fs-base);
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

.hp-hero__discount {
  display: inline-block;
  padding: 2px var(--space-2);
  background: var(--color-red-deals);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-sm);
}

.hp-hero__ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hp-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.hp-hero__btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.hp-hero__btn--primary:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-1px);
}

.hp-hero__btn--ghost {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.hp-hero__btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.hp-hero__visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-hero__img-placeholder {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  color: rgba(255,255,255,0.3);
}

.hp-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: var(--fs-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.hp-hero__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.hp-hero__arrow--prev { left: var(--space-3); }
.hp-hero__arrow--next { right: var(--space-3); }

.hp-hero__dots {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 2;
}

.hp-hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hp-hero__dot.is-active {
  width: 28px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
}

/* ============================================================
   2. TRUST BAND
   ============================================================ */
.hp-trust {
  margin-bottom: var(--space-8);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.hp-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hp-trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-right: 1px solid var(--border-default);
}

.hp-trust__item:last-child {
  border-right: none;
}

.hp-trust__item > i {
  font-size: var(--fs-2xl);
  color: var(--color-primary);
  flex-shrink: 0;
}

.hp-trust__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hp-trust__text strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.hp-trust__text span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ============================================================
   3. FLASH DEALS
   ============================================================ */
.hp-flash__timer {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hp-flash__timer-label {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.hp-flash__timer-blocks {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.hp-flash__timer-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 30px;
  padding: 0 var(--space-2);
  background: var(--color-red-deals);
  color: #fff;
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  border-radius: var(--radius-sm);
  font-variant-numeric: tabular-nums;
}

.hp-flash__timer-sep {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-red-deals);
}

/* ============================================================
   PRODUCT CARD — Shared across sections
   ============================================================ */
.hp-products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-3);
}

.hp-products-grid--scroll {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  padding-bottom: var(--space-3);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border-light) transparent;
}

.hp-products-grid--scroll::-webkit-scrollbar {
  height: 4px;
}

.hp-products-grid--scroll::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 2px;
}

.hp-products-grid--scroll .hp-product-card {
  flex: 0 0 195px;
  scroll-snap-align: start;
}

.hp-product-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-product-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 28px rgba(253,98,5,0.12), 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.hp-product-card__badge {
  position: absolute;
  top: var(--space-2);
  left: var(--space-2);
  padding: 2px var(--space-2);
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  color: #fff;
  border-radius: var(--radius-sm);
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hp-product-card__badge--red { background: var(--color-red-deals); }
.hp-product-card__badge--orange { background: var(--color-primary); }
.hp-product-card__badge--green { background: var(--color-green-success); }
.hp-product-card__badge--gold { background: linear-gradient(135deg, #c9a84c, #e8c547); color: #1a1a1a; }

.hp-product-card__wishlist {
  position: absolute;
  top: var(--space-2);
  right: var(--space-2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--fs-base);
  cursor: pointer;
  z-index: 1;
  transition: all var(--transition-fast);
  opacity: 0;
  transform: scale(0.8);
}

.hp-product-card:hover .hp-product-card__wishlist {
  opacity: 1;
  transform: scale(1);
}

.hp-product-card__wishlist:hover {
  background: var(--color-red-deals);
  border-color: var(--color-red-deals);
  color: #fff;
}

.hp-product-card__img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  font-size: 52px;
  color: var(--text-faint);
  position: relative;
  overflow: hidden;
  transition: background var(--transition-fast);
}

.hp-product-card:hover .hp-product-card__img {
  background: var(--bg-body);
}

.hp-product-card__info {
  padding: var(--space-3) var(--space-3) var(--space-1);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-product-card__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hp-product-card__prices {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.hp-product-card__price {
  font-size: var(--fs-sm);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
}

.hp-product-card__old {
  font-size: var(--fs-xs);
  color: var(--text-faint);
  text-decoration: line-through;
}

.hp-product-card__rating {
  font-size: var(--fs-xs);
  color: var(--color-primary);
  letter-spacing: 0.5px;
}

.hp-product-card__rating span {
  color: var(--text-muted);
  font-weight: var(--fw-regular);
}

.hp-product-card__seller {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.hp-product-card__seller strong {
  color: var(--text-secondary);
}

.hp-product-card__delivery {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: var(--color-green-success);
}

.hp-product-card__delivery i {
  font-size: var(--fs-xs);
}

.hp-product-card__stock {
  position: relative;
  height: 16px;
  background: var(--bg-surface);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: var(--space-1);
}

.hp-product-card__stock-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-red-deals), var(--color-primary));
  border-radius: var(--radius-pill);
  transition: width 0.6s ease;
}

.hp-product-card__stock span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 9px;
  font-weight: var(--fw-bold);
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.hp-product-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 7px var(--space-3);
  margin: auto var(--space-3) var(--space-3);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  opacity: 0.9;
}

.hp-product-card:hover .hp-product-card__btn {
  opacity: 1;
}

.hp-product-card__btn:hover {
  background: var(--color-primary-light);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   4. CATEGORIES POPULAIRES
   ============================================================ */
.hp-cats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.hp-cats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-5) var(--space-3);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.hp-cats__item:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(253,98,5,0.1);
}

.hp-cats__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  transition: all var(--transition-fast);
}

.hp-cats__item:hover .hp-cats__icon {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.hp-cats__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: 2px;
}

.hp-cats__count {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ============================================================
   6. BANNER — Large promo
   ============================================================ */
.hp-banner {
  margin-bottom: var(--space-10);
}

.hp-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-8) var(--space-10);
  border-radius: var(--radius-xl);
  gap: var(--space-6);
  overflow: hidden;
  position: relative;
}

.hp-banner__inner--gradient-primary {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
}

.hp-banner__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-2);
}

.hp-banner__title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extrabold);
  color: #fff;
  line-height: 1.2;
  margin-bottom: var(--space-2);
}

.hp-banner__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-5);
  max-width: 440px;
}

.hp-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: #fff;
  color: var(--color-primary-dark);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.hp-banner__btn:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  color: var(--color-primary-dark);
}

.hp-banner__visual {
  flex-shrink: 0;
  font-size: 80px;
  color: rgba(255,255,255,0.15);
}

/* ============================================================
   8. BRANDS
   ============================================================ */
.hp-brands__row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hp-brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 var(--space-6);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.hp-brands__item span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast);
}

.hp-brands__item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.hp-brands__item:hover span {
  color: var(--color-primary);
}

/* ============================================================
   9. DOUBLE BANNER
   ============================================================ */
.hp-double-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hp-double-banner__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-xl);
  transition: all var(--transition-fast);
  overflow: hidden;
  position: relative;
}

.hp-double-banner__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.hp-double-banner__item--1 {
  background: linear-gradient(135deg, #1a0800, var(--color-primary-dark));
}

.hp-double-banner__item--2 {
  background: linear-gradient(135deg, #001a33, var(--color-secondary));
}

.hp-double-banner__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hp-double-banner__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.hp-double-banner__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  color: #fff;
}

.hp-double-banner__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
}

.hp-double-banner__icon {
  font-size: 56px;
  color: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ============================================================
   11. SELLERS
   ============================================================ */
.hp-sellers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.hp-sellers__card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.hp-sellers__card:hover {
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

.hp-sellers__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: #fff;
  flex-shrink: 0;
}

.hp-sellers__info {
  flex: 1;
  min-width: 0;
}

.hp-sellers__name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  display: block;
}

.hp-sellers__meta {
  font-size: var(--fs-xs);
  color: var(--color-primary);
  margin-top: 2px;
}

.hp-sellers__tag {
  display: inline-block;
  margin-top: var(--space-1);
  padding: 1px var(--space-2);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
}

/* ============================================================
   12. REVIEWS
   ============================================================ */
.hp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.hp-reviews__card {
  padding: var(--space-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.hp-reviews__stars {
  font-size: var(--fs-base);
  color: var(--color-primary);
  letter-spacing: 2px;
}

.hp-reviews__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  flex: 1;
}

.hp-reviews__author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border-default);
}

.hp-reviews__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  flex-shrink: 0;
}

.hp-reviews__author strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  display: block;
}

.hp-reviews__author span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ============================================================
   13. CTA BOTTOM — Newsletter + App
   ============================================================ */
.hp-cta-bottom {
  margin-bottom: var(--space-8);
}

.hp-cta-bottom__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.hp-cta-bottom__newsletter,
.hp-cta-bottom__app {
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  text-align: center;
}

.hp-cta-bottom__newsletter {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: #fff;
}

.hp-cta-bottom__app {
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  color: var(--text-primary);
}

.hp-cta-bottom__newsletter > i,
.hp-cta-bottom__app > i {
  font-size: 40px;
  margin-bottom: var(--space-3);
  display: block;
}

.hp-cta-bottom__newsletter > i {
  color: rgba(255,255,255,0.8);
}

.hp-cta-bottom__app > i {
  color: var(--color-primary);
}

.hp-cta-bottom__newsletter h3,
.hp-cta-bottom__app h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-2);
}

.hp-cta-bottom__newsletter p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--space-5);
}

.hp-cta-bottom__app p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.hp-cta-bottom__form {
  display: flex;
  gap: var(--space-2);
  max-width: 360px;
  margin: 0 auto;
}

.hp-cta-bottom__input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: var(--fs-sm);
}

.hp-cta-bottom__input::placeholder {
  color: rgba(255,255,255,0.6);
}

.hp-cta-bottom__btn {
  padding: var(--space-3) var(--space-5);
  background: #fff;
  color: var(--color-primary-dark);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.hp-cta-bottom__btn:hover {
  background: #f5f5f5;
}

.hp-cta-bottom__stores {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
}

.hp-cta-bottom__store {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.hp-cta-bottom__store:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.hp-cta-bottom__store i {
  font-size: var(--fs-xl);
}

/* ============================================================
   RESPONSIVE — Homepage
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hp-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hp-cats__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hp-sellers__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-hero__title {
    font-size: var(--fs-2xl);
  }

  .hp-hero__img-placeholder {
    width: 160px;
    height: 160px;
    font-size: 56px;
  }

  .hp-banner__inner {
    padding: var(--space-6) var(--space-8);
  }

  .hp-banner__visual {
    font-size: 60px;
  }
}

/* Mobile large */
@media (max-width: 768px) {
  .hp-section {
    margin-bottom: var(--space-8);
  }

  .hp-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }

  .hp-products-grid--scroll .hp-product-card {
    flex: 0 0 170px;
  }

  .hp-hero__slide-inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-5) var(--space-4);
  }

  .hp-hero__visual {
    display: none;
  }

  .hp-hero__subtitle {
    max-width: 100%;
  }

  .hp-hero__prices {
    justify-content: center;
  }

  .hp-hero__ctas {
    justify-content: center;
  }

  .hp-hero__title {
    font-size: var(--fs-xl);
  }

  .hp-hero__track {
    height: 280px;
  }

  .hp-product-card__wishlist {
    opacity: 1;
    transform: scale(1);
  }

  .hp-trust__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-trust__item {
    border-right: none;
    border-bottom: 1px solid var(--border-default);
  }

  .hp-trust__item:nth-child(odd) {
    border-right: 1px solid var(--border-default);
  }

  .hp-trust__item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .hp-cats__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }

  .hp-cats__icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  .hp-cats__name {
    font-size: var(--fs-xs);
  }

  .hp-cats__item {
    padding: var(--space-3) var(--space-2);
  }

  .hp-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-6);
  }

  .hp-banner__visual {
    font-size: 48px;
  }

  .hp-banner__text {
    max-width: 100%;
  }

  .hp-double-banner {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .hp-double-banner__item {
    padding: var(--space-5) var(--space-6);
  }

  .hp-sellers__grid {
    grid-template-columns: 1fr;
  }

  .hp-reviews__grid {
    grid-template-columns: 1fr;
  }

  .hp-cta-bottom__inner {
    grid-template-columns: 1fr;
  }

  .hp-section__title {
    font-size: var(--fs-lg);
  }

  .hp-section__title i {
    font-size: var(--fs-xl);
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .hp-cats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2);
  }

  .hp-product-card__img {
    height: 120px;
    font-size: 36px;
  }

  .hp-products-grid--scroll .hp-product-card {
    flex: 0 0 155px;
  }

  .hp-product-card__info {
    padding: var(--space-2);
  }

  .hp-product-card__name {
    font-size: var(--fs-xs);
  }

  .hp-product-card__price {
    font-size: var(--fs-sm);
  }

  .hp-product-card__btn {
    margin: 0 var(--space-2) var(--space-2);
    padding: var(--space-2);
    font-size: 10px;
  }

  .hp-flash__timer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
  }

  .hp-cta-bottom__form {
    flex-direction: column;
  }

  .hp-cta-bottom__newsletter,
  .hp-cta-bottom__app {
    padding: var(--space-6);
  }

  .hp-cta-bottom__stores {
    flex-direction: column;
    align-items: center;
  }

  .hp-trust__inner {
    grid-template-columns: 1fr;
  }

  .hp-trust__item {
    border-right: none !important;
    border-bottom: 1px solid var(--border-default);
  }

  .hp-trust__item:last-child {
    border-bottom: none;
  }
}
