/* =========================================================
   Hearthen — Bootstrap 5 e-commerce template
   Author: Hearthen template
   Description: Editorial home & lifestyle theme for Bootstrap 5
   ========================================================= */

/* ---------- 1. CSS variables (Bootstrap overrides + palette) ---------- */
:root {
  /* Brand palette (strict) */
  --hr-base:    #f9f8f6;   /* off-white background */
  --hr-beige:   #efe9e3;   /* warm beige sections */
  --hr-taupe:   #d9cfc7;   /* soft accent */
  --hr-camel:   #c9b59c;   /* primary accent / buttons */
  --hr-bronze:  #8a7650;   /* deep accent / hover */
  --hr-sage:    #778873;   /* botanical accent / sale tags */
  --hr-ink:     #3a3530;   /* warm charcoal text */

  /* Bootstrap variable overrides */
  --bs-primary:        #c9b59c;
  --bs-primary-rgb:    201, 181, 156;
  --bs-secondary:      #8a7650;
  --bs-secondary-rgb:  138, 118, 80;
  --bs-success:        #778873;
  --bs-success-rgb:    119, 136, 115;

  --bs-body-bg:        #f9f8f6;
  --bs-body-color:     #3a3530;
  --bs-body-color-rgb: 58, 53, 48;

  --bs-body-font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --bs-body-font-size:   16px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.65;

  --bs-border-radius:    4px;
  --bs-border-radius-sm: 3px;
  --bs-border-radius-lg: 6px;

  --bs-link-color:        #8a7650;
  --bs-link-color-rgb:    138, 118, 80;
  --bs-link-hover-color:  #3a3530;
  --bs-link-decoration:   none;

  --bs-border-color:      #e5ddd4;

  /* Custom typography scale */
  --hr-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --hr-sans:  'Inter', system-ui, sans-serif;
}

/* ---------- 2. Base ---------- */
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--hr-sans);
  background: var(--hr-base);
  color: var(--hr-ink);
}

h1, h2, h3, h4, h5, .display-1, .display-2, .display-3, .display-4 {
  font-family: var(--hr-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--hr-ink);
}
h1, .display-1, .display-2 { font-weight: 400; letter-spacing: -0.015em; }

.serif    { font-family: var(--hr-serif) !important; }
.sans     { font-family: var(--hr-sans) !important; }
.eyebrow  {
  font-family: var(--hr-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hr-bronze);
}
.tight    { letter-spacing: -0.02em; }
.upper-wide {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
}

a { transition: color .2s ease; }
a:hover { color: var(--hr-ink); }

::selection { background: var(--hr-camel); color: var(--hr-base); }

/* ---------- 3. Buttons ---------- */
.btn {
  font-family: var(--hr-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--bs-border-radius);
  transition: all .25s ease;
}
.btn-lg { padding: 1rem 2rem; font-size: 13px; }
.btn-sm { padding: 0.55rem 1rem;  font-size: 11px; letter-spacing: 0.12em; }

.btn-primary {
  background: var(--hr-camel);
  border-color: var(--hr-camel);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--hr-bronze);
  border-color: var(--hr-bronze);
  color: #fff;
}

.btn-outline-primary {
  border: 1px solid var(--hr-ink);
  color: var(--hr-ink);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--hr-ink);
  border-color: var(--hr-ink);
  color: #fff;
}

.btn-dark {
  background: var(--hr-ink);
  border-color: var(--hr-ink);
}
.btn-dark:hover { background: var(--hr-bronze); border-color: var(--hr-bronze); }

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--hr-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hr-ink);
  border-bottom: 1px solid var(--hr-ink);
  padding-bottom: 4px;
  text-decoration: none !important;
}
.btn-link-arrow:hover { color: var(--hr-bronze); border-color: var(--hr-bronze); }

/* ---------- 4. Announcement bar ---------- */
.announcement-bar {
  background: var(--hr-camel);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  font-weight: 500;
}
.announcement-bar .ann-divider { opacity: .5; margin: 0 .9rem; }

