/** Shopify CDN: Minification failed

Line 613:0 Unexpected "}"

**/
/* ======================================
   HARBOUR GLAMOUR – Theme CSS
   ====================================== */

/* -- PRODUCT REVIEWS STRIP -- */
.product-reviews-section { padding: 60px 0; }
.product-reviews-track {
  display: flex;
  gap: 20px;
  /* desktop: all cards visible */
}
.product-review-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.review-card-text { font-size: 14px; color: #444; line-height: 1.65; flex: 1; }
.review-card-author { font-size: 13px; font-weight: 700; color: var(--black); }
.review-card-author span { display: block; font-weight: 400; color: var(--gray-text); margin-top: 2px; }

@media (max-width: 768px) {
  .product-reviews-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .product-reviews-track::-webkit-scrollbar { display: none; }
  .product-review-card {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #00b77f;
  --green-dark: #009968;
  --black: #111111;
  --white: #ffffff;
  --gray-light: #f4f4f4;
  --gray-mid: #e0e0e0;
  --gray-text: #666666;
  --red: #e83838;
  --font: 'Inter', Helvetica Neue, Arial, sans-serif;
  --max-w: 1200px;
  --radius: 6px;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); font-size: 15px; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }

/* -- ANNOUNCEMENT BAR -- */
.announcement-bar {
  background: var(--green); color: white;
  text-align: center; padding: 9px 16px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  display: flex; justify-content: center; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.announcement-bar .divider { opacity: 0.5; }

/* -- HEADER -- */
.site-header {
  background: white; border-bottom: 1px solid var(--gray-mid);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.site-logo {
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--black); white-space: nowrap;
}
.site-logo span { color: var(--green); }
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-item > a {
  display: block; padding: 22px 13px; font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--black);
  transition: color 0.2s; white-space: nowrap;
}
.nav-item > a:hover { color: var(--green); }
.nav-item.nav-sale > a { color: var(--red); }
.nav-dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: white; border: 1px solid var(--gray-mid);
  border-top: 2px solid var(--green); min-width: 180px;
  padding: 8px 0; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 900;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 9px 18px; font-size: 13.5px;
  color: var(--black); transition: background 0.15s, color 0.15s;
}
.nav-dropdown a:hover { background: var(--gray-light); color: var(--green); }
.header-icons { display: flex; align-items: center; gap: 16px; }
.header-icon-btn {
  background: none; border: none; padding: 6px; display: flex;
  align-items: center; justify-content: center; position: relative;
  color: var(--black); transition: color 0.2s;
}
.header-icon-btn:hover { color: var(--green); }
.cart-count-badge {
  position: absolute; top: -2px; right: -4px;
  background: var(--green); color: white; border-radius: 50%;
  width: 17px; height: 17px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.hamburger-btn { display: none; }

/* -- MOBILE MENU -- */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 1100;
}
.mobile-overlay.open { display: block; }
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 80%; max-width: 340px;
  height: 100vh; background: white; z-index: 1200; overflow-y: auto;
  transform: translateX(-100%); transition: transform 0.3s ease; padding: 24px 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 20px 20px; border-bottom: 1px solid var(--gray-mid); margin-bottom: 8px;
}
.mobile-menu-close { background: none; border: none; font-size: 24px; }
.mobile-nav-link {
  display: block; padding: 14px 20px; font-size: 15px; font-weight: 600;
  letter-spacing: 0.02em; border-bottom: 1px solid var(--gray-light); text-transform: uppercase;
}
.mobile-nav-link.sale { color: var(--red); }
.mobile-sub-toggle > .mobile-nav-link { cursor: pointer; }
.mobile-sub-menu { background: var(--gray-light); display: none; padding: 6px 0; }
.mobile-sub-toggle.open .mobile-sub-menu { display: block; }
.mobile-sub-menu a { display: block; padding: 9px 32px; font-size: 14px; color: var(--gray-text); }

