/**
 * Homepage Redesign — homepage-specific styles only.
 *
 * Header, menu, USP bar, search overlay and products dropdown are now
 * styled exclusively by site-chrome-redesign.css via the
 * body.hl-new-site-chrome scope. This file only styles sections that
 * appear on the homepage: hero, deals strip, product grids, categories,
 * brands, inspiration, newsletter, about, FAQ, and the footer redesign.
 */

.hl-static-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.34;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(28,27,26,0.026) 0 0.7px, transparent 0.9px),
    radial-gradient(circle at 74% 36%, rgba(28,27,26,0.02) 0 0.6px, transparent 0.85px),
    radial-gradient(circle at 42% 78%, rgba(255,255,255,0.34) 0 0.65px, transparent 0.9px);
  background-size: 17px 19px, 23px 21px, 29px 31px;
  background-position: 0 0, 7px 11px, 13px 5px;
  /* Hardware acceleration to prevent flickering/repaints on scroll */
  will-change: transform;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}
:root {
  --black: #241F19;
  --white: #ffffff;
  --ivory: #EDE9E3;
  --nude: #E7D7C9;
  --terracotta: #BE8F6E;
  --cool-sage: #87816E;
  --accent-pink: var(--terracotta);
  --accent-warm: var(--terracotta);
  --border: rgba(36, 31, 25, 0.12);
  --header-h: 108px;
  --ann-h: 38px;
}

/* ─── MAIN CONTENT ─── */
.main-content { padding-top: var(--ann-h); }

/* ─── HERO ─── */
.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--ann-h));
  min-height: 600px;
  background: #d6cec7;
  overflow: hidden;
}
/* Dark gradient overlay at top of hero for header contrast */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: calc(var(--header-h) + 80px);
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.4) 40%,
    rgba(0,0,0,0.15) 75%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(180,160,140,0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(100,120,110,0.4) 0%, transparent 50%),
    linear-gradient(160deg, #b8c4bc 0%, #c9bfb2 40%, #a0948c 100%);
}
.hero-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-align: center;
}
/* Simulated room scene */
.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-scene svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.hero-overlay {
  position: absolute;
  bottom: 48px;
  left: 64px;
  z-index: 3;
  max-width: min(560px, calc(100vw - 96px));
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}
.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  max-width: 380px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}
.hero-cta:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.hero-cta-secondary {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(3px); }
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.7); }
}

@media (max-width: 768px) {
  .hero {
    height: calc(100svh - var(--ann-h));
    min-height: 620px;
  }
  .hero-overlay {
    left: 24px;
    right: 24px;
    bottom: 38px;
    max-width: none;
  }
  .hero-title {
    font-size: 38px;
    line-height: 1.06;
    max-width: 340px;
  }
  .hero-subtitle {
    max-width: 310px;
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 600px;
  }
  .hero-title {
    font-size: 34px;
    max-width: 300px;
  }
  .hero-subtitle {
    max-width: 300px;
  }
  .hero-cta {
    flex: 1 1 146px;
    padding: 0 14px;
  }
}

/* ─── DEALS STRIP ─── */
.deals-strip {
  background: var(--black);
  color: #fff;
  padding: 14px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  overflow: hidden;
}
.deal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
}
.deal-pct {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}
.deal-label { color: rgba(255,255,255,0.65); font-size: 12px; }
.deal-cta {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
}
.deal-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }

/* ─── SECTION ─── */
.section {
  padding: 64px 48px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28,27,26,0.4);
  margin-bottom: 6px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.1;
  color: var(--black);
}
.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.section-link:hover { opacity: 0.6; }