/* ---------- 5. Header / Navbar ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--hr-base);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
}
.site-header .navbar { position: static; padding: 1.4rem 0; transition: padding .3s ease; }
.site-header.scrolled {
  border-bottom-color: var(--bs-border-color);
  box-shadow: 0 6px 24px -16px rgba(40, 30, 20, 0.08);
}
.site-header.scrolled .navbar { padding: 0.7rem 0; }

.navbar-brand {
  font-family: var(--hr-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--hr-ink) !important;
}
.navbar-brand .brand-mark {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--hr-sage);
  margin-right: 8px;
  vertical-align: middle;
}

.site-nav {
  /* Wrap as a safety fallback on narrow viewports so the menu can never
     overflow the container, but the tighter padding below means it usually
     fits a single line on desktop. */
  flex-wrap: wrap;
  row-gap: 4px;
}
.site-nav .nav-link {
  font-family: var(--hr-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hr-ink) !important;
  padding: 0.5rem 0.55rem !important;
  position: relative;
  white-space: nowrap;
}
.site-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.55rem; right: 0.55rem; bottom: 0.2rem;
  height: 1px;
  background: var(--hr-ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.site-nav .nav-link:hover::after,
.site-nav .nav-link.active::after { transform: scaleX(1); }

.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: var(--hr-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover { background: var(--hr-beige); color: var(--hr-bronze); }
.icon-btn .bi { font-size: 18px; }

.cart-badge, .wishlist-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--hr-sage);
  color: #fff;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  font-family: var(--hr-sans);
}

/* search expand */
.search-expand {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 0;
  opacity: 0;
  pointer-events: none;
  transition: width .3s ease, opacity .2s ease;
  overflow: hidden;
}
.search-expand.open { width: 280px; opacity: 1; pointer-events: auto; }
.search-expand .form-control {
  border: none;
  border-bottom: 1px solid var(--hr-ink);
  border-radius: 0;
  background: transparent;
  padding: 0.4rem 0.5rem;
  font-size: 14px;
}
.search-expand .form-control:focus { box-shadow: none; }

/* ---------- 6. Hero carousel ---------- */
.hero-carousel { background: var(--hr-beige); }
.hero-slide {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 640px;
}
@media (max-width: 991.98px) {
  .hero-slide { grid-template-columns: 1fr; min-height: auto; }
}
.hero-image {
  background: linear-gradient(135deg, var(--hr-taupe) 0%, var(--hr-beige) 60%, var(--hr-camel) 120%);
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(58,53,48,0.04) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.hero-image .ph-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  font-family: var(--hr-serif);
  font-style: italic;
  color: var(--hr-bronze);
  font-size: 14px;
}
.hero-text {
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--hr-base);
}
@media (max-width: 991.98px) {
  .hero-text { padding: 3rem 1.5rem; }
}
.hero-text h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-text p.lead {
  font-size: 17px;
  color: rgba(58, 53, 48, 0.72);
  max-width: 460px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-carousel .carousel-indicators {
  bottom: 1.5rem;
  margin: 0 5rem;
  justify-content: flex-start;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 32px; height: 2px;
  background: rgba(58, 53, 48, 0.25);
  border: none;
  margin: 0 6px 0 0;
  opacity: 1;
  transition: background .25s ease;
}
.hero-carousel .carousel-indicators .active { background: var(--hr-ink); }
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next { width: 5%; opacity: 0; }
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next { opacity: .6; }
.carousel-fade .carousel-item { transition-duration: .9s; }

/* ---------- 7. Section spacing ---------- */
.section          { padding: 3.5rem 0; }
.section-tight    { padding: 2rem 0; }
.section-beige    { background: var(--hr-beige); }
.section-base     { background: var(--hr-base); }
@media (max-width: 767.98px) {
  .section { padding: 2rem 0; }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 0.4rem;
}
.section-head .eyebrow { margin-bottom: 0.6rem; }

/* ---------- 8. Category circles ---------- */
.cat-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--hr-ink);
  text-align: center;
}
.cat-circle .circle {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--hr-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform .35s cubic-bezier(.2, .8, .25, 1), background .25s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}
.cat-circle .circle::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(58,53,48,0.04) 0 1px, transparent 1px 12px);
}
.cat-circle .circle .bi {
  font-size: 36px;
  color: var(--hr-bronze);
  position: relative;
}
.cat-circle:hover .circle {
  transform: translateY(-6px);
  background: var(--hr-taupe);
  box-shadow: 0 16px 32px -16px rgba(40, 30, 20, 0.18);
}
.cat-circle .label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .cat-circle .circle { width: 96px; height: 96px; }
  .cat-circle .circle .bi { font-size: 26px; }
  .cat-circle .label { font-size: 11px; }
}

