@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@1,400;1,600&display=swap');

/* ─── CSS Custom Properties ──────────────────────────────────────────────── */
:root {
  --gold:         #C8860A;
  --gold-light:   #E8A82A;
  /* Color Palette - Clean Shopify Style */
  --white: #ffffff;
  --cream: #ffffff; /* Override cream to white for Shopify look */
  --cream-dark: #f8f8f8;
  --gold: #fca311;
  --gold-dark: #e59800;
  --dark: #111111;
  --dark-mid: #333333;
  --gray: #666666;
  --gray-light: #e5e5e5;
  --green: #2ecc71;
  --terracotta:   #B5451B;

  /* Modern Sans-Serif Typography */
  --font-display: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-accent:  'DM Serif Display', Georgia, serif;

  --shadow-sm:    0 2px 8px rgba(200, 134, 10, 0.06);
  --shadow-md:    0 4px 24px rgba(200, 134, 10, 0.10);
  --shadow-lg:    0 8px 40px rgba(200, 134, 10, 0.14);
  --shadow-card:  0 2px 16px rgba(0,0,0,0.06);

  --radius:       4px;
  --radius-md:    8px;
  --radius-lg:    16px;

  --transition:   0.3s ease;
  --header-h:     72px;
  --container:    1280px;
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── Typography ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray); line-height: 1.8; }
.tagline, .pull-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--dark-mid);
}
.rich-text h2, .rich-text h3, .rich-text h4 { margin-bottom: 1rem; margin-top: 1.5rem; }
.rich-text p { margin-bottom: 1rem; }
.rich-text ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.rich-text ul li { margin-bottom: 0.4rem; color: var(--gray); }

/* ─── Layout ──────────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
}
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }

/* ─── Section Headers ─────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1rem;
}
.section-cta { text-align: center; margin-top: 3rem; }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary, .btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: 2px solid var(--gold);
  font-weight: 700;
}
.btn-primary:hover, .btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-light);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-green { background: #25D366; color: white; border: 2px solid #25D366; }
.btn-green:hover { background: #1ebe5a; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.825rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* Ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* ─── Announcement Bar ───────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.825rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
}
.announcement-bar a { color: var(--gold-light); text-decoration: underline; }
.announcement-bar-close {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

/* ─── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  height: var(--header-h);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gray-light);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 2rem;
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo-text span { color: var(--gold); }

/* ─── Navigation ─────────────────────────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  position: relative;
  transition: color var(--transition);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* ─── Header Actions ─────────────────────────────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--dark);
  transition: all var(--transition);
  position: relative;
}
.icon-btn:hover { background: var(--cream); color: var(--gold); }
.icon-btn svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.icon-badge, .cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 17px;
  height: 17px;
  background: var(--gold);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count:empty, .cart-count:not(.has-items) { display: none; }

/* ─── Hamburger ──────────────────────────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Mobile Nav ─────────────────────────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition);
}
.mobile-nav-overlay.open { visibility: visible; opacity: 1; }
.mobile-nav-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.mobile-nav {
  position: relative;
  width: 300px;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(-100%);
  transition: transform var(--transition);
  z-index: 1;
}
.mobile-nav-overlay.open .mobile-nav { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  font-size: 1.5rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.mobile-nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}
.mobile-nav-links { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.mobile-nav-link:hover { background: var(--cream); color: var(--gold); }
.mobile-nav-footer { padding-top: 1.5rem; border-top: 1px solid var(--gray-light); }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem 6rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  word-spacing: 0.12em;
  font-kerning: none;
  -webkit-font-feature-settings: 'kern' 0;
  font-feature-settings: 'kern' 0;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem auto;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: white;
  color: var(--dark);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
}
.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 3rem 3rem;
  overflow: hidden;
}
.hero-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-product-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero-float-badge {
  position: absolute;
  bottom: 2rem;
  left: -1rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-md);
  color: var(--dark);
}
.float-badge-icon { font-size: 1.25rem; }

/* ─── Trust Bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--green);
  color: white;
  overflow: hidden;
  padding: 0.75rem 0;
}
.trust-bar-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.trust-item {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0 1.5rem;
}
.trust-separator {
  display: inline-block;
  color: var(--gold-light);
  font-size: 0.9rem;
}

/* ─── Products Grid ──────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ─── Product Card ───────────────────────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.4s ease;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.07); }
.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.product-card:hover .product-card-actions { transform: translateY(0); }
.btn-add-cart {
  width: 100%;
  background: var(--gold);
  color: white;
  border: none;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-add-cart:hover { background: var(--gold-dark); }
.btn-add-cart.loading { opacity: 0.7; pointer-events: none; }
.wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.wishlist-btn:hover, .wishlist-btn.active { color: #e53e3e; }
.wishlist-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.wishlist-btn.active svg { fill: #e53e3e; stroke: #e53e3e; }
.product-card-info { padding: 1.1rem; }
.product-card-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.product-card-name a { color: var(--dark); transition: color var(--transition); }
.product-card-name a:hover { color: var(--gold); }
.product-card-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price { display: flex; align-items: baseline; gap: 0.5rem; }
.price-current {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.price-original {
  font-size: 0.875rem;
  color: var(--gray);
  text-decoration: line-through;
}

/* ─── Badges ─────────────────────────────────────────────────────────────── */
.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  z-index: 2;
  line-height: 1;
}
.badge-bestseller { background: var(--gold); color: white; }
.badge-new { background: var(--green); color: white; }
.badge-premium { background: var(--terracotta); color: white; }
.badge-rare { background: #6B4C9A; color: white; }
.badge-organic { background: #5A7A2E; color: white; }

/* ─── Category Cards ─────────────────────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: block;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background var(--transition);
}
.category-card:hover .category-card-overlay { background: linear-gradient(to top, rgba(26,26,26,0.6) 0%, rgba(26,26,26,0.1) 60%); }
.category-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}
.category-card-count {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}
.category-card-placeholder {
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

/* ─── Brand Story ─────────────────────────────────────────────────────────── */
.brand-story {
  background: var(--cream);
}
.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.brand-story-images img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.brand-story-images img:first-child { margin-top: 2rem; }
.brand-story-content .section-eyebrow { text-align: left; }
.brand-story-content h2 { margin-bottom: 1.5rem; }
.brand-story-content p { margin-bottom: 1.25rem; }
.brand-story-pullquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: white;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--dark-mid);
  line-height: 1.7;
}

