/* ================================================================
   HOME PAGE — Professional Generic E-commerce Redesign
   Palette: White base · Plum primary · Warm amber accent
   Type: Cormorant Garamond display + Jost body
   ================================================================ */

/* ── Shared home tokens ──────────────────────────────────────── */
.hp-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.hp-section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.1;
  margin: 0;
}

.hp-section-title em {
  font-style: italic;
  color: var(--primary);
}

.hp-section-sub {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 12px;
}

/* Section header row */
.hp-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 20px;
}
.hp-section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
}
.hp-section-head__left { flex: 1; }

/* Arrow link */
.hp-link-arrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary) !important;
  white-space: nowrap;
  transition: gap 0.3s;
}
.hp-link-arrow:hover { gap: 14px; }

/* Buttons */
.hp-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 3px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  border: none;
}
.hp-btn--solid {
  background: var(--primary);
  color: var(--white) !important;
}
.hp-btn--solid:hover {
  background: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,61,94,0.25);
}
.hp-btn--line {
  background: transparent;
  color: var(--heading) !important;
  border: 1.5px solid var(--sand);
}
.hp-btn--line:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
}
.hp-btn--outline {
  background: transparent;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
}
.hp-btn--outline:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* ================================================================
   1. HERO
   ================================================================ */
.hp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}

.hp-hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 64px 80px;
  position: relative;
  z-index: 2;
}

/* Decorative circle behind text */
.hp-hero__left::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,61,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  color: var(--primary);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 40px;
  margin-bottom: 28px;
  width: fit-content;
  border: 1px solid rgba(107,61,94,0.15);
}

.hp-hero__title {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 500;
  color: var(--heading);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hp-hero__title span {
  color: var(--primary);
  position: relative;
}

/* Underline decoration on keyword */
.hp-hero__title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-light);
  border-radius: 2px;
  opacity: 0.5;
}

.hp-hero__sub {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 36px;
}

.hp-hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hp-hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.hp-hero__trust-item i {
  color: var(--primary-light);
  font-size: 14px;
}

/* Right: category cards */
.hp-hero__right {
  position: relative;
  overflow: hidden;
}

.hp-hero__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  height: 100%;
}

.hp-hero__card {
  display: flex !important;
  align-items: flex-end;
  padding: 20px;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.5s var(--ease);
}

.hp-hero__card:first-child {
  grid-row: 1 / 3;
}

.hp-hero__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,19,24,0.65) 0%, rgba(30,19,24,0.05) 55%);
  transition: opacity 0.4s;
}

.hp-hero__card:hover .hp-hero__card-overlay {
  opacity: 0.8;
}

.hp-hero__card:hover {
  transform: scale(1.02);
  z-index: 2;
}

.hp-hero__card-info {
  position: relative;
  z-index: 2;
}

.hp-hero__card-name {
  display: block;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}

.hp-hero__card:first-child .hp-hero__card-name { font-size: 30px; }

.hp-hero__card-count {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

/* ================================================================
   2. MARQUEE TRUST BAR
   ================================================================ */
.hp-marquee {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
}

.hp-marquee__inner {
  display: flex;
  gap: 0;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.hp-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}

.hp-marquee__item i {
  font-size: 5px;
  color: rgba(255,255,255,0.4);
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.hp-marquee:hover .hp-marquee__inner {
  animation-play-state: paused;
}

/* ================================================================
   3. CATEGORIES
   ================================================================ */
.hp-cats { padding: 96px 0 0; }

.hp-cats__fluid { padding: 0 20px; margin-top: 40px; }

/* Masonry-style grid */
.hp-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 260px;
  gap: 12px;
  margin-bottom: 24px;
}

.hp-cats__card {
  display: flex !important;
  align-items: flex-end;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  cursor: pointer;
}

.hp-cats__card--lg {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.hp-cats__card--tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
}

.hp-cats__card--sm {
  grid-column: auto;
  grid-row: auto;
}

.hp-cats__card:hover {
  transform: scale(1.015);
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  z-index: 3;
}

.hp-cats__card-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,12,18,0.72) 0%,
    rgba(20,12,18,0.08) 50%,
    transparent 100%
  );
  transition: opacity 0.4s;
}

.hp-cats__card:hover .hp-cats__card-veil {
  opacity: 0.85;
}

.hp-cats__card-body {
  position: relative;
  z-index: 2;
  padding: 24px 26px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hp-cats__card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

.hp-cats__card--lg .hp-cats__card-name { font-size: 36px; }
.hp-cats__card--tall .hp-cats__card-name { font-size: 28px; }

.hp-cats__card-meta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}