/* ---------- 9. Placeholder image (linen-stripe) ---------- */
.ph {
  position: relative;
  background:
    linear-gradient(135deg, rgba(217,207,199,.85), rgba(239,233,227,.95) 55%, rgba(201,181,156,.55)),
    var(--hr-beige);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  color: var(--hr-bronze);
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 14px),
    repeating-linear-gradient(-45deg, rgba(58,53,48,0.04) 0 1px, transparent 1px 18px);
  pointer-events: none;
}
.ph .ph-label {
  position: relative;
  font-family: var(--hr-serif);
  font-style: italic;
  font-size: 13px;
  padding: 1rem 1.2rem;
  z-index: 1;
}
.ph.ph-sage {
  background:
    linear-gradient(135deg, rgba(119,136,115,.45), rgba(217,207,199,.7) 55%, rgba(239,233,227,.9)),
    var(--hr-beige);
}
.ph.ph-bronze {
  background:
    linear-gradient(135deg, rgba(138,118,80,.55), rgba(201,181,156,.6) 55%, rgba(239,233,227,.85)),
    var(--hr-beige);
}
.ph-square { aspect-ratio: 1 / 1; }
.ph-portrait { aspect-ratio: 3 / 4; }
.ph-wide { aspect-ratio: 16 / 9; }

/* ---------- 10. Feature collection grid ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 620px;
}
.collection-grid > a { display: block; position: relative; overflow: hidden; }
.collection-grid > a:nth-child(1) { grid-row: span 2; }
.collection-grid .ph { height: 100%; transition: transform .6s cubic-bezier(.2,.8,.25,1); }
.collection-grid > a:hover .ph { transform: scale(1.03); }
.collection-grid .ph-label { font-size: 14px; }
@media (max-width: 991.98px) {
  .collection-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: auto; }
  .collection-grid > a:nth-child(1) { grid-row: auto; grid-column: span 2; }
  .collection-grid > a:nth-child(1) .ph { aspect-ratio: 16/9; }
  .collection-grid > a:not(:nth-child(1)) .ph { aspect-ratio: 1/1; }
}

/* ---------- 11. Product card (Seamless Editorial) ---------- */
.product-card a {
  text-decoration: none !important;
}

.product-card .product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: transparent;
  overflow: hidden;
  margin-bottom: 8px; /* Tighter spacing */
}

.product-card .product-image-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 0;
  text-decoration: none !important;
}

.product-card .main-img,
.product-card .hover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin: 0;
  padding: 0;
}

.product-card .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .main-img {
  transform: scale(1.1);
}

.product-card:hover .hover-img {
  opacity: 1;
  transform: scale(1.1);
}