/* ─── PRODUCT CARDS ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
.products-peek {
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  max-height: 60px;
}
.products-peek::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 50%, transparent 100%);
  pointer-events: none;
}
.see-more-wrap {
  display: flex;
  justify-content: center;
  margin: 24px 0 0;
}
.product-card {
  cursor: pointer;
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-card:hover .product-img-inner { transform: scale(1.03); }
.product-img {
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-img-inner {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: monospace;
  color: rgba(28,27,26,0.3);
  text-align: center;
  padding: 16px;
  line-height: 1.5;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
}
.product-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(28,27,26,0.03) 8px,
    rgba(28,27,26,0.03) 16px
  );
}
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 1;
}
.badge-new { background: var(--black); color: #fff; }
.badge-sale { background: var(--accent-pink); color: #fff; }
.section-cta {
  display: inline-block;
  padding: 12px 28px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.section-cta:hover {
  background: rgba(28,27,26,0.06);
}
.product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}
.product-sub {
  font-size: 11px;
  color: rgba(28,27,26,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.product-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.product-price-old {
  font-size: 12px;
  font-weight: 400;
  color: rgba(28,27,26,0.4);
  text-decoration: line-through;
  margin-left: 6px;
}
.product-price-sale { color: var(--accent-pink); }

/* ─── BÄSTSÄLJARE SECTION ─── */
.bs-wrapper {
  --bs-green: #274f43;
  --bs-red:   #a7472d;
  --bs-ink:   #151515;
  padding: 16px 20px;
  max-width: 1440px;
  margin: 0 auto;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.bs-outer {
  position: relative;
  border: 2px solid var(--bs-green);
  background: #fff;
  padding: 32px 44px 36px;
}
.bs-outer::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--bs-green);
  pointer-events: none;
  z-index: 0;
}
.bs-content {
  position: relative;
  z-index: 1;
}
/* Top row: title+emblem left, SE ALLA right */
.bs-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 12px;
}
.bs-heading,
.ig-heading {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}
.bs-title {
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #151515;
  text-transform: uppercase;
  line-height: 1;
}
/* Emblem row under title */
.bs-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: none;
}
.bs-ornament-line {
  flex: 1;
  height: 1px;
  background: #151515;
  opacity: 0.9;
}
.bs-ornament svg {
  width: 54px;
  height: 22px;
  overflow: visible;
  flex-shrink: 0;
}
.bs-ornament svg path,
.bs-ornament svg circle {
  fill: none;
  stroke: #151515;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bs-see-all-mobile {
  display: none !important;
}
/* SE ALLA link */
.bs-see-all {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--bs-red);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  transition: opacity 0.18s;
}
.bs-see-all:hover { opacity: 0.7; }
.bs-see-all::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 70px;
  height: 1px;
  background: var(--bs-red);
}
.bs-see-all-arrow {
  font-size: 28px;
  line-height: 1;
  color: var(--bs-green);
  font-weight: 300;
  letter-spacing: 0;
}
/* Tab row */
.bs-tab-row {
  margin-bottom: 18px;
}
.bs-tabs {
  display: flex;
  gap: 0;
}
.bs-tab {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: var(--bs-green);
  background: none;
  border: none;
  padding: 0 0 8px;
  margin-right: 40px;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.18s;
  white-space: nowrap;
}
.bs-tab:last-child { margin-right: 0; }
.bs-tab::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--bs-red);
  transition: width 0.2s ease;
}
.bs-tab.active::after { width: 100%; }
.bs-tab:hover:not(.active) { opacity: 0.6; }
.bs-tab-panel[hidden] { display: none; }
/* Product grid */
.bs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: stretch;
}
/* Card */
.bs-card {
  position: relative;
  border: 1px solid var(--bs-green);
  background: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s;
  min-width: 0;
  height: 100%;
}
.bs-card:hover,
.bs-card:active {
  background: #fff;
}
.bs-card::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(39,79,67,0.55);
  pointer-events: none;
  z-index: 2;
}

.bs-card-img {
  position: relative;
  flex: 0 0 auto;
  height: 155px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  margin: 8px 8px 0;
  border: 1px solid rgba(39,79,67,0.08);
  box-shadow: 0 1px 0 rgba(39,79,67,0.04);
}
.bs-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  box-sizing: border-box;
  padding: 10px;
}
.bs-card-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(39,79,67,0.22);
  text-align: center;
  white-space: pre-line;
  line-height: 1.6;
}
.bs-card-body {
  padding: 14px 16px 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 118px;
}
.bs-card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  color: #151515;
  margin-bottom: 6px;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.bs-card-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--bs-ink);
  opacity: 0.55;
  margin-bottom: 8px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.bs-card-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--bs-ink);
  letter-spacing: 0.04em;
  margin-top: auto;
}

.hl-home-news-products .bs-top-row {
  margin-bottom: 28px;
}

.bs-card-img .product-badge {
  z-index: 3;
}

/* ─── HERO BANNER ─── */
.banner-full {
  width: 100%;
  aspect-ratio: 16/6;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-bg {
  position: absolute;
  inset: 0;
}
.banner-content {
  position: relative;
  z-index: 1;
  padding: 0 80px;
}
.banner-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.banner-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #fff;
  color: var(--black);
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.banner-cta:hover { background: rgba(255,255,255,0.88); }

/* ─── INSPIRATION GALLERY SECTION ─── */
.ig-wrapper {
  padding: 28px 20px;
  max-width: 1440px;
  margin: 0 auto;
}
.ig-outer {
  position: relative;
  border: 2px solid #274f43;
  background: #fff;
  padding: 56px 60px 60px;
}
.ig-outer::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(39,79,67,0.45);
  pointer-events: none;
  z-index: 0;
}
.ig-content { position: relative; z-index: 1; }
.ig-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 36px;
}
.ig-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: 0.22em;
  font-weight: 600;
  color: #151515;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 20px;
}
.ig-ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: none;
}
.ig-ornament-line {
  flex: 1;
  height: 1px;
  background: #151515;
}
.ig-ornament svg {
  width: 54px; height: 22px;
  overflow: visible; flex-shrink: 0;
}
.ig-ornament svg path, .ig-ornament svg circle {
  fill: none; stroke: #151515;
  stroke-width: 2.1;
  stroke-linecap: round; stroke-linejoin: round;
}
.ig-see-all {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 70px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: #a7472d;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 0;
  transition: opacity 0.18s;
}
.ig-see-all:hover { opacity: 0.7; }
.ig-see-all::after {
  content: '';
  position: absolute;
  left: 0; bottom: -9px;
  width: 70px; height: 1px;
  background: #a7472d;
}
/* Grid */
.ig-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 300px;
  gap: 12px;
}
.ig-cell {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(39,79,67,0.4);
  color: inherit;
  text-decoration: none;
}
.ig-cell:focus-visible {
  outline: 2px solid #274f43;
  outline-offset: 3px;
}
.ig-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ig-cell:hover img { transform: scale(1.04); }
/* Cell spans */
.ig-cell-hero { grid-column: 1; grid-row: 1 / 3; }
.ig-cell-tall { grid-column: 2; grid-row: 1 / 3; }
.ig-cell-a    { grid-column: 3; grid-row: 1; }
.ig-cell-b    { grid-column: 3; grid-row: 2; }
/* Overlay label */
.ig-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 18px;
  background: linear-gradient(to top, rgba(20,18,14,0.65), transparent);
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ig-cell:hover .ig-label {
  opacity: 1;
  transform: translateY(0);
}
.ig-label-tag {
  display: block;
  font-size: 9px;
  letter-spacing: 0.35em;
  opacity: 0.65;
  margin-bottom: 5px;
}