/* -- CART DRAWER -- */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.45); z-index: 2000;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: 360px; max-width: 100%;
  height: 100vh; background: white; z-index: 2100;
  transform: translateX(100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  padding: 20px; border-bottom: 1px solid var(--gray-mid);
  display: flex; justify-content: space-between; align-items: center;
}
.cart-drawer-head h3 { font-size: 18px; font-weight: 700; }
.cart-drawer-close { background: none; border: none; font-size: 22px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-drawer-empty { text-align: center; padding: 60px 20px; color: var(--gray-text); }
.cart-drawer-empty .empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-line-item {
  display: flex; gap: 14px; padding-bottom: 16px;
  margin-bottom: 16px; border-bottom: 1px solid var(--gray-light);
}
.cart-line-img {
  width: 70px; height: 90px; object-fit: cover;
  border-radius: 4px; background: var(--gray-light); flex-shrink: 0;
}
.cart-line-info { flex: 1; }
.cart-line-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-line-variant { font-size: 12px; color: #999; margin-bottom: 8px; }
.cart-line-bottom { display: flex; justify-content: space-between; align-items: center; }
.qty-ctrl { display: flex; align-items: center; }
.qty-ctrl button {
  background: var(--gray-light); border: 1px solid var(--gray-mid);
  width: 28px; height: 28px; font-size: 16px; font-weight: 600;
}
.qty-ctrl span { padding: 0 10px; font-size: 14px; font-weight: 600; }
.cart-line-price { font-size: 14px; font-weight: 700; color: var(--green); }
.cart-drawer-footer { padding: 20px; border-top: 1px solid var(--gray-mid); }
.cart-drawer-total { display: flex; justify-content: space-between; margin-bottom: 16px; font-weight: 700; font-size: 16px; }
.cart-checkout-btn {
  width: 100%; background: var(--green); color: white; border: none;
  padding: 15px; font-size: 15px; font-weight: 700; border-radius: var(--radius);
  letter-spacing: 0.06em; text-transform: uppercase; transition: background 0.2s;
}
.cart-checkout-btn:hover { background: var(--green-dark); }

/* -- BUTTONS -- */
.btn-primary {
  display: inline-block; background: var(--green); color: white; border: none;
  padding: 14px 36px; font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s; cursor: pointer;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }

/* -- HERO SLIDER -- */
.hero-slider { position: relative; overflow: hidden; background: #1a1a2e; height: 560px; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; transform: scale(1.04); transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.25) 100%);
}
.hero-slide-content {
  position: relative; z-index: 2; text-align: center; color: white; padding: 20px;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green); margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(40px,7vw,76px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 8px;
}
.hero-subtitle {
  font-size: clamp(18px,3vw,28px); font-weight: 300; margin-bottom: 32px; opacity: 0.9;
}
.hero-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  border: none; transition: background 0.3s;
}
.hero-dot.active { background: white; }
@media (max-width: 768px) {
  .hero-slider { height: auto !important; }
  .hero-slide { aspect-ratio: 4/3; }
  .hero-slide img,
  .hero-slide video { height: 100%; object-fit: cover; }
}


/* -- TRUST BAR -- */
.trust-bar { background: var(--black); color: white; padding: 20px; }
.trust-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; text-align: center;
}
.trust-bar-item { display: flex; align-items: center; gap: 10px; }
.trust-bar-icon { font-size: 22px; }
.trust-bar-item p { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; }

/* -- SECTIONS -- */
.section-wrap { padding: 56px 20px; }
.section-wrap--gray { background: var(--gray-light); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 8px;
}
.section-title { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.view-all-link {
  font-size: 13px; font-weight: 600; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--green); padding-bottom: 1px;
}
.view-all-link:hover { color: var(--green-dark); border-color: var(--green-dark); }

/* -- PRODUCT GRID -- */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-card {
  border-radius: var(--radius); overflow: hidden; background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.product-card-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--gray-light);
}
.product-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: white; font-size: 11px; font-weight: 700;
  padding: 3px 8px; border-radius: 3px;
}
.product-card-info { padding: 14px; }
.product-card-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; line-height: 1.4; }
.product-card-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price--sale { font-size: 16px; font-weight: 700; color: var(--green); }
.price--compare { font-size: 13px; color: #999; text-decoration: line-through; }
.color-swatches { display: flex; gap: 4px; margin-top: 8px; }
.color-swatch { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.15); }