.product-card .product-actions {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.product-card .action-btn {
  width: 38px;
  height: 38px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hr-ink);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.product-card .action-btn i {
  font-size: 16px;
  line-height: 1;
}

.product-card .action-btn:hover {
  background: var(--hr-ink);
  color: #fff;
  transform: scale(1.1);
}

.product-card .action-btn.active {
  color: #c0392b;
}

.product-card .product-body {
  text-align: center;
  padding: 0 4px;
}

.product-card .product-meta {
  font-size: 9px;
  color: var(--hr-bronze);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
  font-weight: 500;
}

.product-card .product-name {
  font-family: var(--hr-serif);
  font-size: 1.05rem;
  margin-bottom: 3px;
  line-height: 1.3;
  font-weight: 400;
}

.product-card .product-name a {
  color: var(--hr-ink);
  text-decoration: none !important;
}

.product-card .product-price {
  font-size: 13px;
  color: var(--hr-ink);
  font-weight: 500;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.product-card .price-current {
  font-weight: 600;
}

.product-card .price-old {
  font-size: 11px;
  text-decoration: line-through;
  opacity: 0.35;
}

/* Badges - Glassmorphism Design */
.product-card .product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-card .product-tag {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--hr-ink);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.product-card .product-tag::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 6px;
  background: currentColor;
}

.product-card .product-tag.tag-sale {
  background: rgba(230, 57, 70, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.product-card .product-tag.tag-featured {
  background: rgba(138, 118, 80, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.product-card .product-tag.tag-new {
  background: rgba(40, 30, 20, 0.9);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* ---------- 12. Editorial banner ---------- */
.editorial-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.editorial-banner .ph {
  position: absolute;
  inset: 0;
}
.editorial-banner .ph::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(58,53,48,0) 0%, rgba(58,53,48,0.45) 100%);
}
.editorial-banner .editorial-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
}
.editorial-banner .editorial-text h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}
.editorial-banner .editorial-text .btn-link-arrow { color: #fff; border-color: #fff; }
.editorial-banner .editorial-text .btn-link-arrow:hover { color: var(--hr-camel); border-color: var(--hr-camel); }

/* ---------- 13. Two-column promo ---------- */
.promo-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  height: 100%;
}
.promo-card .ph { aspect-ratio: 4/5; }
.promo-card .promo-body h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 0.6rem;
}
.promo-card .promo-body p { color: rgba(58, 53, 48, 0.7); margin-bottom: 1.2rem; }

/* ---------- 14. Instagram strip ---------- */
.insta-tile {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.insta-tile .ph { height: 100%; transition: transform .5s ease; }
.insta-tile:hover .ph { transform: scale(1.06); }
.insta-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(58,53,48,0);
  transition: background .25s ease;
}
.insta-tile:hover::after { background: rgba(58,53,48,0.25); }
.insta-tile .bi {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 26px;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 1;
}
.insta-tile:hover .bi { opacity: 1; }

/* ---------- 15. Newsletter ---------- */
.newsletter-section { background: var(--hr-beige); padding: 5rem 0; }
.newsletter-section h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.newsletter-form .form-control {
  border: none;
  border-bottom: 1px solid var(--hr-ink);
  background: transparent;
  border-radius: 0;
  padding: 0.85rem 0;
  font-size: 15px;
}
.newsletter-form .form-control:focus { box-shadow: none; border-color: var(--hr-bronze); }

/* ---------- 16. Footer ---------- */
.site-footer {
  background: var(--hr-ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 5rem 0 2rem;
}
.site-footer .footer-brand {
  font-family: var(--hr-serif);
  color: #fff;
  font-size: 28px;
  margin-bottom: 1rem;
}
.site-footer h6 {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  font-family: var(--hr-sans);
}
.site-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  display: inline-block;
  padding: 0.25rem 0;
}
.site-footer a:hover { color: #fff; }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 1.5rem;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.payment-icons { display: flex; gap: 0.6rem; align-items: center; }
.payment-icons span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
}
.social-icons {
  display: flex;
  gap: 0.5rem;
}
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.social-icons a:hover { background: var(--hr-camel); color: #fff; }

/* ---------- 17. Cart Drawer — Premium Design ---------- */
.cart-drawer {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Header */
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--hr-taupe);
  flex-shrink: 0;
  background: #fff;
}
.cart-drawer-eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hr-bronze);
  margin-bottom: 2px;
}
.cart-drawer-title {
  font-family: var(--hr-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--hr-ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.cart-drawer-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--hr-taupe);
  background: transparent;
  color: var(--hr-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
}
.cart-drawer-close:hover { background: var(--hr-ink); color: #fff; border-color: var(--hr-ink); }
.cart-drawer-close .bi { font-size: 14px; }

/* Free shipping progress bar */
.cart-shipping-progress {
  padding: 12px 24px;
  background: var(--hr-beige);
  border-bottom: 1px solid var(--hr-taupe);
  flex-shrink: 0;
}
.cart-shipping-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(58,53,48,.7);
  margin-bottom: 8px;
}
.cart-shipping-text .bi { font-size: 14px; color: var(--hr-bronze); }
.cart-shipping-track {
  height: 4px;
  background: var(--hr-taupe);
  border-radius: 4px;
  overflow: hidden;
}
.cart-shipping-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--hr-camel), var(--hr-bronze));
  border-radius: 4px;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