/* ─── INSPIRATION SECTION ─── */
.inspo-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.inspo-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
}
.inspo-item:first-child {
  grid-row: span 2;
}
.inspo-item-img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: monospace;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 16px;
  line-height: 1.5;
  position: relative;
}
.inspo-item-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(255,255,255,0.05) 8px,
    rgba(255,255,255,0.05) 16px
  );
}
.inspo-item:hover .inspo-label { opacity: 1; }
.inspo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 20px 20px;
  background: linear-gradient(to top, rgba(28,27,26,0.65), transparent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.25s;
}

/* ─── CATEGORY GRID ─── */
.category-section {
  padding: 56px 64px 64px;
  border-top: 1px solid var(--border);
}
.category-header {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 48px;
}
.category-deco {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: rgba(28,27,26,0.2);
}
.category-title {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  white-space: nowrap;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 40px;
  column-gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  color: var(--black);
  transition: opacity 0.18s;
}
.category-item:hover { opacity: 0.65; }
.category-item-img {
  width: 160px;
  height: 120px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: 400% 300%;
  flex-shrink: 0;
}
.category-item-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  text-align: center;
}

/* ─── BOTTOM BANNER ─── */
.bottom-banner {
  width: 100%;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.bottom-banner.banner-full {
  display: flex;
  align-items: center;
  line-height: normal;
  background-color: #3a3226;
}
.bottom-banner img {
  width: 100%;
  height: 30vw;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 901px) {
  .bottom-banner.banner-full .banner-content {
    transform: translateY(clamp(16px, 2vw, 32px));
  }
}

/* ─── FOOTER STRIP ─── */
.footer-nav-link {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(15px, 1.35vw, 22px);
  color: #f0ebe0;
  text-decoration: none;
  padding: 5px 0;
  line-height: 1.4;
  background-image: linear-gradient(to right, #f0ebe0, #f0ebe0);
  background-position: 0% 100%;
  background-size: 0% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.25s ease-in-out;
}
.footer-nav-link:hover {
  background-size: 100% 1px;
}
.footer-strip {
  background: #f5f2ee;
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-item-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1px;
}
.footer-item-text span {
  font-size: 12px;
  color: rgba(28,27,26,0.5);
}

/* ─── LOGIN MODAL ─── */
.login-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 27, 26, 0.45);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.login-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.login-modal {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 420px;
  padding: 48px 44px 44px;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.login-modal-overlay.open .login-modal {
  transform: translateY(0) scale(1);
}
.login-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(28,27,26,0.18);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28,27,26,0.55);
  transition: background 0.15s, color 0.15s;
}
.login-modal-close:hover {
  background: rgba(28,27,26,0.07);
  color: var(--black);
}
.login-modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 8px;
}
.login-modal-sub {
  font-size: 13px;
  color: rgba(28,27,26,0.55);
  line-height: 1.6;
  margin-bottom: 28px;
}
.login-field {
  position: relative;
  margin-bottom: 16px;
}
.login-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28,27,26,0.45);
  margin-bottom: 6px;
}
.login-field input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(28,27,26,0.22);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--black);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.18s;
}
.login-field input:focus {
  border-color: var(--black);
}
.login-field input::placeholder {
  color: rgba(28,27,26,0.3);
}
.login-submit {
  width: 100%;
  height: 48px;
  background: var(--black);
  color: #F8F4E8;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.18s;
  margin-bottom: 20px;
}
.login-submit:hover { opacity: 0.82; }
.login-privacy {
  font-size: 11px;
  color: rgba(28,27,26,0.42);
  line-height: 1.65;
  text-align: center;
  margin-bottom: 24px;
}
.login-privacy a {
  color: rgba(28,27,26,0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.login-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(28,27,26,0.14);
}
.login-divider-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(28,27,26,0.35);
}
.login-social-btn {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(28,27,26,0.18);
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.15s, border-color 0.15s;
}
.login-social-btn:last-child { margin-bottom: 0; }
.login-social-btn:hover {
  background: #f5f1e8;
  border-color: rgba(28,27,26,0.3);
}

