@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
  --bg: #FAFAF7;
  --bg-alt: #F5F3EF;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --border: #EDEBE8;
  --green: #2E7D32;
  --red: #C8392D;
  --gold: #FACC15;
  --amber: #B8860B;
  --muted: #888888;
  --text: #1A1A1A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1140px;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --ease: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
input, textarea, select { font-family: var(--sans); }

/* ─── Announcement Bar ─── */
.announcement-bar {
  background: var(--dark);
  color: #fff;
  padding: 10px 48px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.announcement-bar svg { opacity: 0.7; flex-shrink: 0; }
.announcement-bar .close-bar {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  transition: color var(--ease);
}
.announcement-bar .close-bar:hover { color: #fff; }

/* ─── Navigation ─── */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav-wrap.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  opacity: 0.6;
  transition: opacity var(--ease);
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; }
.nav-icons { display: flex; gap: 8px; align-items: center; }
.nav-icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--ease);
  position: relative;
}
.nav-icon-btn:hover { background: var(--border); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--ease);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  flex-direction: column;
  padding: 28px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.mobile-menu-close {
  font-size: 30px;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-menu-links a {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
  transition: opacity var(--ease);
}
.mobile-menu-links a:hover { opacity: 0.6; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #333;
  border-color: #333;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--dark);
  transform: translateY(-1px);
}
.btn-white {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-1px);
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Layout ─── */
.section { padding: 72px 24px; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; }
.section-dark .section-label { color: rgba(255,255,255,0.45); }
.section-dark .section-title { color: #fff; }

/* ─── Hero ─── */
.hero {
  padding: 0 24px;
  background: var(--bg);
  min-height: 580px;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF8E1;
  color: var(--amber);
  border: 1px solid #F0D858;
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero-title {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1.03;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: #444;
}
.hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 440px;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-bottom: 32px;
  align-items: center;
}
.hero-feature {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-feature svg { color: var(--green); flex-shrink: 0; }
.hero-feature + .hero-feature {
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid var(--border);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 24px 56px rgba(0,0,0,0.13);
}
.hero-image-float {
  position: absolute;
  bottom: -16px;
  right: 0;
  width: 112px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  overflow: hidden;
  border: 2px solid var(--border);
}
.hero-image-float img { width: 100%; display: block; }

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.trust-item svg { color: var(--muted); margin-bottom: 2px; }
.trust-item strong { font-size: 13px; font-weight: 600; }
.trust-item span { font-size: 12px; color: var(--muted); }

/* ─── Product Cards ─── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  background: var(--bg-alt);
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.badge-live { background: var(--red); color: #fff; }
.badge-live::before {
  content: '';
  width: 5px; height: 5px;
  background: #fff;
  border-radius: 50%;
  animation: livePulse 1.4s infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.badge-bestseller { background: var(--dark); color: #fff; }
.badge-new { background: var(--green); color: #fff; }
.badge-sale { background: var(--red); color: #fff; }
.badge-stock {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--green);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-stock-low {
  position: absolute;
  bottom: 10px;
  left: 12px;
  background: rgba(255,255,255,0.95);
  color: var(--red);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.product-card-body { padding: 16px 18px; }
.product-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 7px; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: 0.5px; }
.product-stars .review-count { font-size: 12px; color: var(--muted); }
.product-name { font-size: 14px; font-weight: 600; margin-bottom: 8px; line-height: 1.3; color: var(--dark); display: block; }
.product-name:hover { text-decoration: underline; }
.product-price { display: flex; align-items: baseline; gap: 8px; }
.price-current { font-size: 17px; font-weight: 700; color: var(--dark); }
.price-compare { font-size: 14px; color: var(--muted); text-decoration: line-through; }

/* ─── Bestsellers ─── */
.bestsellers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}
.view-all {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  opacity: 0.55;
  transition: opacity var(--ease);
}
.view-all:hover { opacity: 1; }

/* ─── Reviews ─── */
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 15px;
  color: var(--muted);
}
.reviews-rating .stars { font-size: 18px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-card .stars { font-size: 14px; margin-bottom: 12px; display: block; }
.review-text {
  font-size: 14px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 16px;
  font-style: italic;
}
.reviewer-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.reviewer-meta { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ─── CTA Banner ─── */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(0.3);
}
.cta-banner-inner {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.cta-banner-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.15;
}
.cta-banner-title em { font-style: italic; }
.cta-banner-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  max-width: 440px;
  line-height: 1.7;
}

/* ─── Footer ─── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 24px 0;
}
.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.75; max-width: 250px; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 13px; transition: color var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; }
.footer-payment { display: flex; gap: 6px; align-items: center; }
.payment-icon {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* ─── Page Hero (dark) ─── */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 72px 24px;
  text-align: center;
}
.page-hero .section-label { color: rgba(255,255,255,0.45); }
.page-hero-title {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.1;
}
.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Shop ─── */
.filter-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  position: sticky;
  top: 72px;
  z-index: 50;
}
.filter-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--ease);
  background: transparent;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.product-count { font-size: 13px; color: var(--muted); }