/* Scrollable body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}
.cart-drawer-body::-webkit-scrollbar { width: 4px; }
.cart-drawer-body::-webkit-scrollbar-track { background: transparent; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: var(--hr-taupe); border-radius: 4px; }

/* Cart item rows in drawer */
.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--hr-beige);
  transition: background .15s;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: var(--hr-base); }

.cart-item-media {
  width: 80px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--hr-beige);
  flex-shrink: 0;
}
.cart-item-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item-img-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hr-beige);
}

.cart-item-info { display: flex; flex-direction: column; min-width: 0; }
.cart-item-name {
  font-family: var(--hr-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--hr-ink);
  line-height: 1.3;
  margin-bottom: 4px;
  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cart-item-variant {
  font-size: 11px;
  color: rgba(58,53,48,.55);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.cart-item-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  gap: 8px;
}
.cart-item-qty-badge {
  display: inline-flex;
  align-items: center;
  background: var(--hr-beige);
  border: 1px solid var(--hr-taupe);
  color: rgba(58,53,48,.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
}
.cart-item-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--hr-ink);
  letter-spacing: -0.01em;
}
.cart-item-unit-price {
  font-size: 11px;
  color: rgba(58,53,48,.45);
  text-align: right;
  margin-top: 2px;
}

/* Empty state */
.cart-drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
  text-align: center;
  min-height: 300px;
}
.cart-empty-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--hr-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cart-empty-icon .bi { font-size: 32px; color: var(--hr-camel); }
.cart-empty-title {
  font-family: var(--hr-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--hr-ink);
  margin: 0 0 6px;
}
.cart-empty-sub {
  font-size: 13px;
  color: rgba(58,53,48,.55);
  margin: 0 0 24px;
}
.cart-empty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--hr-ink);
  color: #fff;
  padding: 13px 26px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.cart-empty-btn:hover { background: var(--hr-bronze); color: #fff; }

/* Sticky footer */
.cart-drawer-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--hr-taupe);
  background: #fff;
  flex-shrink: 0;
}

/* Trust strip */
.cart-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(58,53,48,.5);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--hr-beige);
}
.cart-trust-strip .bi { font-size: 12px; margin-right: 3px; color: var(--hr-camel); }

/* Subtotal row */
.cart-subtotal-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cart-subtotal-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hr-ink);
  display: block;
}
.cart-subtotal-note {
  font-size: 10px;
  color: rgba(58,53,48,.45);
  letter-spacing: 0.06em;
}
.cart-subtotal-amount {
  font-family: var(--hr-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--hr-ink);
  letter-spacing: -0.01em;
}

/* CTA stack */
.cart-cta-stack { display: flex; flex-direction: column; gap: 10px; }
.cart-btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--hr-ink);
  color: #fff !important;
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background .25s, transform .15s;
}
.cart-btn-checkout:hover {
  background: var(--hr-bronze);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(58,53,48,.18);
}
.cart-btn-view {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid var(--hr-taupe);
  background: transparent;
  color: var(--hr-ink) !important;
  padding: 13px 20px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all .2s;
}
.cart-btn-view:hover {
  border-color: var(--hr-ink);
  background: var(--hr-beige);
}