/* Arrow path: fully drawn at rest → hidden on hover */
.cookie-arrow-path {
  stroke-dasharray: 18.5px, 0.1px;
  stroke-dashoffset: 0;
  transition: opacity 0.25s ease;
}
.cookie-btn:hover .cookie-arrow-path {
  opacity: 0;
}
/* Diamond: half drawn at rest → fully drawn on hover */
.cookie-arrow-diamond {
  stroke-dasharray: 11.1213px, 11.2213px;
  stroke-dashoffset: 0;
  transition: stroke-dasharray 0.3s ease;
}
.cookie-btn:hover .cookie-arrow-diamond {
  stroke-dasharray: 22.2426px, 0.1px;
}



/* ─── OVERLAY BACKDROP ─── */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,27,26,0.25);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.backdrop.open { opacity: 1; pointer-events: all; }

/* Animate items in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes subcatFadeIn {
  from { opacity: 0; transform: translateX(-6px); }
  to { opacity: 1; transform: translateX(0); }
}
.pd-carousel {
  overflow-x: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.pd-carousel::-webkit-scrollbar { display: none; }
.pd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(28,27,26,0.2);
  background: #fff;
  box-shadow: 0 2px 12px rgba(28,27,26,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: background 0.15s, opacity 0.2s;
  z-index: 2;
}
.pd-arrow:hover { background: #f0ebe0; }
.pd-arrow.pd-arrow-right { right: 10px; }
.pd-arrow.pd-arrow-left  { left: 10px; }
.fade-up {
  animation: fadeUp 0.6s ease forwards;
}
.fade-up-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-2 { animation-delay: 0.25s; opacity: 0; }
.fade-up-3 { animation-delay: 0.4s; opacity: 0; }

/* ─── FOOTER PANEL ANIMATION ─── */
.hl-footer-panel-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.04), transparent 28%),
    linear-gradient(90deg, #020202 0%, #0a0a0a 45%, #020202 100%);
}
.hl-panel {
  position: relative;
  height: 100%;
  flex: 0 0 auto;
  will-change: transform;
  transform: translateX(0);
}
.hl-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.018) 0%,
    rgba(255,255,255,0.006) 25%,
    rgba(0,0,0,0.7) 55%,
    rgba(255,255,255,0.014) 100%
  );
  opacity: var(--panel-opacity);
}
.hl-panel::after {
  content: "";
  position: absolute;
  top: 0; right: -1px;
  width: var(--gap-width);
  height: 100%;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.18),
    rgba(255,255,255,0.05)
  );
  box-shadow: 0 0 6px rgba(255,255,255,0.045);
}
.hl-panel:nth-child(3n)::after  { opacity: 0.45; }
.hl-panel:nth-child(4n)::after  { opacity: 0.75; }
.hl-panel:nth-child(5n)::before {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.01) 0%,
    rgba(0,0,0,0.76) 50%,
    rgba(255,255,255,0.016) 100%
  );
}
/* Large serif footer links */
.hl-footer-link {
  position: relative;
  display: inline-block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 1.7vw, 32px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: rgba(240,235,224,0.76);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease;
  margin-bottom: 26px;
}
.hl-footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: rgba(240,235,224,0.92);
  transition: width 0.35s ease;
}
.hl-footer-link:hover { color: rgba(240,235,224,0.97); }
.hl-footer-link:hover::after { width: 100%; }

/* ─── PRODUCTS TABBED DROPDOWN (NATIVE PHP INTEGRATION) ─── */
.hl-home-new .products-tab-header {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-bottom: 1px solid rgba(28,27,26,0.12);
  height: 52px;
}
.hl-home-new .products-close-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(28,27,26,0.28);
  background: none;
  color: rgba(28,27,26,0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 28px;
  flex-shrink: 0;
  transition: background 0.15s;
}
.hl-home-new .products-close-btn:hover {
  background: rgba(28,27,26,0.07);
}
.hl-home-new .products-tabs {
  display: flex;
  height: 100%;
}
.hl-home-new .products-tab-btn {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(28,27,26,0.4);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0 18px;
  height: 100%;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -1px;
}
.hl-home-new .products-tab-btn.active {
  color: var(--black);
  border-bottom-color: var(--black);
}
.hl-home-new .products-tab-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.hl-home-new .products-tab-link:hover,
.hl-home-new .products-tab-link:focus-visible {
  color: var(--black);
}
.hl-home-new .products-tab-content {
  padding: 16px 22px 22px;
}
.hl-home-new .products-tab-pane {
  display: none;
}
.hl-home-new .products-tab-pane.active {
  display: block;
}
.hl-home-new .products-tab-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hl-home-new .products-grid-item {
  aspect-ratio: 4 / 3;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.hl-home-new .products-grid-main-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}