/* ─── Why Us ─────────────────────────────────────────────────────────────── */
.why-us { background: var(--white); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-us-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.why-us-item:hover {
  background: var(--cream);
  border-color: rgba(200,134,10,0.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-us-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.why-us-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
}
.why-us-text { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin: 0.5rem;
  height: 100%;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 1rem;
}
.review-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-customer { display: flex; align-items: center; gap: 0.75rem; }
.customer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.customer-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.customer-product { font-size: 0.78rem; color: var(--gray); }

/* ─── Newsletter ─────────────────────────────────────────────────────────── */
.newsletter {
  background: var(--cream-dark);
  padding: 5rem 0;
  text-align: center;
}
.newsletter-title { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 1rem; }
.newsletter-subtitle { margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--gray-light);
  border-right: none;
  font-size: 0.95rem;
  background: white;
}
.newsletter-input:focus { outline: none; border-color: var(--gold); }
.newsletter-submit {
  padding: 0.9rem 1.75rem;
  background: var(--gold);
  color: white;
  border: 2px solid var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-submit:hover { background: var(--gold-dark); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: #aaa;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand-col .logo-text { color: var(--cream); margin-bottom: 1rem; display: block; }
.footer-tagline { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; color: #aaa; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.875rem; color: #aaa; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.6rem; align-items: flex-start; }
.footer-contact-label { color: var(--gold); font-weight: 600; min-width: 60px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; align-items: center; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.payment-badges { display: flex; gap: 0.5rem; align-items: center; }
.payment-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Cart Drawer ─────────────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: white;
  z-index: 998;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -4px 0 40px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-light);
}
.cart-drawer-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.cart-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  background: var(--cream);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.cart-drawer-close:hover { background: var(--gray-light); color: var(--dark); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.25rem 1.5rem; }
.cart-drawer-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
}
.cart-drawer-empty-icon { font-size: 3rem; margin-bottom: 1rem; display: block; opacity: 0.4; }
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-dark);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price { font-size: 0.875rem; color: var(--gold); font-weight: 700; margin-bottom: 0.5rem; }
.cart-item-controls { display: flex; align-items: center; gap: 0.5rem; }
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition);
  background: white;
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold); }
.qty-display { font-size: 0.875rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--gray);
  font-size: 0.7rem;
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #e53e3e; }
.cart-drawer-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--gray-light); }
.shipping-progress { margin-bottom: 1rem; }
.shipping-progress-text { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.4rem; }
.shipping-progress-bar { height: 4px; background: var(--gray-light); border-radius: 2px; overflow: hidden; }
.shipping-progress-fill { height: 100%; background: var(--green); border-radius: 2px; transition: width 0.4s ease; }
.cart-totals { margin-bottom: 1.25rem; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.5rem; }
.cart-total-row.total { font-weight: 700; font-size: 1rem; color: var(--dark); border-top: 1px solid var(--gray-light); padding-top: 0.5rem; margin-top: 0.5rem; }