/* ---------- 18. Quantity selector (page) ---------- */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  overflow: hidden;
}
.qty-selector button {
  background: transparent;
  border: none;
  width: 44px; height: 44px;
  font-size: 16px;
  color: var(--hr-ink);
}
.qty-selector button:hover { background: var(--hr-beige); }
.qty-selector input {
  width: 56px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 14px;
  font-family: var(--hr-sans);
  background: transparent;
}
.qty-selector input:focus { outline: none; }

/* ---------- 19. Breadcrumb ---------- */
.breadcrumb {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(58, 53, 48, 0.5);
  margin: 0;
}
.breadcrumb-item + .breadcrumb-item::before { color: rgba(58, 53, 48, 0.4); }
.breadcrumb-item a { color: rgba(58, 53, 48, 0.55); }
.breadcrumb-item a:hover { color: var(--hr-bronze); }
.breadcrumb-item.active { color: var(--hr-ink); }

/* ---------- 20. Shop page ---------- */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 2rem;
}
.shop-toolbar .results-count {
  font-size: 13px;
  color: rgba(58, 53, 48, 0.65);
}
.filter-group {
  border-bottom: 1px solid var(--bs-border-color);
  padding: 1.25rem 0;
}
.filter-group h6 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hr-ink);
  margin-bottom: 1rem;
  font-family: var(--hr-sans);
  font-weight: 600;
}
.filter-group .form-check {
  margin-bottom: 0.4rem;
  font-size: 14px;
}
.filter-group .form-check-input {
  border-radius: 2px;
  border-color: var(--bs-border-color);
}
.filter-group .form-check-input:checked {
  background-color: var(--hr-ink);
  border-color: var(--hr-ink);
}
.filter-group .swatch-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-group .swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(58,53,48,0.15);
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.filter-group .swatch.active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--hr-ink);
  border-radius: 50%;
}
.price-range-inputs { display: flex; gap: 0.5rem; align-items: center; margin-top: 0.5rem; font-size: 13px; }
.price-range-inputs .form-control { padding: 0.4rem 0.5rem; font-size: 13px; }

.pagination .page-link {
  color: var(--hr-ink);
  border: 1px solid var(--bs-border-color);
  padding: 0.55rem 0.95rem;
  font-size: 13px;
  margin: 0 3px;
  border-radius: 3px !important;
}
.pagination .page-item.active .page-link {
  background: var(--hr-ink);
  border-color: var(--hr-ink);
  color: #fff;
}

/* ---------- 21. Product detail page ---------- */
.pdp-gallery { display: grid; grid-template-columns: 90px 1fr; gap: 1rem; }
.pdp-gallery .thumbs { display: flex; flex-direction: column; gap: 0.75rem; }
.pdp-gallery .thumb {
  aspect-ratio: 1/1;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid transparent;
  overflow: hidden;
  background: var(--hr-beige);
  position: relative;
}
.pdp-gallery .thumb.active { border-color: var(--hr-ink); }
.pdp-gallery .thumb .ph { height: 100%; }
.pdp-gallery .main-image .ph {
  aspect-ratio: 1/1;
  border-radius: var(--bs-border-radius);
}
@media (max-width: 767.98px) {
  .pdp-gallery { grid-template-columns: 1fr; }
  .pdp-gallery .thumbs { flex-direction: row; order: 2; }
  .pdp-gallery .thumb { width: 70px; }
}