.hp-cats__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 13px;
  margin-top: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.hp-cats__card:hover .hp-cats__card-arrow {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Category pill strip */
.hp-cats__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  padding-bottom: 80px;
}

.hp-cats__pill {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 40px;
  border: 1.5px solid var(--sand);
  background: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--body-txt) !important;
  transition: all 0.3s var(--ease);
}

.hp-cats__pill em {
  display: inline-block;
  background: var(--smoke);
  color: var(--muted);
  font-style: normal;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 20px;
}

.hp-cats__pill:hover {
  border-color: var(--primary);
  color: var(--primary) !important;
  background: var(--primary-pale);
}

.hp-cats__pill:hover em {
  background: rgba(107,61,94,0.1);
  color: var(--primary);
}

.hp-cats__pill--more {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white) !important;
  font-weight: 600;
}

.hp-cats__pill--more:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white) !important;
}

/* ================================================================
   4. VALUE PROPS
   ================================================================ */
.hp-values {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

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

.hp-values__item {
  padding: 40px 36px;
  text-align: center;
  position: relative;
  transition: background 0.3s;
}

.hp-values__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: var(--sand);
}

.hp-values__item:last-child::after { display: none; }

.hp-values__item:hover {
  background: var(--white);
  border-radius: var(--radius);
}

.hp-values__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 22px;
  color: var(--primary);
  transition: all 0.3s;
}

.hp-values__item:hover .hp-values__icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.hp-values__item h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.hp-values__item p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
}

/* ================================================================
   5. BEST SELLERS
   ================================================================ */
.hp-sellers {
  padding: 100px 0;
}

/* Tabs */
.hp-sellers__tabs {
  display: flex;
  gap: 0;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
}

.hp-tab {
  padding: 9px 22px;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.hp-tab.is-active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(107,61,94,0.25);
}

.hp-tab:hover:not(.is-active) {
  color: var(--primary);
  background: rgba(107,61,94,0.06);
}

/* Panels */
.hp-panel { display: none; }
.hp-panel.is-active { display: block; }

.hp-sellers__footer {
  text-align: center;
  margin-top: 52px;
}

/* ── Best sellers product grid ────────────────────────────── */
.hp-sellers .best-sellers-products-main ul.products,
.hp-panel .best-sellers-products-main ul.products {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 3px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ── Homepage card overrides (applied on top of shop.css) ── */
/* Use sans-serif for card titles on homepage for clean look */
.hp-sellers .sp-card__title a,
.hp-arrivals .sp-card__title a,
.hp-featured .sp-card__title a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0;
}

/* Ensure cards stretch to fill grid rows evenly */
.hp-sellers .sp-card,
.hp-arrivals .sp-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.hp-sellers .sp-card__inner,
.hp-arrivals .sp-card__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hp-sellers .sp-card__body,
.hp-arrivals .sp-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hp-sellers .sp-card__footer,
.hp-arrivals .sp-card__footer {
  margin-top: auto;
}

/* Slick slide cards need full height */
.hp-arrivals .slick-slide .sp-card { height: 100%; }
.hp-arrivals .slick-slide li { height: 100%; }

/* ================================================================
   6. PROMO BLOCKS
   ================================================================ */
.hp-promo { padding: 0 0 100px; }