/* ─── Search Overlay ─────────────────────────────────────────────────────── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.96);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20vh;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition);
}
.search-overlay-close:hover { color: white; }
.search-overlay-input-wrapper {
  width: 100%;
  max-width: 640px;
  position: relative;
  margin-bottom: 2rem;
}
.search-overlay-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  color: white;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: var(--font-display);
  padding: 0.5rem 3rem 0.5rem 0;
  caret-color: var(--gold);
  transition: border-color var(--transition);
}
.search-overlay-input:focus { outline: none; border-bottom-color: var(--gold); }
.search-overlay-input::placeholder { color: rgba(255,255,255,0.3); }
.search-results { width: 100%; max-width: 640px; }
.search-result-item {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: center;
  color: white;
  transition: color var(--transition);
}
.search-result-item:hover { color: var(--gold); }
.search-result-img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  object-fit: cover;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.search-result-name { font-weight: 600; font-size: 0.9rem; }
.search-result-price { font-size: 0.8rem; color: var(--gold); }

/* ─── Shop Page ──────────────────────────────────────────────────────────── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  padding-top: 2rem;
}
.filters-sidebar { position: sticky; top: calc(var(--header-h) + 1rem); height: fit-content; }
.filter-group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-light); }
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.filter-option { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--gold); width: 15px; height: 15px; }
.filter-option label { font-size: 0.875rem; color: var(--gray); cursor: pointer; }
.shop-main {}
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}
.shop-count { font-size: 0.875rem; color: var(--gray); }
.shop-sort-select {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--dark);
  background: white;
  cursor: pointer;
}

/* ─── Product Single Page ─────────────────────────────────────────────────── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 2.5rem 0;
  align-items: flex-start;
}
.product-gallery {}
.product-gallery-main { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 0.75rem; }
.product-gallery-main .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: zoom-in;
}
.product-thumbnails { margin-top: 0.75rem; }
.product-thumbnails .swiper-slide {
  width: 80px !important;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.product-thumbnails .swiper-slide.swiper-slide-thumb-active { border-color: var(--gold); }
.product-thumbnails .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.product-details {}
.product-breadcrumb { font-size: 0.8rem; color: var(--gray); margin-bottom: 1.25rem; }
.product-breadcrumb a { color: var(--gray); }
.product-breadcrumb a:hover { color: var(--gold); }
.product-breadcrumb-sep { margin: 0 0.4rem; color: var(--gold); }
.product-badge { display: inline-block; margin-bottom: 0.75rem; position: static; }
.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}
.product-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.rating-stars { color: var(--gold); font-size: 0.9rem; }
.rating-count { font-size: 0.82rem; color: var(--gray); text-decoration: underline; cursor: pointer; }
.product-price-section { margin: 1.5rem 0; }
.price-current-lg {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.price-original-lg { font-size: 1.1rem; color: var(--gray); text-decoration: line-through; margin-left: 0.5rem; }
.price-discount-tag {
  display: inline-block;
  background: #d4edda;
  color: #155724;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-left: 0.5rem;
}
.product-short-desc { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.75; }
.quantity-selector { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.qty-control {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark);
  transition: all var(--transition);
  background: white;
}
.qty-control:hover { border-color: var(--gold); color: var(--gold); }
.qty-input { width: 50px; text-align: center; font-size: 1rem; font-weight: 700; border: none; }
.product-ctas { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.btn-add-to-cart {
  padding: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-meta { font-size: 0.82rem; color: var(--gray); margin-bottom: 1.25rem; }
.product-meta span { color: var(--dark); font-weight: 600; }
.product-shipping-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cream);
  color: var(--dark);
  border: 1px solid rgba(200,134,10,0.2);
  border-radius: 20px;
  padding: 0.3rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
}

/* ─── Product Tabs ────────────────────────────────────────────────────────── */
.product-tabs { margin-top: 4rem; }
.product-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-light);
  margin-bottom: 2rem;
  gap: 0;
}
.tab-btn {
  padding: 0.875rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-panel { display: none; animation: fadeIn 0.3s ease; }
.tab-panel.active { display: block; }
.tab-panel-content { max-width: 720px; }

/* ─── Sticky Buy Bar ────────────────────────────────────────────────────────── */
.sticky-buy-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--gray-light);
  padding: 0.75rem 1.5rem;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-buy-bar.visible { display: flex; }