.pdp-info h1 { font-size: clamp(2rem, 3.5vw, 2.6rem); margin-bottom: 0.5rem; }
.pdp-info .price-row {
  display: flex; align-items: center; gap: 0.75rem;
  margin: 0.4rem 0 1.5rem;
  font-size: 22px;
  font-family: var(--hr-sans);
  font-weight: 500;
}
.pdp-info .price-row .old { text-decoration: line-through; color: rgba(58,53,48,0.45); font-size: 16px; }
.pdp-info .price-row .save {
  background: var(--hr-sage);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.option-pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.option-pill {
  padding: 0.55rem 1rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  background: transparent;
  color: var(--hr-ink);
  transition: all .2s ease;
}
.option-pill:hover { border-color: var(--hr-ink); }
.option-pill.active {
  background: var(--hr-ink);
  border-color: var(--hr-ink);
  color: #fff;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 1.25rem 0;
  margin: 2rem 0;
}
.trust-strip .item { display: flex; gap: 0.6rem; align-items: center; font-size: 12px; }
.trust-strip .item .bi { font-size: 18px; color: var(--hr-bronze); }
@media (max-width: 575.98px) { .trust-strip { grid-template-columns: 1fr; } }

.accordion-item { border: none; border-bottom: 1px solid var(--bs-border-color); background: transparent; }
.accordion-button {
  background: transparent !important;
  font-family: var(--hr-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 0;
  color: var(--hr-ink) !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--hr-bronze) !important; }
.accordion-button::after { background-size: 16px; }
.accordion-body { padding: 0 0 1.25rem; font-size: 14.5px; color: rgba(58,53,48,0.78); }

/* ---------- 22. Cart page ---------- */
.cart-table {
  width: 100%;
}
.cart-table th, .cart-table td { padding: 1.25rem 0; vertical-align: top; border-bottom: 1px solid var(--bs-border-color); }
.cart-table th {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(58,53,48,0.6);
}
.cart-table .product-cell { display: flex; gap: 1rem; align-items: flex-start; min-width: 240px; }
.cart-table .product-cell .ph { width: 100px; aspect-ratio: 1; border-radius: 3px; flex: none; }
.cart-table .product-cell .name { font-family: var(--hr-serif); font-size: 17px; margin-bottom: 4px; }
.cart-table .product-cell .meta { font-size: 12px; color: rgba(58,53,48,.6); }
.cart-table .product-cell .remove {
  background: none; border: none; padding: 0; margin-top: 8px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(58,53,48,.55);
}
.cart-table .product-cell .remove:hover { color: var(--hr-bronze); text-decoration: underline; }

.summary-card {
  background: var(--hr-beige);
  padding: 2rem;
  border-radius: var(--bs-border-radius);
}
.summary-card h5 {
  font-family: var(--hr-serif);
  font-size: 22px;
  margin-bottom: 1.25rem;
}
.summary-card .summary-row {
  display: flex; justify-content: space-between;
  font-size: 14px;
  padding: 0.5rem 0;
}
.summary-card .summary-row.total {
  border-top: 1px solid var(--hr-taupe);
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: 17px;
  font-weight: 500;
}
.summary-card .promo-row { display: flex; gap: 0.5rem; margin: 1rem 0; }
.summary-card .promo-row .form-control { font-size: 13px; }

/* ---------- 23. About page ---------- */
.about-hero {
  background: var(--hr-beige);
  padding: 6rem 0;
  text-align: center;
}
.about-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); }
.about-hero p { max-width: 640px; margin: 1rem auto 0; color: rgba(58,53,48,.7); }

.values-card {
  background: var(--hr-base);
  padding: 2rem;
  border-radius: var(--bs-border-radius);
  border: 1px solid var(--bs-border-color);
  height: 100%;
}
.values-card .icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--hr-beige);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--hr-bronze);
}
.values-card h4 { font-size: 22px; margin-bottom: 0.5rem; }
.values-card p { color: rgba(58,53,48,.7); margin: 0; font-size: 14.5px; }

.team-card .ph { aspect-ratio: 3/4; margin-bottom: 1rem; }
.team-card h5 { font-family: var(--hr-serif); font-size: 19px; margin-bottom: 2px; }
.team-card .role { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(58,53,48,.55); }

/* ---------- 24. Contact page ---------- */
.contact-info-card {
  background: var(--hr-beige);
  padding: 2rem;
  border-radius: var(--bs-border-radius);
  height: 100%;
}
.contact-info-card .icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--hr-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--hr-bronze);
}
.contact-info-card h5 { font-family: var(--hr-serif); font-size: 19px; margin-bottom: 0.5rem; }
.contact-info-card p, .contact-info-card a { font-size: 14px; color: rgba(58,53,48,.75); }