/* -- CATEGORY GRID -- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius);
  overflow: hidden; display: block;
}
.category-card-bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; transition: transform 0.4s;
}
.category-card:hover .category-card-bg { transform: scale(1.06); }
.category-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%);
}
.category-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 18px; color: white; font-size: 18px; font-weight: 700;
}
.category-card-label small { display: block; font-size: 12px; font-weight: 400; opacity: 0.8; margin-top: 2px; }

/* -- BRAND STORY -- */
.brand-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.brand-story-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.brand-story-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-story-eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green); font-weight: 600; margin-bottom: 10px; }
.brand-story-title { font-size: 30px; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.brand-story-sub { font-size: 14px; color: var(--gray-text); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; margin-bottom: 24px; }
.brand-story-founders { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.brand-story-body p { color: var(--gray-text); line-height: 1.75; margin-bottom: 14px; font-size: 14.5px; }

/* -- TESTIMONIALS -- */
.testimonials-title { text-align: center; margin-bottom: 36px; }
.reviews-track { overflow: hidden; position: relative; }
.reviews-carousel { display: flex; gap: 16px; transition: transform 0.4s ease; }
.review-card { min-width: 280px; background: var(--gray-light); border-radius: var(--radius); padding: 20px; flex-shrink: 0; }
.review-stars { color: #f5a623; font-size: 16px; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.65; color: #444; margin-bottom: 12px; }
.review-author { font-size: 13px; font-weight: 600; }
.review-date { font-size: 12px; color: #999; }
.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.carousel-btn {
  background: white; border: 2px solid var(--gray-mid); border-radius: 50%;
  width: 40px; height: 40px; font-size: 16px; display: flex;
  align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s;
}
.carousel-btn:hover { border-color: var(--green); color: var(--green); }

/* -- FAQ -- */
.faq-title { text-align: center; margin-bottom: 36px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-mid); }
.faq-item:first-child { border-top: 1px solid var(--gray-mid); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 18px 0; font-size: 15px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-icon { font-size: 20px; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s;
  font-size: 14px; color: var(--gray-text); line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 16px; }

/* -- PRODUCT PAGE -- */
.product-layout {
  max-width: var(--max-w); margin: 0 auto; padding: 0 20px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.product-gallery { position: sticky; top: 80px; }
.gallery-main-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; background: var(--gray-light); cursor: zoom-in;
}
.gallery-main-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-main-wrap:hover img { transform: scale(1.04); }
.gallery-badge-large {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: white; font-size: 14px; font-weight: 700;
  padding: 5px 12px; border-radius: 4px;
}
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gallery-thumb {
  width: 72px; height: 90px; border-radius: 5px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
  background: var(--gray-light); transition: border-color 0.2s;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--green); }
.product-details { padding-top: 4px; }
.product-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.product-stars { color: #f5a623; font-size: 16px; letter-spacing: 1px; }
.product-rating-val { font-size: 14px; font-weight: 600; }
.product-review-link { font-size: 13px; color: var(--green); text-decoration: underline; }
.product-title { font-size: 26px; font-weight: 800; line-height: 1.25; margin-bottom: 18px; }
.product-trust-badges {
  display: flex; flex-direction: column; gap: 9px; padding: 16px;
  background: var(--gray-light); border-radius: var(--radius); margin-bottom: 22px;
}
.trust-badge-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; line-height: 1.4; }
.trust-badge-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.trust-badge-row strong { display: block; font-size: 13px; font-weight: 700; }
.trust-badge-row span { font-size: 12px; color: var(--gray-text); }
.option-group { margin-bottom: 20px; }
.option-label {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 9px; display: flex; align-items: center; gap: 8px;
}
.option-label em { font-weight: 400; font-style: normal; color: var(--gray-text); text-transform: none; letter-spacing: 0; }
.color-options { display: flex; gap: 8px; flex-wrap: wrap; }
.color-option-btn {
  border: 2px solid var(--gray-mid); border-radius: 4px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; background: white; cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.color-option-btn:hover { border-color: var(--green); }
.color-option-btn.active { border-color: var(--green); background: #f0fff9; color: var(--green); }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-option-btn {
  border: 2px solid var(--gray-mid); border-radius: 4px;
  width: 52px; height: 44px; font-size: 13.5px; font-weight: 600;
  background: white; cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.size-option-btn:hover { border-color: var(--green); }
.size-option-btn.active { border-color: var(--green); background: var(--green); color: white; }
.stock-notice { font-size: 13px; color: var(--red); font-weight: 600; margin-top: 8px; display: flex; align-items: center; gap: 5px; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.pricing-row { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; flex-wrap: wrap; }
.price-current { font-size: 30px; font-weight: 800; color: var(--green); }
.price-original { font-size: 18px; color: #999; text-decoration: line-through; }
.price-pct-badge { background: var(--red); color: white; font-size: 14px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.ships-by { font-size: 13px; color: var(--gray-text); margin-bottom: 18px; }
.ships-by strong { color: var(--black); }
.add-to-cart-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: center; flex-wrap: wrap; }
.qty-selector { display: flex; align-items: center; border: 2px solid var(--gray-mid); border-radius: var(--radius); overflow: hidden; }
.qty-selector button {
  background: var(--gray-light); border: none; width: 40px; height: 50px;
  font-size: 20px; font-weight: 600; transition: background 0.15s;
}
.qty-selector button:hover { background: var(--gray-mid); }
.qty-selector input {
  border: none; width: 52px; text-align: center;
  font-size: 16px; font-weight: 700; font-family: var(--font);
}
.add-to-cart-btn {
  flex: 1; background: var(--green); color: white; border: none;
  padding: 15px 28px; font-size: 16px; font-weight: 700;
  border-radius: var(--radius); letter-spacing: 0.05em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s; min-width: 180px;
}
.add-to-cart-btn:hover { background: var(--green-dark); transform: translateY(-1px); }
.payment-methods { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.pay-chip {
  background: var(--gray-light); border: 1px solid var(--gray-mid);
  border-radius: 4px; padding: 4px 9px; font-size: 12px; font-weight: 600;
}
.alert-box {
  background: #fffbea; border: 1px solid #f5d800;
  border-left: 4px solid #f5a623; border-radius: var(--radius);
  padding: 16px 18px; margin-bottom: 22px; font-size: 13.5px;
}
.alert-box strong { font-size: 14px; display: block; margin-bottom: 8px; }
.alert-box ul { padding-left: 18px; }
.alert-box ul li { margin-bottom: 4px; color: #555; }
.alert-note { font-size: 12px; color: var(--gray-text); margin-top: 8px; font-style: italic; }

/* -- BREADCRUMB -- */
.breadcrumb {
  max-width: var(--max-w); margin: 0 auto; padding: 12px 20px;
  font-size: 12.5px; color: var(--gray-text); display: flex; gap: 6px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-text); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { opacity: 0.5; }

/* -- PRODUCT DESCRIPTION -- */
.product-desc-section { max-width: var(--max-w); margin: 0 auto; padding: 40px 20px; border-top: 1px solid var(--gray-mid); }
.product-desc-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.product-desc-body { color: var(--gray-text); line-height: 1.85; font-size: 15px; }
.product-desc-body p { margin-bottom: 16px; }
.product-desc-body ul { padding-left: 22px; margin-bottom: 16px; }
.product-desc-body ul li { margin-bottom: 7px; }

/* -- TRUST 3-COL -- */
.trust-3-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; text-align: center; }
.trust-3-item { padding: 24px 20px; }
.trust-3-icon { font-size: 40px; margin-bottom: 14px; }
.trust-3-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.trust-3-text { font-size: 13.5px; color: var(--gray-text); line-height: 1.65; }

/* -- MONEY BACK -- */
.money-back-section { background: var(--black); color: white; padding: 56px 20px; text-align: center; }
.money-back-inner { max-width: 700px; margin: 0 auto; }
.money-back-icon { font-size: 56px; margin-bottom: 20px; }
.money-back-title { font-size: 26px; font-weight: 800; margin-bottom: 16px; }
.money-back-quote { font-size: 16px; line-height: 1.75; color: #ccc; font-style: italic; margin-bottom: 20px; }
.money-back-attr { font-size: 14px; color: var(--green); font-weight: 600; }

/* -- LIGHTBOX -- */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.9); z-index: 3000;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 32px; }

/* -- TOAST -- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--green); color: white; padding: 14px 24px;
  border-radius: var(--radius); font-size: 14px; font-weight: 600;
  z-index: 9999; transition: transform 0.3s ease; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* -- FOOTER -- */
.site-footer { background: #111; color: #ccc; padding: 56px 20px 0; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid #2a2a2a;
}
.footer-logo { font-size: 20px; font-weight: 800; color: white; margin-bottom: 14px; }
.footer-logo span { color: var(--green); }
.footer-desc { font-size: 13.5px; line-height: 1.7; color: #999; margin-bottom: 16px; }
.footer-perks { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-perks li { font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer-perks li::before { content: "✓"; color: var(--green); font-weight: 700; }
.footer-col-title { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: white; font-weight: 700; margin-bottom: 16px; }
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col-links a { font-size: 13.5px; color: #999; transition: color 0.2s; }
.footer-col-links a:hover { color: var(--green); }
.footer-contact-line { font-size: 13.5px; color: #999; margin-bottom: 9px; }
.footer-contact-line strong { color: white; }
.footer-hours { font-size: 13px; color: #777; margin-top: 16px; }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12.5px; color: #666; }
.footer-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pay-icon-chip { background: white; border-radius: 4px; padding: 3px 8px; font-size: 11px; font-weight: 700; color: #333; height: 24px; display: flex; align-items: center; }

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

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

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger-btn { display: flex !important; }
  .header-inner { padding: 0 16px; height: 56px; }
  .mobile-menu { transform: translateX(-100%); transition: transform 0.3s ease; }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-overlay.open { opacity: 1; pointer-events: all; }
 .hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
}
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
}
  .hero-content { padding: 24px 20px; }
  .hero-title { font-size: clamp(24px, 7vw, 40px); }
  .section-inner { padding: 0 16px; }
  .section-wrap { padding: 40px 0; }
  .section-title { font-size: 22px; margin-bottom: 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .brand-story-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials-title { font-size: 20px; }
  .trust-bar-inner { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .product-layout { grid-template-columns: 1fr; gap: 24px; }
  .gallery-thumbs { flex-direction: row; overflow-x: auto; }
  .gallery-thumb { width: 60px; height: 60px; flex-shrink: 0; }
  .product-title { font-size: 22px; }
  .trust-3-grid { grid-template-columns: 1fr; gap: 16px; }
  .cart-drawer { width: 100vw; }
  .announcement-bar { font-size: 12px; padding: 7px 16px; }
  .add-to-cart-row { flex-direction: column; }
  .add-to-cart-btn { width: 100%; min-width: unset; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(20px, 8vw, 32px); }
  .price-current { font-size: 24px; }
  .product-title { font-size: 20px; }
  .section-title { font-size: 20px; }
}
/* ==============================
   MOBILE FIXES — append to theme.css
   or replace the RESPONSIVE section
============================== */

/* Fix: was .products-grid (typo), correct class is .product-grid */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  /* Header */
  .main-nav { display: none; }
  .hamburger-btn { display: flex !important; }
  .header-inner { padding: 0 16px; height: 56px; }

  /* Hero */
  .hero-slider { height: 56vw; min-height: 280px; max-height: 420px; }
  .hero-title { font-size: clamp(22px, 6vw, 40px); }
  .hero-subtitle { font-size: clamp(14px, 3.5vw, 20px); margin-bottom: 20px; }
  .hero-eyebrow { font-size: 11px; }

  /* Sections */
  .section-wrap { padding: 32px 16px; }
  .section-title { font-size: 20px; margin-bottom: 20px; }

  /* Product grids */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Product card: smaller padding */
  .product-card-info { padding: 10px; }
  .product-card-title { font-size: 13px; }
  .price--sale { font-size: 14px; }

  /* Brand story */
  .brand-story-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Trust bar */
  .trust-bar-inner { gap: 16px; flex-direction: column; text-align: left; }
  .trust-bar-item { justify-content: flex-start; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Product page */
  .product-layout { grid-template-columns: 1fr; gap: 20px; padding: 0 16px 40px; }
  .product-gallery { position: static; }
  .gallery-thumbs { flex-direction: row; overflow-x: auto; flex-wrap: nowrap; }
  .gallery-thumb { width: 58px; height: 72px; flex-shrink: 0; }
  .product-title { font-size: 20px; }
  .price-current { font-size: 24px; }
  .add-to-cart-row { flex-direction: column; }
  .add-to-cart-btn { width: 100%; min-width: unset; font-size: 15px; padding: 14px; }
  .qty-selector { width: 100%; justify-content: center; }

  /* Trust 3-grid */
  .trust-3-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Cart drawer */
  #hg-drawer { max-width: 100vw; }

  /* Announcement bar */
  .announcement-bar { font-size: 11px; padding: 7px 12px; gap: 10px; }

  /* Breadcrumb */
  .breadcrumb { font-size: 11px; padding: 8px 16px; }

  /* Money back */
  .money-back-section { padding: 40px 16px; }
  .money-back-title { font-size: 20px; }
  .money-back-quote { font-size: 14px; }
  .money-back-icon { font-size: 40px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(18px, 7vw, 28px); }
  .product-title { font-size: 18px; }
  .section-title { font-size: 18px; }
  .price-current { font-size: 22px; }

  /* Smaller product cards on very small screens */
  .product-card-title { font-size: 12px; }
  .price--sale { font-size: 13px; }
  .price--compare { font-size: 11px; }

  /* Full-width qty selector + ATC */
  .qty-selector button { width: 36px; height: 44px; }
  .qty-selector input { width: 44px; font-size: 15px; }
  .add-to-cart-btn { font-size: 14px; padding: 13px; }

  /* Announcement: single line */
  .announcement-bar .divider { display: none; }
}