.sticky-buy-product { display: flex; align-items: center; gap: 0.75rem; }
.sticky-buy-product img { width: 48px; height: 48px; object-fit: cover; border-radius: var(--radius); }
.sticky-buy-name { font-weight: 600; font-size: 0.9rem; }
.sticky-buy-price { color: var(--gold); font-weight: 700; font-size: 0.9rem; }

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray);
  padding: 1.25rem 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ─── Cart Page ──────────────────────────────────────────────────────────── */
.cart-page { padding: 2rem 0 4rem; }
.cart-grid { display: grid; grid-template-columns: 1fr 360px; gap: 2.5rem; align-items: flex-start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: 0.75rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
}
.cart-table td { padding: 1.25rem 0; border-bottom: 1px solid var(--gray-light); vertical-align: middle; }
.cart-product-cell { display: flex; align-items: center; gap: 1rem; }
.cart-product-img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.cart-product-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.cart-product-sku { font-size: 0.75rem; color: var(--gray); }
.cart-summary-box {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.cart-summary-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.875rem; margin-bottom: 0.75rem; }
.summary-row.total { font-weight: 700; font-size: 1rem; border-top: 1px solid rgba(200,134,10,0.2); padding-top: 0.75rem; margin-top: 0.5rem; color: var(--dark); }
.coupon-form { display: flex; gap: 0.5rem; margin-bottom: 1.25rem; }
.coupon-input {
  flex: 1;
  padding: 0.6rem 0.875rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.coupon-input:focus { outline: none; border-color: var(--gold); }

/* ─── Checkout ───────────────────────────────────────────────────────────── */
.checkout-page { padding: 2rem 0 4rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: flex-start; }
.checkout-section { background: white; border-radius: var(--radius-md); padding: 1.75rem; margin-bottom: 1.5rem; border: 1px solid var(--gray-light); }
.checkout-section-title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.1rem; }
.form-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 0.35rem; }
.form-control {
  width: 100%;
  padding: 0.7rem 0.875rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  background: white;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,134,10,0.08); }
.form-control.error { border-color: #e53e3e; }
.payment-methods { display: flex; flex-direction: column; gap: 0.75rem; }
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition);
}
.payment-option.selected { border-color: var(--gold); background: rgba(200,134,10,0.04); }
.payment-option input[type="radio"] { accent-color: var(--gold); margin-top: 2px; }
.payment-option-title { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.2rem; }
.payment-option-desc { font-size: 0.8rem; color: var(--gray); }
.checkout-sticky { position: sticky; top: calc(var(--header-h) + 1rem); }
.order-summary-box { background: var(--cream); border-radius: var(--radius-md); padding: 1.75rem; }