.hl-home-new .products-grid-main-link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.92);
  outline-offset: -5px;
}
.hl-home-new .products-grid-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hl-home-new .products-grid-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(28,27,26,0.045) 10px, rgba(28,27,26,0.045) 20px);
}
.hl-home-new .products-grid-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px 16px 14px;
  background: linear-gradient(to top, rgba(28,27,26,0.65), transparent);
  transition: opacity 0.2s;
  z-index: 1;
}
.hl-home-new .products-grid-item:hover .products-grid-overlay {
  opacity: 0;
}
.hl-home-new .brand-menu-card {
  background-color: #f3efe3;
}
.hl-home-new .brand-menu-all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 20px;
  background: var(--cool-sage, #3f543d);
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.hl-home-new .brand-menu-all-card::before {
  position: absolute;
  inset: 9px;
  z-index: 0;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 3px;
  content: "";
  pointer-events: none;
}
.hl-home-new .brand-menu-all-card > * {
  position: relative;
  z-index: 1;
}
.hl-home-new .brand-menu-all-card__eyebrow {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hl-home-new .brand-menu-all-card__title {
  font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1;
}
.hl-home-new .brand-menu-all-card__arrow {
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}
.hl-home-new .brand-menu-all-card:hover .brand-menu-all-card__arrow,
.hl-home-new .brand-menu-all-card:focus-visible .brand-menu-all-card__arrow {
  transform: translateX(4px);
}
@media (min-width: 901px) {
  .hl-home-new .brand-menu-all-card {
    gap: 12px;
    padding: clamp(28px, 2.6vw, 48px);
  }
  .hl-home-new .brand-menu-all-card__eyebrow {
    font-size: clamp(11px, 0.72vw, 13px);
    letter-spacing: 0.22em;
  }
  .hl-home-new .brand-menu-all-card__title {
    font-size: clamp(38px, 3.1vw, 58px);
    line-height: 0.95;
  }
  .hl-home-new .brand-menu-all-card__title::after {
    display: block;
    width: clamp(78px, 7vw, 118px);
    height: 1px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.88), transparent);
    content: "";
  }
  .hl-home-new .brand-menu-all-card__arrow {
    font-size: clamp(34px, 2.4vw, 44px);
  }
}
.hl-home-new .brand-menu-img {
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hl-home-new .brand-menu-card:hover .brand-menu-img,
.hl-home-new .brand-menu-card:focus-visible .brand-menu-img {
  transform: scale(1.025);
}
.hl-home-new .brand-menu-card:hover .products-grid-overlay,
.hl-home-new .brand-menu-card:focus-visible .products-grid-overlay {
  opacity: 1;
}
.hl-home-new .products-grid-label {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
  display: block;
}
.hl-home-new .products-subcat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,27,26,0.88);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 22px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 2;
}
.hl-home-new .products-grid-item:hover .products-subcat-overlay {
  opacity: 1;
  pointer-events: auto;
}
.hl-home-new .products-grid-item:focus-within .products-subcat-overlay {
  opacity: 1;
  pointer-events: auto;
}
.hl-home-new .products-grid-mobile-trigger {
  display: none;
}
.hl-home-new .products-subcat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.hl-home-new .products-subcat-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hl-home-new .products-subcat-see-all {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
.hl-home-new .products-subcat-see-all:hover {
  color: #fff;
}
.hl-home-new .products-subcat-links {
  display: flex;
  flex-direction: column;
}
.hl-home-new .products-subcat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  color: rgba(255,255,255,0.82);
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.12s;
  text-decoration: none;
}
.hl-home-new .products-subcat-link:last-child {
  border-bottom: none;
}
.hl-home-new .products-subcat-link:hover {
  color: #fff;
}
.hl-home-new .products-subcat-link::after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6h10M7 2l4 4-4 4' stroke='white' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  opacity: 0.5;
  margin-left: 8px;
  flex-shrink: 0;
  transition: opacity 0.12s;
}
.hl-home-new .products-subcat-link:hover::after {
  opacity: 1;
}

.hl-home-new .products-grid-item.inspiration-menu-card:hover .products-grid-overlay,
.hl-home-new .products-grid-item.inspiration-menu-card:focus-visible .products-grid-overlay {
  opacity: 1;
}

/* ─── INSTAGRAM GRID (NATIVE PHP INTEGRATION) ─── */
.hl-instagram-card {
  aspect-ratio: 1 / 1;
  background: #e8e4df;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hl-instagram-texture {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(28,27,26,0.045) 8px, rgba(28,27,26,0.045) 16px);
}
.hl-instagram-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,27,26,0.75);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 3;
}
.hl-instagram-card:hover .hl-instagram-overlay {
  opacity: 1;
}
.hl-instagram-caption {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  margin: 0;
}

/* ─── GIFT BUTTON (NATIVE PHP INTEGRATION) ─── */
.hl-home-gift-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border: 1px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  letter-spacing: 0.02em;
  border-radius: 2px;
}
.hl-home-gift-btn:hover {
  background: var(--black);
  color: #fff;
}