.product-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ─── About ─── */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 64px 24px;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: grayscale(0.2);
}
.about-hero-content {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.about-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.about-hero-title {
  font-family: var(--serif);
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
}
.about-hero-title em { font-style: italic; display: block; }
.about-origin {
  text-align: center;
  padding: 88px 24px;
  background: var(--bg);
}
.about-origin-inner { max-width: 660px; margin: 0 auto; }
.about-origin p {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 22px;
}
.values-section { padding: 72px 24px; background: var(--bg-alt); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.value-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--amber);
}
.value-card-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }
.about-cta {
  background: var(--dark);
  padding: 72px 24px;
  text-align: center;
}
.about-cta-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.about-cta-desc {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ─── Contact ─── */
.contact-body { padding: 64px 24px; }
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-form-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-control {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--ease);
  outline: none;
}
.form-control:focus { border-color: var(--dark); }
textarea.form-control { resize: vertical; min-height: 140px; }
.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card strong { font-size: 14px; font-weight: 700; display: block; margin-bottom: 3px; }
.contact-info-card span { font-size: 13px; color: var(--muted); line-height: 1.5; }
.faq-section-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 16px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: color var(--ease);
}
.faq-question:hover { color: var(--dark); }
.faq-chevron {
  font-size: 16px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 16px;
  display: none;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Track ─── */
.track-body { padding: 88px 24px; }
.track-form-wrap { max-width: 580px; margin: 0 auto; text-align: center; }
.track-input-row {
  display: flex;
  margin-bottom: 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.track-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: var(--text);
}
.track-input::placeholder { color: var(--muted); }
.track-submit {
  background: var(--dark);
  color: #fff;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--ease);
  border: none;
  flex-shrink: 0;
}
.track-submit:hover { background: #333; }
.track-hint { font-size: 13px; color: var(--muted); line-height: 1.75; }
.track-hint a { color: var(--amber); text-decoration: underline; }

/* ─── Product Detail ─── */
.product-detail-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.product-gallery-main {
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.product-thumb {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  background: var(--bg-alt);
  transition: border-color var(--ease);
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--dark); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 12px;
}
.product-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.product-rating-row .stars { font-size: 16px; }
.product-rating-row span { font-size: 13px; color: var(--muted); }
.price-block { margin-bottom: 20px; }
.price-block .price-current { font-size: 30px; font-weight: 700; }
.price-block .price-compare { font-size: 18px; }
.price-save {
  display: inline-flex;
  align-items: center;
  background: #FFF0F0;
  color: var(--red);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-left: 8px;
}
.product-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.85;
  margin-bottom: 24px;
}
.product-feature-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.product-feature-item {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
}
.product-feature-item::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.qty-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.qty-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background var(--ease);
  color: var(--text);
}
.qty-btn:hover { background: var(--bg-alt); }
.qty-num { width: 40px; text-align: center; font-size: 15px; font-weight: 700; }
.buy-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.product-trust { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--border); }
.product-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.product-trust-item svg { color: var(--green); }
.product-tabs { margin-top: 32px; border-top: 1px solid var(--border); }
.tab-bar { display: flex; border-bottom: 1px solid var(--border); }
.tab-btn {
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--ease);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab-btn.active { color: var(--dark); border-bottom-color: var(--dark); }
.tab-content {
  padding: 24px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.85;
  display: none;
}
.tab-content.active { display: block; }
.tab-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.tab-content p { margin-bottom: 12px; }
.tab-content ul { margin: 0 0 12px 20px; list-style: disc; }
.tab-content li { margin-bottom: 6px; }

/* ─── Mobile Sticky CTA ─── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: #fff;
  padding: 16px 20px;
  z-index: 90;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}
.mobile-sticky-price { font-size: 18px; font-weight: 700; }
.mobile-sticky-compare { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: line-through; margin-left: 8px; }

/* ─── Policy Pages ─── */
.policy-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px;
}
.policy-title {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 8px;
}
.policy-updated { font-size: 13px; color: var(--muted); margin-bottom: 48px; }
.policy-body h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 40px 0 12px;
  color: var(--dark);
}
.policy-body p { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 16px; }
.policy-body ul { margin: 0 0 16px 24px; }
.policy-body li { font-size: 15px; color: #555; line-height: 1.85; margin-bottom: 8px; list-style: disc; }

/* ─── Cart Count Badge ─── */
.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 17px;
  height: 17px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  line-height: 1;
}

/* ─── Product Card ATC Button ─── */
.product-card-img-link { display: block; }
.card-atc-btn {
  width: 100%;
  background: var(--dark);
  color: #fff;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  margin-top: 12px;
  border-radius: 6px;
  transition: background var(--ease), transform var(--ease);
}
.card-atc-btn:hover { background: #2a2a2a; transform: translateY(-1px); }
.card-atc-btn.added { background: var(--green); }

/* ─── Cart Drawer ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 400px;
  background: var(--bg);
  z-index: 301;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.14);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-drawer-title { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.cart-drawer-close {
  font-size: 30px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--ease);
}
.cart-drawer-close:hover { color: var(--dark); }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { text-align: center; color: var(--muted); font-size: 14px; margin-top: 48px; line-height: 1.7; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--bg-alt);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 4px; line-height: 1.35; }
.cart-item-price { font-size: 13px; color: var(--muted); }
.cart-item-remove {
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--ease);
  flex-shrink: 0;
}
.cart-item-remove:hover { color: var(--red); }
.cart-drawer-footer {
  padding: 20px 24px 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 600;
}
.cart-total-amount { font-size: 22px; font-weight: 700; }
.cart-wholesaler-note {
  display: block;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 9px;
  text-decoration: underline;
  cursor: pointer;
  line-height: 1.5;
  transition: color var(--ease);
}
.cart-wholesaler-note:hover { color: var(--dark); }

/* ─── Fade-up Animation ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 0;
    gap: 32px;
  }
  .hero-title { font-size: 38px; }
  .hero-desc { margin: 0 auto 24px; }
  .hero-features { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image { max-width: 280px; }
  .section { padding: 48px 16px; }
  .section-title { font-size: 32px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .product-detail-wrap { grid-template-columns: 1fr; gap: 32px; }
  .page-hero-title { font-size: 38px; }
  .about-hero-title { font-size: 40px; }
  .cta-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .filter-tabs { display: none; }
  .mobile-sticky-cta { display: flex; }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