/* ─── Order Success ───────────────────────────────────────────────────────── */
.order-success { text-align: center; padding: 5rem 0; }
.success-icon {
  width: 90px;
  height: 90px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  animation: scaleIn 0.5s ease;
}
.success-order-box {
  max-width: 560px;
  margin: 2rem auto;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: left;
}
.success-order-title { font-family: var(--font-display); font-size: 1rem; margin-bottom: 1.25rem; font-weight: 700; }
.success-order-row { display: flex; justify-content: space-between; font-size: 0.875rem; padding: 0.5rem 0; border-bottom: 1px solid rgba(200,134,10,0.12); }
.success-order-row:last-child { border-bottom: none; }
.success-ctas { display: flex; justify-content: center; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

/* ─── Skeleton Loaders ───────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0f0ea 25%, #e8e8e0 37%, #f0f0ea 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius);
}
.skeleton-card { aspect-ratio: 4/5; }
.skeleton-text { height: 16px; margin-bottom: 8px; }
.skeleton-text.wide { width: 80%; }
.skeleton-text.medium { width: 60%; }
.skeleton-text.short { width: 40%; }

/* ─── WhatsApp Float ─────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 995;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  color: white;
  font-size: 1.5rem;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

/* ─── Cookie Consent ─────────────────────────────────────────────────────── */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 999;
  flex-wrap: wrap;
  font-size: 0.85rem;
  border-top: 1px solid rgba(200,134,10,0.3);
}
.cookie-consent a { color: var(--gold); text-decoration: underline; }
.cookie-accept {
  background: var(--gold);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── Toast ──────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  min-width: 280px;
  max-width: 380px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.35s ease;
  cursor: pointer;
}
.toast.removing { animation: fadeOut 0.3s ease forwards; }
.toast-success { background: var(--dark); color: white; border-left: 3px solid var(--gold); }
.toast-error { background: #fff; color: var(--dark); border-left: 3px solid #e53e3e; }
.toast-info { background: #fff; color: var(--dark); border-left: 3px solid var(--green); }
.toast-icon { font-size: 1.1rem; }

/* ─── Pagination ─────────────────────────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 3rem; flex-wrap: wrap; }
.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--gray-light);
  color: var(--dark);
  background: white;
  transition: all var(--transition);
  cursor: pointer;
}
.page-link:hover { border-color: var(--gold); color: var(--gold); }
.page-link.active { background: var(--gold); border-color: var(--gold); color: white; }
.page-link.disabled { opacity: 0.4; cursor: not-allowed; }

/* ─── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.7;
}
.lightbox-close:hover { opacity: 1; }

/* ─── Empty States ───────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--gray);
}
.empty-state-icon { font-size: 4rem; margin-bottom: 1.25rem; opacity: 0.35; display: block; }
.empty-state h3 { font-family: var(--font-display); margin-bottom: 0.75rem; color: var(--dark); }
.empty-state p { margin-bottom: 2rem; max-width: 360px; margin-left: auto; margin-right: auto; }

/* ─── Page Template ──────────────────────────────────────────────────────── */
.page-hero {
  background: var(--cream);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-body { max-width: 760px; margin: 3rem auto 4rem; }
.page-content-section { padding: 3rem 0 4rem; }
.page-content-section .rich-text { line-height: 1.8; color: #374151; }
.page-content-section .rich-text h2 { font-size: 1.5rem; color: var(--dark); margin-top: 2rem; }
.page-content-section .rich-text h3 { font-size: 1.2rem; color: var(--dark); margin-top: 1.8rem; }
.page-content-section .rich-text ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content-section .rich-text ol li { margin-bottom: 0.4rem; color: var(--gray); }
.page-content-section .rich-text a { color: var(--gold-dark); text-decoration: underline; }
.page-content-section .rich-text a:hover { color: var(--gold); }
.container-sm { max-width: 800px; }

/* ─── Swiper Overrides ───────────────────────────────────────────────────── */
.swiper-button-prev, .swiper-button-next {
  color: var(--gold) !important;
  width: 44px !important;
  height: 44px !important;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 1rem !important; font-weight: 700 !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .shop-layout { grid-template-columns: 220px 1fr; }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 5rem 1.5rem 2rem; }
  .hero-image { display: none; }
  .brand-story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .product-layout { grid-template-columns: 1fr; }
  .cart-grid { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { position: static; }
  .site-nav { display: none; }
  .hamburger-btn { display: flex; }
}
@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .section { padding: 2.5rem 0; }
  .sticky-buy-bar { display: none !important; }
}
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); }
  .newsletter-input { border-right: 1px solid var(--gray-light); border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-submit { border-radius: 0 0 var(--radius) var(--radius); }
  .hero-ctas { flex-direction: column; }
  .checkout-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Premium Product Detail Page (PDP) ─────────────────────────────────── */
.pdp-wrapper { 
  padding-top: 0.5rem; 
  padding-bottom: 4rem; 
  background-color: var(--cream);
}

.pdp-breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  font-size: 0.8rem; color: var(--gray); padding: 0 0 1rem;
  font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase;
}
.pdp-breadcrumb a { color: var(--gray); transition: color var(--transition); text-decoration: none; }
.pdp-breadcrumb a:hover { color: var(--dark); }
.pdp-breadcrumb .current { color: var(--dark); font-weight: 600; }
.pdp-breadcrumb .sep { color: var(--gray-light); font-weight: 300; }

.pdp-grid {
  display: grid;
  grid-template-columns: 42% 1fr;
  gap: 2rem;
  align-items: start;
}

/* Gallery (Sticky Scroll) */
.pdp-gallery-container { 
  position: sticky; 
  top: calc(var(--header-h) + 2rem); 
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* On desktop, show a grid if multiple images exist, else single */
@media (min-width: 992px) {
  .pdp-gallery-container.has-multiple {
    grid-template-columns: 1fr 1fr;
  }
  .pdp-gallery-container.has-multiple .pdp-main-image {
    grid-column: 1 / -1; /* First image full width */
  }
}

.pdp-main-image, .pdp-gallery-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-dark);
}
.pdp-hero-img {
  width: 100%; height: 100%; object-fit: cover;
  cursor: zoom-in; transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pdp-hero-img:hover { transform: scale(1.05); }

.pdp-badge-group {
  position: absolute; top: 1rem; left: 1rem; right: 1rem;
  display: flex; justify-content: space-between; z-index: 2;
}
.pdp-badge {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.3rem 0.8rem;
  border-radius: 4px; font-family: var(--font-body);
}
.pdp-badge--origin { background: rgba(26,26,26,0.85); color: var(--white); backdrop-filter: blur(4px); }
.pdp-badge--new { background: rgba(45,80,22,0.85); color: var(--white); backdrop-filter: blur(4px); }

/* Feature Pills (Floating) */
.pdp-feature-pills {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem; z-index: 2;
  pointer-events: none;
}
.pdp-fpill {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; color: var(--dark); padding: 0.4rem 0.8rem;
  border-radius: 4px; background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px); box-shadow: var(--shadow-sm);
  font-family: var(--font-body); font-weight: 500;
}
.fpill-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  display: inline-block;
}