/* ─── RESPONSIVE LAYOUT GRIDS & SECTIONS (NATIVE PHP INTEGRATION) ─── */
.hl-popular-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .hl-popular-cats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .hl-home-new-popular-cats {
    padding: 52px 0 58px !important;
    max-width: none !important;
  }
  .hl-home-new-popular-cats > div:first-child {
    padding: 0 22px;
  }
  .hl-popular-cats-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    padding: 0 22px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding: 22px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .hl-popular-cats-grid::-webkit-scrollbar {
    display: none;
  }
  .hl-popular-cats-grid > a {
    flex: 0 0 min(74vw, 310px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

.hl-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.hl-brand-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #f3efe3;
}
.hl-brand-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hl-brand-card:hover .hl-brand-card-image,
.hl-brand-card:focus-visible .hl-brand-card-image {
  transform: scale(1.025);
}
.hl-brand-card-shade {
  position: absolute;
  inset: 0;
  background: rgba(28,27,26,0.45);
}
.hl-brand-card-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 16px;
}
.hl-brand-card-name {
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}
.hl-brand-card--all {
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--cool-sage, #3f543d);
  color: #fff;
  text-align: center;
  isolation: isolate;
}
.hl-brand-card--all::before {
  position: absolute;
  inset: 9px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 1px;
  content: "";
  pointer-events: none;
}
.hl-brand-card--all > * {
  position: relative;
  z-index: 1;
}
.hl-brand-card-all-eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(9px, 0.8vw, 11px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hl-brand-card-all-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1;
}
.hl-brand-card-all-arrow {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1;
  transition: transform 0.2s ease;
}
.hl-brand-card--all:hover .hl-brand-card-all-arrow,
.hl-brand-card--all:focus-visible .hl-brand-card-all-arrow {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .hl-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  /* Section container — override inline padding */
  section:has(.hl-brands-grid) {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-top: 24px !important;
    padding-bottom: 48px !important;
  }
  /* Section heading — override inline font-size and height */
  section:has(.hl-brands-grid) > h2 {
    font-size: 24px !important;
    height: auto !important;
    margin-bottom: 20px !important;
  }
  .hl-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hl-brand-card {
    aspect-ratio: 1 / 1;
  }
  .hl-brand-card-name {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .hl-brand-card-content {
    padding: 0 10px;
  }
  .hl-brand-card--all {
    gap: 5px;
    padding: 14px;
  }
  .hl-brand-card--all::before {
    inset: 7px;
  }
  .hl-brand-card-all-eyebrow {
    font-size: 8px;
  }
  .hl-brand-card-all-title {
    font-size: 24px;
  }
  .hl-brand-card-all-arrow {
    font-size: 25px;
  }
}

.hl-instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .hl-instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .hl-instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hl-gift-section {
  display: flex;
  gap: 40px;
  padding: 64px 48px 32px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .hl-gift-section {
    flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
  }
}

.hl-about-section {
  background: #f7f3eb;
  padding: clamp(72px, 7vw, 104px) clamp(24px, 4vw, 48px) clamp(76px, 8vw, 112px);
  border-top: 1px solid rgba(28,27,26,0.09);
  border-bottom: 1px solid rgba(28,27,26,0.09);
}
.hl-about-container {
  max-width: 1260px;
  margin: 0 auto;
}
.hl-about-heading-row {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  margin-bottom: clamp(34px, 5vw, 56px);
}
.hl-about-heading-line {
  height: 1px;
  background: rgba(28,27,26,0.16);
}
.hl-about-kicker {
  color: var(--black);
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
  margin: 0;
  text-align: center;
}
.hl-about-quote {
  color: var(--black);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 66px);
  font-style: italic;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0 auto clamp(40px, 5vw, 62px);
  text-align: center;
}
.hl-about-intro {
  max-width: 860px;
  margin: 0 auto clamp(54px, 7vw, 82px);
  color: rgba(28,27,26,0.68);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-align: center;
}
.hl-about-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(28,27,26,0.13);
}
.hl-about-section:not(.is-expanded) .hl-about-card:nth-child(n+4) {
  display: none;
}
.hl-about-card {
  min-height: 248px;
  padding: clamp(28px, 3.2vw, 44px) clamp(24px, 3.4vw, 44px);
  border-right: 1px solid rgba(28,27,26,0.13);
  border-bottom: none;
}
.hl-about-section.is-expanded .hl-about-card:nth-child(-n+3) {
  border-bottom: 1px solid rgba(28,27,26,0.13);
}
.hl-about-card h3 {
  color: rgba(28,27,26,0.42);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.2;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hl-about-card p {
  color: rgba(28,27,26,0.66);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 600;
  line-height: 1.72;
  letter-spacing: 0.005em;
  margin: 0;
}
.hl-about-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 46px);
}
.hl-about-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 136px;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(28,27,26,0.18);
  border-radius: 0;
  background: transparent;
  color: rgba(28,27,26,0.58);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.hl-about-toggle:hover,
.hl-about-toggle:focus-visible {
  background: rgba(28,27,26,0.04);
  border-color: rgba(28,27,26,0.32);
  color: var(--black);
}
.hl-about-toggle:focus-visible {
  outline: 2px solid rgba(28,27,26,0.28);
  outline-offset: 3px;
}
.hl-about-toggle-icon {
  transition: transform 0.18s ease;
}
.hl-about-section.is-expanded .hl-about-toggle-icon {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .hl-about-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hl-about-section.is-expanded .hl-about-card:nth-child(-n+3) {
    border-bottom: none;
  }
  .hl-about-section.is-expanded .hl-about-card:nth-child(-n+4) {
    border-bottom: 1px solid rgba(28,27,26,0.13);
  }
  .hl-about-section:not(.is-expanded) .hl-about-card:nth-child(n+3) {
    display: none;
  }
}
@media (max-width: 700px) {
  .hl-about-section {
    padding: 56px 20px 64px;
  }
  .hl-about-heading-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 34px;
  }
  .hl-about-heading-line {
    width: 100%;
  }
  .hl-about-quote {
    font-size: clamp(36px, 12vw, 48px);
    margin-bottom: 30px;
  }
  .hl-about-intro {
    text-align: left;
    margin-bottom: 40px;
  }
  .hl-about-card-grid {
    grid-template-columns: 1fr;
  }
  .hl-about-section:not(.is-expanded) .hl-about-card:nth-child(n+2) {
    display: none;
  }
  .hl-about-section.is-expanded .hl-about-card:nth-child(-n+4) {
    border-bottom: none;
  }
  .hl-about-section.is-expanded .hl-about-card:not(:last-child) {
    border-bottom: 1px solid rgba(28,27,26,0.13);
  }
  .hl-about-card {
    min-height: 0;
    padding: 28px 22px 32px;
  }
}