.contact-form .form-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--hr-bronze);
  margin-bottom: 0.4rem;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--bs-border-color);
  background: var(--hr-base);
  border-radius: var(--bs-border-radius);
  padding: 0.85rem 1rem;
  font-size: 14.5px;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--hr-bronze);
  box-shadow: none;
}

.map-placeholder {
  aspect-ratio: 16 / 10;
  background:
    repeating-linear-gradient(0deg, var(--hr-beige) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, var(--hr-beige) 0 1px, transparent 1px 60px),
    var(--hr-base);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-placeholder .pin {
  width: 14px; height: 14px;
  background: var(--hr-bronze);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(138, 118, 80, 0.18);
}
.map-placeholder .map-label {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--hr-base);
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  font-size: 12px;
  border: 1px solid var(--bs-border-color);
}

/* ---------- 25. Toast ---------- */
.toast-container { z-index: 1090; }
.toast {
  background: var(--hr-ink);
  color: #fff;
  border: none;
  border-radius: var(--bs-border-radius);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  min-width: 280px;
}
.toast .toast-body { padding: 0.85rem 1rem; display: flex; align-items: center; gap: 0.6rem; }
.toast .bi { color: var(--hr-camel); font-size: 18px; }

/* ---------- 26. Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .25, 1); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- 27. Misc ---------- */
.divider-rule {
  height: 1px;
  background: var(--bs-border-color);
  width: 100%;
  margin: 2rem 0;
}

.dropdown-menu {
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  font-size: 14px;
  padding: 0.5rem;
  box-shadow: 0 14px 36px -16px rgba(40, 30, 20, 0.18);
}
.dropdown-item { padding: 0.5rem 0.8rem; border-radius: 3px; }
.dropdown-item:hover, .dropdown-item:focus { background: var(--hr-beige); color: var(--hr-ink); }

.modal-content {
  border: none;
  border-radius: var(--bs-border-radius);
}
.modal-header { border-bottom: 1px solid var(--bs-border-color); padding: 1.25rem 1.5rem; }
.modal-title { font-family: var(--hr-serif); font-size: 22px; }
.modal-body { padding: 1.5rem; }

/* ---------- Mega menu ---------- */
.nav-mega-wrap { position: static; }

.site-nav .nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--hr-ink);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active,
.site-nav .nav-mega-trigger.is-open {
  color: var(--hr-bronze);
}

.nav-mega-root { position: relative; }

.nav-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  border-top: 2px solid var(--hr-bronze);
  border-bottom: 1px solid var(--hr-taupe);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  z-index: 1050;
  padding: 24px 0 20px;
}
.nav-mega-panel .container { max-width: 1320px; }

.nav-mega-l2 {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hr-ink);
  text-decoration: none;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--hr-beige);
  transition: color 0.15s ease;
}
.nav-mega-l2:hover { color: var(--hr-bronze); }

.nav-mega-l3 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav-mega-l3 a {
  font-size: 13px;
  color: var(--hr-ink);
  opacity: 0.72;
  text-decoration: none;
  padding: 4px 0;
  display: block;
  transition: color 0.15s ease, padding-left 0.15s ease, opacity 0.15s ease;
}
.nav-mega-l3 a:hover {
  color: var(--hr-bronze);
  opacity: 1;
  padding-left: 5px;
}
.nav-mega-more {
  margin-top: 4px;
  color: var(--hr-bronze) !important;
  font-weight: 600;
  opacity: 1 !important;
}

.nav-mega-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--hr-beige);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1040;
  top: var(--header-bottom, 132px);  /* JS sets --header-bottom from real header height */
  pointer-events: auto;
}

/* ---------- 28. Utility ---------- */
.hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.hide-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.cursor-pointer { cursor: pointer; }

.btn-white {
  background: #fff;
  color: var(--hr-ink);
  border-color: var(--hr-taupe);
}
.btn-white:hover {
  background: var(--hr-base);
  color: var(--hr-ink);
  border-color: var(--hr-ink);
}