/* Details Section */
.pdp-details {
  padding-top: 0;
  padding-right: 1rem;
}

.pdp-status-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.pdp-sbadge {
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.25rem 0.6rem;
  border-radius: 4px; border: 1px solid;
}
.pdp-sbadge--green { color: var(--green); border-color: rgba(45,80,22,0.2); background: rgba(45,80,22,0.04); }
.pdp-sbadge--red { color: #e53e3e; border-color: rgba(229,62,62,0.2); background: rgba(229,62,62,0.04); }
.pdp-sbadge--amber { color: var(--gold-dark); border-color: rgba(200,134,10,0.2); background: rgba(200,134,10,0.04); }
.pdp-sbadge--muted { color: var(--gray); border-color: var(--gray-light); background: transparent; }

.pdp-title {
  font-family: var(--font-display); 
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2; 
  color: var(--dark); 
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.pdp-rating-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; flex-wrap: wrap; }
.pdp-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.pdp-rating-text { font-size: 0.85rem; color: var(--gray); font-family: var(--font-body); }
.pdp-verified-tag {
  font-size: 0.7rem; font-weight: 600; color: var(--green);
  border: 1px solid rgba(45,80,22,0.2); border-radius: 4px;
  padding: 0.2rem 0.4rem; letter-spacing: 0.05em; text-transform: uppercase;
}

.pdp-price-block { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 0.2rem; }
.pdp-price-current { font-size: 1.6rem; font-weight: 700; color: var(--dark); font-family: var(--font-display); }
.pdp-price-original { font-size: 1.1rem; color: var(--gray); text-decoration: line-through; }
.pdp-price-save { font-size: 0.8rem; font-weight: 600; color: #e53e3e; letter-spacing: 0.05em; text-transform: uppercase; }
.pdp-tax-note { font-size: 0.75rem; color: var(--gray); margin-bottom: 1rem; letter-spacing: 0.02em; }

.pdp-short-desc {
  font-size: 0.95rem; line-height: 1.6; color: var(--dark-mid);
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
  font-weight: 400;
}

/* Buy Section */
.pdp-buy-section { margin-bottom: 1.5rem; }
.pdp-qty-row { display: flex; gap: 0.8rem; align-items: stretch; margin-bottom: 0.8rem; }
.pdp-qty {
  display: flex; align-items: center; border: 1px solid var(--gray-light);
  border-radius: 4px; overflow: hidden; background: var(--white);
  height: 44px; box-sizing: border-box;
}
.pdp-qty-btn {
  width: 40px; height: 100%; font-size: 1.2rem; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  background: transparent; color: var(--dark); border: none; cursor: pointer;
  transition: background var(--transition);
}
.pdp-qty-btn:hover { background: rgba(0,0,0,0.05); }
.pdp-qty-input {
  width: 40px; text-align: center; font-size: 1rem; font-weight: 500;
  border: none; outline: none; background: transparent; color: var(--dark);
  -moz-appearance: textfield;
}
.pdp-qty-input::-webkit-inner-spin-button,
.pdp-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.pdp-add-cart {
  flex: 1; height: 44px; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--dark); color: var(--white); border: none;
  border-radius: 4px; cursor: pointer;
  transition: all 0.2s;
  position: relative; overflow: hidden;
}
.pdp-add-cart:hover { background: var(--green); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.pdp-add-cart.added { background: var(--gold); pointer-events: none; }

.pdp-buy-now {
  width: 100%; padding: 0.75rem; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  background: transparent; color: var(--dark); border: 1.5px solid var(--dark);
  border-radius: 4px; cursor: pointer;
  transition: all var(--transition);
}
.pdp-buy-now:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(200,134,10,0.05); }

/* Delivery Info & Pincode */
.pdp-delivery-info {
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 0.8rem 0; margin-bottom: 1.2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.pdp-dinfo-row { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; color: var(--dark); }
.pdp-dinfo-icon { font-size: 1.1rem; opacity: 0.8; }

.pdp-pincode {
  display: flex; gap: 0; border: 1px solid var(--gray-light); border-radius: 4px;
  overflow: hidden; margin-top: 0.8rem; background: var(--white); transition: border-color var(--transition);
}
.pdp-pincode:focus-within { border-color: var(--dark); }
.pdp-pincode-input {
  flex: 1; padding: 0.6rem 1rem; border: none; outline: none;
  font-size: 0.85rem; background: transparent;
}
.pdp-pincode-btn {
  padding: 0.6rem 1.2rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--cream); color: var(--dark); border: none; cursor: pointer;
  transition: background var(--transition); border-left: 1px solid var(--gray-light);
}
.pdp-pincode-btn:hover { background: var(--gray-light); }
.pdp-pincode-result { font-size: 0.8rem; margin-top: 0.5rem; min-height: 1.2rem; padding-left: 0.2rem; }

/* Premium Trust Strip */
.pdp-trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  text-align: center; padding: 2rem 0;
}
.pdp-trust-item { font-size: 0.75rem; font-weight: 500; color: var(--dark-mid); text-transform: uppercase; letter-spacing: 0.05em; }
.pdp-trust-icon { display: block; margin: 0 auto 0.5rem; opacity: 0.9; width: 36px; height: 36px; }