.hp-promo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hp-promo__card {
  border-radius: 16px;
  overflow: hidden;
  padding: 56px 52px;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.hp-promo__card--a {
  background: linear-gradient(135deg, #4a2840 0%, #6b3d5e 50%, #9b6585 100%);
}

.hp-promo__card--b {
  background: linear-gradient(135deg, #2a3d48 0%, #3d5e6b 50%, #6585a0 100%);
}

/* Decorative circle */
.hp-promo__card::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}

.hp-promo__card::after {
  content: '';
  position: absolute;
  right: 40px;
  bottom: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}

.hp-promo__card-body { position: relative; z-index: 2; }

.hp-promo__label {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hp-promo__card-body h3 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.hp-promo__card-body h3 strong {
  font-weight: 600;
  display: block;
}

/* ================================================================
   7. NEW ARRIVALS SLIDER
   ================================================================ */
.hp-arrivals {
  padding: 0 0 100px;
  padding-top: 100px;
  border-top: 1px solid var(--sand);
}

.hp-arrivals__nav { display: flex; gap: 10px; }

.hp-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.hp-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.hp-arrivals__track { position: relative; }

/* Arrivals: let Slick handle layout — only reset WC defaults */
.hp-arrivals__track .best-sellers-products-main ul.products {
  display: block !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}
/* Each Slick slide gets a gutter */
.hp-arrivals__track .slick-slide { padding: 0 8px; }
.hp-arrivals__track .slick-list { margin: 0 -8px; overflow: hidden; }
.hp-arrivals__track .slick-track { display: flex !important; align-items: stretch; }

/* ================================================================
   8. BRANDS
   ================================================================ */
.hp-brands {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}

.hp-brands__runway {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

/* fade edges */
.hp-brands__runway::before,
.hp-brands__runway::after {
  content: '';
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.hp-brands__runway::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.hp-brands__runway::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.hp-brands__belt {
  display: flex;
  align-items: center;
  gap: 0;
  animation: brandScroll 28s linear infinite;
  width: max-content;
}

.hp-brands__belt:hover { animation-play-state: paused; }

.hp-brands__logo {
  padding: 0 50px;
  flex-shrink: 0;
}

.hp-brands__logo img {
  width: 110px;
  filter: grayscale(50%);
  opacity: 0.65;
  transition: all 0.4s;
}

.hp-brands__logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

@keyframes brandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   9. FEATURED SPLIT
   ================================================================ */
.hp-featured { padding: 100px 0; background: var(--off-white); }

.hp-featured__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.hp-featured__visual {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.hp-featured__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hp-featured__visual:hover img { transform: scale(1.04); }

.hp-featured__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--smoke) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-featured__placeholder-inner {
  text-align: center;
  color: var(--primary-light);
}

.hp-featured__placeholder-inner i { font-size: 60px; margin-bottom: 16px; display: block; }
.hp-featured__placeholder-inner p { font-family: var(--serif); font-size: 22px; }

.hp-featured__visual-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  color: var(--heading);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.hp-featured__visual-tag i { color: var(--primary); }

.hp-featured__products {
  padding: 60px 72px;
  background: var(--white);
}

.hp-featured__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin: 14px 0 36px;
  line-height: 1.7;
}

.hp-featured__products .lookbook-products-main { margin-bottom: 36px; }

.hp-featured__products .lookbook-products-main ul.products {
  display: block !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.hp-featured__products .lookbook-products-main .slick-slide { padding: 0 7px; }
.hp-featured__products .lookbook-products-main .slick-list { margin: 0 -7px; overflow: hidden; }
.hp-featured__products .lookbook-products-main .slick-track { display: flex !important; align-items: stretch; }

/* ================================================================
   10. STATS STRIP
   ================================================================ */
.hp-stats {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

/* decorative circles */
.hp-stats::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hp-stats::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.hp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}

.hp-stats__item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.hp-stats__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.hp-stats__item:last-child::after { display: none; }

.hp-stats__item strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.hp-stats__item > span {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ================================================================
   11. TESTIMONIALS
   ================================================================ */
.hp-reviews {
  padding: 100px 0;
  background: var(--primary-pale);
  border-top: 1px solid rgba(107,61,94,0.08);
}

.hp-review__col { padding: 0; }

/* Override testi items for homepage */
.hp-reviews .testi-item-main {
  margin: 0 10px;
  background: var(--white);
}

.hp-reviews .testi-rating ul { margin-bottom: 16px; }

/* ================================================================
   12. NEWSLETTER
   ================================================================ */
.hp-newsletter {
  padding: 96px 0;
  background: var(--heading);
  position: relative;
  overflow: hidden;
}

.hp-newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(107,61,94,0.15);
  pointer-events: none;
}

.hp-newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hp-newsletter__text h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.hp-newsletter__text p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.hp-newsletter__field {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.hp-newsletter__field input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 22px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  outline: none;
}

.hp-newsletter__field input::placeholder {
  color: rgba(255,255,255,0.35);
}

.hp-newsletter__field button {
  background: var(--primary);
  border: none;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  white-space: nowrap;
}

.hp-newsletter__field button:hover { background: var(--primary-dark); }

.hp-newsletter__note {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hp-newsletter__note i { font-size: 11px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* 1199px */
@media (max-width: 1199px) {
  .hp-hero { grid-template-columns: 1fr 1fr; min-height: 80vh; }
  .hp-hero__left { padding: 80px 48px 60px; }
  .hp-cats__grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 250px 230px; }
  .hp-cats__card--lg { grid-column: 1 / 3; }
  .hp-cats__card--tall { grid-column: 3 / 4; grid-row: 1 / 3; }
  .hp-values__item { padding: 32px 24px; }
  .hp-featured__products { padding: 48px 48px; }
  .hp-featured__visual { height: 600px; }
  .hp-newsletter__inner { gap: 40px; }
}

/* 991px */
@media (max-width: 991px) {
  .hp-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hp-hero__left { padding: 80px 40px 60px; }
  .hp-hero__right { height: 480px; }
  .hp-hero__cards { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); }
  .hp-hero__card:first-child { grid-row: 1 / 3; }

  .hp-section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .hp-sellers__tabs { flex-wrap: wrap; }

  .hp-cats__grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 240px 220px 200px; gap: 10px; }
  .hp-cats__card--lg { grid-column: 1 / 3; grid-row: 1 / 2; }
  .hp-cats__card--tall { grid-column: 1 / 2; grid-row: 2 / 4; }
  .hp-cats__card--sm { grid-column: 2 / 3; }

  .hp-values__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-values__item::after { display: none; }
  .hp-values__item { border-bottom: 1px solid var(--sand); padding: 30px 28px; }
  .hp-values__item:nth-child(odd) { border-right: 1px solid var(--sand); }

  .hp-promo__grid { grid-template-columns: 1fr; }
  .hp-promo__card { padding: 44px 36px; }

  .hp-featured__wrap { grid-template-columns: 1fr; }
  .hp-featured__visual { height: 380px; }
  .hp-featured__products { padding: 48px 36px; }

  .hp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stats__item::after { display: none; }
  .hp-stats__item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px; }

  .hp-newsletter__inner { grid-template-columns: 1fr; gap: 36px; }

  .hp-sellers .best-sellers-products-main ul.products,
  .hp-panel .best-sellers-products-main ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

/* 767px */
@media (max-width: 767px) {
  .hp-hero__left { padding: 70px 28px 50px; }
  .hp-hero__right { height: 380px; }
  .hp-hero__cards { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 1fr); }
  .hp-hero__card:first-child { grid-row: 1 / 3; grid-column: 1 / 2; }
  .hp-hero__trust { gap: 14px; }

  .hp-cats__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 180px; gap: 8px; }
  .hp-cats__card--lg { grid-column: 1 / 3; grid-row: 1 / 2; }
  .hp-cats__card--tall { grid-column: 1 / 2; grid-row: 2 / 4; }

  .hp-sellers .best-sellers-products-main ul.products,
  .hp-panel .best-sellers-products-main ul.products { grid-template-columns: repeat(2, 1fr) !important; }

  .hp-sellers { padding: 70px 0; }
  .hp-arrivals { padding: 70px 0; }
  .hp-featured { padding: 70px 0; }
  .hp-newsletter { padding: 70px 0; }
}

/* 575px */
@media (max-width: 575px) {
  .hp-hero { min-height: auto; }
  .hp-hero__left { padding: 60px 20px 44px; }
  .hp-hero__title { font-size: 38px; }
  .hp-hero__btns { flex-direction: column; gap: 10px; }
  .hp-btn { justify-content: center; }
  .hp-hero__right { height: 300px; }
  .hp-hero__cards { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 80px); }
  .hp-hero__card:first-child { grid-row: 1 / 3; }
  .hp-hero__card-name { font-size: 15px; }
  .hp-hero__card:first-child .hp-hero__card-name { font-size: 20px; }

  .hp-cats { padding: 60px 0 0; }
  .hp-cats__grid { grid-template-columns: 1fr 1fr; grid-template-rows: 170px 160px 150px; gap: 7px; }
  .hp-cats__card-name { font-size: 17px; }
  .hp-cats__card--lg .hp-cats__card-name { font-size: 24px; }
  .hp-cats__card--tall .hp-cats__card-name { font-size: 20px; }
  .hp-cats__card-body { padding: 16px 18px; }

  .hp-values__grid { grid-template-columns: 1fr; }
  .hp-values__item { border-right: none !important; }

  .hp-promo__card { padding: 36px 24px; min-height: auto; }
  .hp-promo__card-body h3 { font-size: 24px; }

  .hp-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stats__item strong { font-size: 36px; }

  .hp-newsletter__field { flex-direction: column; border-radius: 6px; }
  .hp-newsletter__field input { padding: 14px 18px; }
  .hp-newsletter__field button { justify-content: center; padding: 14px 18px; }

  .hp-sellers .best-sellers-products-main ul.products,
  .hp-panel .best-sellers-products-main ul.products { grid-template-columns: repeat(2, 1fr) !important; column-gap: 8px; }

  .hp-featured__products { padding: 36px 20px; }
  .hp-featured__visual { height: 280px; }

  .hp-section-head { margin-bottom: 24px; }
  .hp-section-title { font-size: 26px; }

  .hp-sellers { padding: 56px 0; }
  .hp-arrivals { padding: 56px 0; }
  .hp-brands { padding: 56px 0; }
  .hp-featured { padding: 56px 0; }
  .hp-newsletter { padding: 56px 0; }
  .hp-reviews { padding: 56px 0; }
  .hp-values { padding: 56px 0; }
  .hp-promo { padding: 0 0 56px; }
}