.hl-help-newsletter-section {
  background: #7a8a6e;
  padding: clamp(38px, 4vw, 56px) clamp(28px, 5vw, 84px);
}
.hl-help-newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(44px, 6vw, 92px);
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
}
.hl-newsletter-panel h2,
.hl-help-panel h2 {
  color: #2a3424;
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 8px;
}
.hl-newsletter-panel p,
.hl-help-panel p {
  max-width: 560px;
  color: rgba(42,52,36,0.78);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 18px;
}
.hl-newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 560px;
  min-height: 48px;
  margin: 0;
  background: #f0ebe0;
  border: 1px solid rgba(42,52,36,0.16);
}
.hl-newsletter-form input[type="email"] {
  min-width: 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: #2a3424;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 0 20px;
  outline: none;
}
.hl-newsletter-form input[type="email"]::placeholder {
  color: rgba(42,52,36,0.48);
}
.hl-newsletter-form input[type="email"]:focus-visible {
  outline: 2px solid rgba(42,52,36,0.28);
  outline-offset: -4px;
}
.hl-newsletter-form .newsletter-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  color: #2a3424;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.18s ease, background 0.18s ease;
}
.hl-newsletter-form .newsletter-submit:hover,
.hl-newsletter-form .newsletter-submit:focus-visible {
  background: rgba(42,52,36,0.06);
}
.hl-newsletter-form .newsletter-submit:focus-visible {
  outline: 2px solid rgba(42,52,36,0.32);
  outline-offset: -4px;
}
.hl-newsletter-message {
  margin-top: 10px;
  color: #2a3424;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.hl-help-button-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 660px;
}
.hl-help-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 2px;
  color: #f0ebe0;
  background: #2a3424;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-decoration: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.hl-help-button.is-light {
  background: #f0ebe0;
  color: #2a3424;
}
.hl-help-button:hover,
.hl-help-button:focus-visible {
  opacity: 0.82;
  transform: translateY(-1px);
}
.hl-help-button:focus-visible {
  outline: 2px solid rgba(42,52,36,0.42);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .hl-help-newsletter-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}
@media (max-width: 600px) {
  .hl-help-newsletter-section {
    padding: 34px 20px 40px;
  }
  .hl-newsletter-form {
    grid-template-columns: 1fr;
  }
  .hl-newsletter-form input[type="email"] {
    min-height: 48px;
  }
  .hl-newsletter-form .newsletter-submit {
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 20px 2px;
    border-top: 1px solid rgba(42,52,36,0.12);
  }
  .hl-help-button {
    flex: 1 1 auto;
  }
}