/* Accordions (Replacing Tabs) */
.pdp-accordions { margin-top: 2rem; border-top: 1px solid var(--gray-light); }
.pdp-accordion-item { border-bottom: 1px solid var(--gray-light); }
.pdp-accordion-header {
  width: 100%; text-align: left; background: transparent; border: none;
  padding: 1rem 0; font-family: var(--font-display); font-size: 1.2rem; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.pdp-accordion-icon {
  width: 16px; height: 16px; position: relative; transition: transform var(--transition);
}
.pdp-accordion-icon::before, .pdp-accordion-icon::after {
  content: ''; position: absolute; background: var(--dark); top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: transform var(--transition);
}
.pdp-accordion-icon::before { width: 12px; height: 1.5px; }
.pdp-accordion-icon::after { width: 1.5px; height: 12px; }
.pdp-accordion-item.active .pdp-accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.pdp-accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.pdp-accordion-inner {
  padding-bottom: 1rem; font-size: 0.95rem; line-height: 1.6; color: var(--gray);
}
.pdp-accordion-inner ul { padding-left: 1.5rem; margin-top: 0.5rem; }
.pdp-accordion-inner li { margin-bottom: 0.4rem; }

/* Reviews Section */
.pdp-reviews-section { margin-top: 5rem; padding-top: 4rem; max-width: 900px; margin-left: auto; margin-right: auto; }
.reviews-new-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.reviews-new-title { font-weight: 600; font-size: 1rem; color: #333; letter-spacing: 0.5px; white-space: nowrap; }
.reviews-new-line { flex-grow: 1; height: 1px; background-color: #eaeaea; }

.reviews-stats-container { display: flex; flex-wrap: wrap; gap: 4rem; align-items: flex-start; margin-bottom: 3rem; }
.reviews-stats-left { display: flex; flex-direction: column; align-items: flex-start; }
.reviews-avg-number { font-size: 4rem; font-weight: 700; line-height: 1; color: #222; margin-bottom: 0.5rem; }
.reviews-avg-stars { color: #d67a1b; font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: 2px; }
.reviews-total-count { font-size: 0.95rem; color: #555; }

.reviews-stats-right { flex-grow: 1; min-width: 280px; display: flex; flex-direction: column; gap: 0.5rem; }
.review-bar-row { display: flex; align-items: center; gap: 1rem; font-size: 0.95rem; color: #555; }
.review-bar-star { width: 10px; text-align: right; }
.review-bar-outer { flex-grow: 1; height: 8px; background-color: #f0f0f0; border-radius: 4px; overflow: hidden; }
.review-bar-inner { height: 100%; background-color: #d67a1b; border-radius: 4px; }
.review-bar-count { width: 20px; text-align: right; }

.reviews-new-list { display: flex; flex-direction: column; gap: 1.5rem; }
.review-new-card { background-color: #f6f6f1; border-radius: 12px; padding: 1.5rem 2rem; }
.review-new-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.review-new-author { font-weight: 600; font-size: 1.1rem; color: #222; }
.review-new-date { font-size: 0.95rem; color: #666; }
.review-new-stars { color: #d67a1b; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-new-text { font-size: 1.05rem; line-height: 1.6; color: #444; margin-bottom: 1.5rem; font-family: var(--font-body); }
.review-new-badge { display: inline-block; background-color: #e5f5f1; color: #238973; font-size: 0.85rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 20px; }

.pdp-related { margin-top: 6rem; }

/* Video Thumbnail */
.pdp-video-wrapper {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: var(--dark); display: flex; align-items: center; justify-content: center;
  cursor: pointer; grid-column: 1 / -1;
}
.pdp-video-wrapper img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: opacity var(--transition); }
.pdp-video-wrapper:hover img { opacity: 0.4; }
.pdp-video-play-btn {
  position: absolute; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,0.2); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.4); color: white; font-size: 1.5rem;
  transition: transform var(--transition); padding-left: 4px;
}
.pdp-video-wrapper:hover .pdp-video-play-btn { transform: scale(1.1); background: rgba(255,255,255,0.3); }

/* Mobile Sticky Buy Bar (Glassmorphism) */
.sticky-buy-bar {
  display: none; /* Hidden on desktop by default */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  justify-content: space-between; align-items: center; padding: 0.75rem 1rem;
  background: rgba(250,246,238,0.92); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
}
.sticky-buy-product { display: flex; align-items: center; gap: 1rem; }
.sticky-buy-product img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(0,0,0,0.05); }
.sticky-buy-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--dark); margin-bottom: 0.1rem; }
.sticky-buy-price { font-size: 0.9rem; font-weight: 600; color: var(--gray); }

/* Responsive Adjustments */
@media (max-width: 991px) {
  .sticky-buy-bar { display: flex; } /* Show on mobile */
  .pdp-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pdp-gallery-container { position: static; display: flex; flex-direction: column; gap: 1rem; padding-bottom: 1rem; }
  .pdp-details { padding-right: 0; padding-top: 0; }
  .pdp-title { font-size: 2.2rem; }
  .pdp-price-current { font-size: 1.8rem; }
  .pdp-trust-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

@media (max-width: 550px) {
  .pdp-qty-row { flex-wrap: wrap; gap: 0.75rem; }
  .pdp-qty { flex: 1 1 100%; justify-content: space-between; }
  .pdp-qty-btn { width: 60px; }
  .pdp-qty-input { flex: 1; }
  .pdp-add-cart, .pdp-buy-now { flex: 1 1 calc(50% - 0.5rem); font-size: 0.85rem; padding: 0; height: 48px !important; }
}


/* OOS */
.pdp-oos-box {
  background: rgba(0,0,0,0.03); padding: 2rem; border-radius: var(--radius-lg);
  text-align: center; margin-bottom: 2rem; border: 1px dashed rgba(0,0,0,0.1);
}
.pdp-oos-box p { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--dark); }
.pdp-notify-btn {
  padding: 1rem 2rem; border: 1.5px solid var(--dark); background: transparent;
  border-radius: 30px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; cursor: pointer;
  transition: all var(--transition);
}
.pdp-notify-btn:hover { background: var(--dark); color: white; }

/* WhatsApp Button */
.pdp-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.75rem; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  background: #25D366; color: white; border: none;
  border-radius: 4px; cursor: pointer; text-decoration: none; margin-top: 0.8rem;
  transition: all 0.2s;
}
.pdp-whatsapp-btn:hover { background: #1eb957; transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Modal Video */
.pdp-video-modal {
  position: fixed; inset: 0; background: rgba(26,26,26,0.95); backdrop-filter: blur(10px);
  z-index: 10001; display: none; align-items: center; justify-content: center;
}
.pdp-video-modal.active { display: flex; }
.pdp-video-container { width: 95%; max-width: 1000px; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.pdp-video-container iframe { width: 100%; height: 100%; }