@media (max-width: 1024px) {
  .bs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .bs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .bs-wrapper {
    padding: 0 10px 24px;
  }
  .hl-home-news-products.bs-wrapper {
    padding-top: 40px;
  }
  .bs-outer {
    padding: 0;
    border: 0;
    background: transparent;
  }
  .bs-outer::before {
    display: none;
  }
  .bs-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
  }
  .bs-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  .bs-title {
    margin: 0 0 8px;
    text-align: center;
    font-size: 24px !important;
    letter-spacing: 0.16em;
  }
  .bs-ornament {
    justify-content: center;
    max-width: 140px;
    opacity: 0.85;
  }
  .bs-top-row .bs-see-all {
    display: none !important;
  }
  .bs-see-all-mobile {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    margin: 28px auto 0 !important;
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--bs-red);
    text-transform: uppercase;
    border: none;
    background: none;
  }
  .bs-see-all-mobile::after {
    display: none !important;
  }
  .bs-tab-row {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .bs-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 22px;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 10px;
    width: 100%;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(39, 79, 67, 0.12);
  }
  .bs-tabs::-webkit-scrollbar {
    display: none;
  }
  .bs-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: auto;
    margin-right: 0;
    padding: 0 0 10px;
    border: none;
    border-radius: 0;
    font-size: 12px;
    letter-spacing: 0.14em;
    font-weight: 500;
    color: var(--bs-green);
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.7;
  }
  .bs-tab.active {
    background: transparent;
    color: var(--bs-red);
    opacity: 1;
  }
  .bs-tab::after {
    display: block;
    bottom: -1px;
    height: 2px;
    background: var(--bs-red);
  }
  .bs-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    margin: 0 -10px;
    padding: 0 10px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .bs-grid::-webkit-scrollbar {
    display: none;
  }
  .bs-card {
    flex: 0 0 min(74vw, 290px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
    background: #fff;
    border: 1px solid rgba(39, 79, 67, 0.12) !important;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(39, 79, 67, 0.02);
    -webkit-tap-highlight-color: transparent;
  }
  .bs-card::before {
    display: none !important;
  }
  .bs-card-img {
    height: clamp(175px, 52vw, 240px);
  }
  .bs-card-img img {
    padding: 18px;
  }
  .bs-card-body {
    min-height: 132px;
  }
  .bs-card-name {
    font-size: 16px;
    line-height: 1.2;
  }
  .bs-card-sub {
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }
  .bs-card-price {
    font-size: 17px;
  }

  /* Inspiration Mobile Layout */
  .ig-wrapper {
    padding: 12px 10px 20px;
  }
  .ig-outer {
    padding: 0;
    border: 0;
    background: transparent;
  }
  .ig-outer::before {
    display: none;
  }
  .ig-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
  }
  .ig-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  .ig-title {
    margin: 0 0 8px;
    text-align: center;
    font-size: 24px !important;
    letter-spacing: 0.16em;
  }
  .ig-ornament {
    justify-content: center;
    max-width: 140px;
    opacity: 0.85;
  }
  .ig-see-all {
    margin-top: 8px !important;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .ig-see-all::after {
    display: none;
  }
  .ig-grid {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: auto;
    gap: 14px;
    margin: 14px -10px 0;
    padding: 0 10px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .ig-grid::-webkit-scrollbar {
    display: none;
  }
  .ig-cell-hero, .ig-cell-tall, .ig-cell-a, .ig-cell-b {
    flex: 0 0 min(76vw, 320px);
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 5;
    height: auto;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .ig-label {
    opacity: 1;
    transform: translateY(0);
    padding: 24px 8px 8px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  /* Responsive banner-full overrides */
  .banner-full {
    aspect-ratio: auto;
    min-height: 280px;
    padding: 40px 24px;
    align-items: center;
  }
  .banner-content {
    padding: 0 !important;
  }
  .banner-title {
    font-size: 26px !important;
    margin-bottom: 16px !important;
  }
}

@media (max-width: 600px) {
  .hl-home-new .products-tab-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .hl-home-new .products-grid-item {
    aspect-ratio: auto;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
    background: transparent !important;
  }
  .hl-home-new #pane-varumarken .products-tab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .hl-home-new #pane-varumarken .products-grid-item.brand-menu-card,
  .hl-home-new #pane-varumarken .products-grid-item.brand-menu-all-card {
    aspect-ratio: 4 / 3;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-radius: 5px;
  }
  .hl-home-new #pane-varumarken .products-grid-item.brand-menu-card {
    background: #f3efe3 !important;
  }
  .hl-home-new #pane-varumarken .products-grid-item.brand-menu-all-card {
    background: var(--cool-sage, #3f543d) !important;
  }
  .hl-home-new .products-grid-main-link {
    display: none;
  }
  .hl-home-new .products-grid-mobile-trigger {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    color: var(--black);
    font-family: 'DM Serif Display', serif;
    font-size: 19px;
    text-align: left;
    cursor: pointer;
  }
  .hl-home-new .products-grid-mobile-trigger svg {
    transition: transform 0.2s ease;
  }
  .hl-home-new .products-grid-item.is-expanded .products-grid-mobile-trigger svg {
    transform: rotate(180deg);
  }
  .hl-home-new .products-subcat-overlay,
  .hl-home-new .products-grid-item:hover .products-subcat-overlay,
  .hl-home-new .products-grid-item:focus-within .products-subcat-overlay {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    color: var(--black);
    padding: 0 0 16px 16px;
  }
  .hl-home-new .products-grid-item.is-expanded .products-subcat-overlay {
    display: block;
  }
  .hl-home-new .products-subcat-header {
    justify-content: flex-start;
    border-bottom: 0;
    padding: 0;
    margin: 0 0 8px;
  }
  .hl-home-new .products-subcat-title {
    display: none;
  }
  .hl-home-new .products-subcat-see-all,
  .hl-home-new .products-subcat-link {
    color: var(--black);
    min-height: 42px;
    display: flex;
    align-items: center;
    font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif !important;
    font-size: 14px;
  }
  .hl-home-new .products-subcat-see-all {
    font-weight: 700;
  }
  .hl-home-new .products-subcat-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  /* Scrollable product menu dropdown tabs */
  .hl-home-new .products-tab-header {
    height: auto;
    padding: 8px 12px;
    gap: 12px;
  }
  .hl-home-new .products-close-btn {
    margin-right: 0;
  }
  .hl-home-new .products-tabs {
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-wrap: nowrap;
    scrollbar-width: none;
    border-bottom: none;
    min-height: 44px;
  }
  .hl-home-new .products-tabs::-webkit-scrollbar {
    display: none;
  }
  .hl-home-new .products-tab-btn {
    padding: 0 10px;
    font-size: 10px;
    flex: 0 0 auto;
    min-height: 44px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 900px) {
  .hl-home-new .inspiration-menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hl-home-new .inspiration-menu-header {
    align-items: center;
  }
  .hl-home-new .inspiration-menu-grid {
    grid-template-columns: 1fr;
  }
  .hl-home-new .inspiration-menu-title {
    font-size: 17px;
    max-width: 24ch;
  }
}
