/* Zee Beauty & Co. — cream · sand · dusty pink · burgundy */

:root {
  /* Burgundy — dark structure (replaces cool navy) */
  --navy: #5c2433;
  --navy-soft: #743a4a;

  /* Cream — page & panels */
  --white: #fffef9;
  --paper: #faf6ef;
  --blush: #f5ebe0;
  --blush-mid: #e9dfd2;
  --bg-main: #fffef9;
  --bg-alt: #f3e9df;

  /* Sand — warm metal accents */
  --gold: #c4a882;
  --gold-light: #e8dcc8;

  /* Dusty pink */
  --rose: #c9959e;
  --rose-deep: #a9727e;

  --charcoal: #2a1c20;
  --text-main: #3d2e30;
  --text-muted: #756066;

  --border-light: rgba(92, 36, 51, 0.1);
  --font-heading: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --space-2: 0.5rem;
  --space-4: 1.5rem;
  --space-8: 4rem;
  --space-12: 6rem;
  --shadow-sm: 0 2px 12px rgba(92, 36, 51, 0.055);
  --shadow-md: 0 12px 40px rgba(92, 36, 51, 0.08);
  --shadow-lg: 0 24px 64px rgba(92, 36, 51, 0.11);
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  /* legacy token aliases (existing components) */
  --green-deep: var(--navy);
  --green-mid: var(--rose-deep);
  --cream: var(--blush);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--font-heading); font-weight: 600; color: var(--charcoal); line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.trust-bar {
  /* Same burgundy family as .site-header band */
  background: linear-gradient(
    95deg,
    var(--navy) 0%,
    var(--navy-soft) 38%,
    #6a3845 50%,
    var(--navy-soft) 62%,
    var(--navy) 100%
  );
  background-size: 220% 100%;
  animation: zee-trust-sheen 28s ease-in-out infinite alternate;
  color: var(--blush);
  text-align: center;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-bar-slogan {
  margin: 0;
  max-width: 42rem;
  font-family: var(--font-heading);
  font-size: clamp(0.85rem, 2.1vw, 1.05rem);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: rgba(255, 251, 246, 0.95);
}
.trust-bar-slogan-sep {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.zee-checkout-note {
  margin: 0 0 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* —— Header (floating soft capsule) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 10px clamp(12px, 3vw, 22px) 8px;
  /* Burgundy band behind the white capsule — matches trust bar motto strip */
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 45%, var(--navy) 100%);
  border-bottom: none;
  box-shadow: none;
  transition: padding 0.25s ease;
}
.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 6px;
}
.site-header.is-scrolled .header-bar {
  box-shadow: 0 6px 28px rgba(92, 36, 51, 0.08), 0 2px 12px rgba(181, 130, 140, 0.14);
  border-color: rgba(181, 130, 140, 0.28);
  background: rgba(255, 252, 247, 0.94);
}
.site-header.is-menu-open .header-bar {
  box-shadow: 0 10px 36px rgba(92, 36, 51, 0.1), 0 4px 20px rgba(181, 130, 140, 0.16);
}

.header-bar {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(181, 130, 140, 0.28);
  box-shadow: 0 4px 22px rgba(92, 36, 51, 0.06), 0 8px 36px rgba(181, 130, 140, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

@media (max-width: 1023.98px) {
  .header-bar {
    border-radius: 26px;
  }
}

.header-inner {
  max-width: none;
  margin: 0 auto;
  padding: 8px clamp(12px, 2.8vw, 22px);
  min-height: 50px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 10px;
}

@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    min-height: 54px;
    padding: 10px clamp(16px, 2.5vw, 26px);
    gap: 14px 18px;
  }
}

/* Burger (mobile / tablet) */
.header-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blush) 0%, #f3e4e8 100%);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(181, 130, 140, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.header-burger:hover {
  background: linear-gradient(145deg, var(--blush-mid) 0%, var(--blush) 100%);
  color: var(--rose-deep);
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(181, 130, 140, 0.28);
}
.header-burger:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 2px;
}
@media (min-width: 1024px) {
  .header-burger {
    display: none;
  }
}

.header-burger-box {
  width: 22px;
  height: 14px;
  position: relative;
  display: block;
}
.header-burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
}
.header-burger-line:nth-child(1) { top: 0; }
.header-burger-line:nth-child(2) { top: 6px; }
.header-burger-line:nth-child(3) { top: 12px; }

.site-header.is-menu-open .header-burger-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.site-header.is-menu-open .header-burger-line:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .header-burger-line:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: center;
  min-width: 0;
  transition: opacity 0.2s ease;
}
@media (min-width: 1024px) {
  .logo-link {
    justify-self: start;
  }
}
.logo-link:hover { opacity: 0.9; }
.logo-link:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
  border-radius: 999px;
}

.logo-mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(181, 130, 140, 0.35), 0 1px 3px rgba(92, 36, 51, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.95);
}
@media (min-width: 1024px) {
  .logo-mark {
    width: 42px;
    height: 42px;
  }
}
.logo-mark img { width: 100%; height: 100%; object-fit: cover; }

.logo-mark-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy-soft) 0%, var(--navy) 48%, #5c3542 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}
@media (min-width: 1024px) {
  .logo-mark-initials {
    font-size: 0.76rem;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.12;
  text-align: left;
  min-width: 0;
}
.logo-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.92rem, 2.4vw, 1.05rem);
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-amp {
  color: var(--rose);
  font-weight: 500;
  font-style: italic;
}
.logo-text small {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}
@media (max-width: 380px) {
  .logo-text small {
    display: none;
  }
}

/* Desktop navigation — inner jelly pill */
.nav-main {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 2px;
  justify-self: center;
  padding: 5px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(250, 244, 236, 0.95) 0%, rgba(255, 251, 246, 0.98) 100%);
  border: 1px solid rgba(181, 130, 140, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 10px rgba(181, 130, 140, 0.08);
}
@media (min-width: 1024px) {
  .nav-main {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }
}

.nav-main a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--navy-soft);
  padding: 7px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-main a::after {
  display: none;
}
.nav-main a:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(181, 130, 140, 0.12);
  transform: translateY(-0.5px);
}
.nav-main a:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 1px;
  color: var(--navy);
}

/* Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  padding: 3px 4px 3px 8px;
  border-radius: 999px;
  background: rgba(250, 244, 236, 0.65);
  border: 1px solid rgba(181, 130, 140, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

@media (max-width: 1023.98px) {
  .header-actions {
    padding: 3px 5px 3px 6px;
    gap: 6px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

.header-currency {
  display: flex;
  align-items: stretch;
  min-height: 34px;
  max-width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(181, 130, 140, 0.22);
  background: linear-gradient(165deg, #ffffff 0%, var(--blush) 50%, #fffaf5 100%);
  box-shadow: 0 2px 8px rgba(181, 130, 140, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
}

.zee-currency-prefix {
  display: none;
  align-items: center;
  padding: 0 9px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(180deg, rgba(181, 130, 140, 0.2) 0%, rgba(181, 130, 140, 0.08) 100%);
  border-right: 1px solid rgba(92, 36, 51, 0.08);
}
@media (min-width: 720px) {
  .zee-currency-prefix {
    display: flex;
  }
}

.zee-currency-field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 2px 0 8px;
}
@media (min-width: 720px) {
  .zee-currency-field {
    padding: 0 4px 0 10px;
  }
}

/* Hidden from view; #currency-select stays in DOM for pricing / order logic */
.header-currency.header-currency--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}
.header-currency.header-currency--hidden .zee-currency-select {
  pointer-events: none;
}

.header-currency-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: none;
}
@media (min-width: 640px) {
  .header-currency:not(.header-currency--hidden) .header-currency-label {
    display: none; /* Keep hidden to save space since flags are clear */
  }
}

.zee-currency-select {
  width: 100%;
  min-width: 0;
  max-width: 200px;
  padding: 7px 28px 7px 4px;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.25;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a9727e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
}
@media (min-width: 900px) {
  .zee-currency-select {
    max-width: 220px;
    font-size: 0.75rem;
    padding-right: 30px;
  }
}
.zee-currency-select:focus {
  outline: none;
}
.zee-currency-select option,
.zee-currency-select optgroup {
  font-weight: 600;
  font-size: 0.9rem;
}
.header-currency:focus-within {
  border-color: rgba(181, 130, 140, 0.65);
  box-shadow: 0 0 0 3px rgba(181, 130, 140, 0.2), 0 2px 8px rgba(92, 36, 51, 0.06);
}

.header-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 13px 0 11px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy) 100%);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 12px rgba(92, 36, 51, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.header-cart-btn:hover {
  background: linear-gradient(135deg, var(--rose-deep) 0%, var(--navy) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(165, 110, 122, 0.35);
}
.header-cart-btn:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

.header-cart-icon {
  flex-shrink: 0;
  opacity: 0.9;
  width: 18px;
  height: 18px;
}

.header-cart-text {
  display: none;
}
@media (min-width: 420px) {
  .header-cart-text {
    display: inline;
  }
}

.header-cart-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

/* Mobile menu panel */
.nav-mobile {
  border-top: 1px solid rgba(181, 130, 140, 0.15);
  background: linear-gradient(180deg, rgba(250, 244, 236, 0.55) 0%, rgba(255, 252, 247, 0.9) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.nav-mobile[hidden] {
  display: none !important;
}
.nav-mobile:not([hidden]) {
  display: block;
  animation: zeeNavIn 0.28s ease;
}
@keyframes zeeNavIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-mobile-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px clamp(14px, 3vw, 22px) 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-inner a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-soft);
  padding: 12px 16px;
  margin: 0;
  border-radius: 999px;
  border-bottom: none;
  letter-spacing: 0.02em;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.nav-mobile-inner a:hover,
.nav-mobile-inner a:focus-visible {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(181, 130, 140, 0.12);
  outline: none;
  transform: translateX(2px);
}
.nav-mobile-inner a:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, background 0.2s;
}
.btn-sm { padding: 8px 14px; font-size: 0.875rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(165, 110, 122, 0.35);
}
.btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-1px); }

@keyframes zee-trust-sheen {
  0% { background-position: 6% 50%; }
  100% { background-position: 94% 50%; }
}

@keyframes zee-hero-cinematic {
  0% {
    transform: scale(1.045) translate3d(-1.35%, 0.4%, 0);
  }
  50% {
    transform: scale(1.078) translate3d(0.15%, -0.15%, 0);
  }
  100% {
    transform: scale(1.1) translate3d(1.05%, -0.4%, 0);
  }
}

@keyframes zee-glow-float-a {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(8%, 10%, 0) scale(1.12);
  }
}

@keyframes zee-glow-float-b {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-10%, -8%, 0) scale(1.08);
  }
}

@keyframes zee-scrim-breathe {
  0% {
    opacity: 0.94;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zee-brand-line-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes zee-wholesale-light {
  0% {
    opacity: 0.82;
  }
  100% {
    opacity: 1;
  }
}

/* --- Layout & hero --- */
.zee-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.zee-hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
}

.zee-hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.zee-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.32;
  will-change: transform;
}
.zee-glow-1 {
  width: min(58vw, 440px);
  height: min(58vw, 440px);
  background: radial-gradient(
    circle at 40% 40%,
    rgba(201, 149, 158, 0.55) 0%,
    rgba(181, 130, 140, 0.2) 45%,
    transparent 70%
  );
  top: -12%;
  left: -14%;
  animation: zee-glow-float-a 46s ease-in-out infinite alternate;
}
.zee-glow-2 {
  width: min(52vw, 400px);
  height: min(52vw, 400px);
  background: radial-gradient(
    circle at 55% 55%,
    rgba(116, 58, 74, 0.5) 0%,
    rgba(92, 36, 51, 0.22) 50%,
    transparent 68%
  );
  bottom: 5%;
  right: -12%;
  animation: zee-glow-float-b 62s ease-in-out infinite alternate;
}

.zee-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.zee-hero-visual {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-image: linear-gradient(125deg, var(--blush) 0%, #d9a8b4 38%, var(--navy-soft) 72%, var(--navy) 100%);
  transform-origin: 48% 32%;
  backface-visibility: hidden;
  animation: zee-hero-cinematic 48s ease-in-out infinite alternate;
  will-change: transform;
}

.zee-hero-visual-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(92, 36, 51, 0.78) 0%,
    rgba(92, 36, 51, 0.35) 45%,
    rgba(250, 244, 236, 0.12) 100%
  );
  animation: zee-scrim-breathe 28s ease-in-out infinite alternate;
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  .trust-bar {
    animation: none;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 45%, var(--navy) 100%);
    background-size: 100% 100%;
  }
  .zee-hero-visual {
    animation: none;
    will-change: auto;
    transform: none;
  }
  .zee-glow,
  .zee-hero-bg .zee-glow {
    animation: none !important;
  }
  .zee-hero-visual-scrim {
    animation: none;
    will-change: auto;
    opacity: 1;
  }
  .zee-brand-line {
    animation: none;
    background: var(--blush);
    background-size: 100% 100%;
  }
  .zee-wholesale::before {
    animation: none;
    opacity: 1;
  }
}

.zee-hero-image-cta {
  display: none;
}

.zee-hero-copy-outer {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 60px 0;
  display: flex;
  justify-content: center;
}

.zee-hero-copy {
  max-width: 640px;
  text-align: center;
}

@media (min-width: 1024px) {
  .zee-hero {
    min-height: 80vh;
  }
}

.zee-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 9px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.zee-hero-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.25);
  line-height: 1.08;
}

.zee-hero-rule {
  width: 72px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.45));
  margin: 0 auto 18px;
}

.zee-hero-title {
  font-size: clamp(2.1rem, 4.5vw, 3.35rem);
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.zee-hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 32rem;
  margin: 0 auto 26px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.zee-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.zee-hero-trust {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Sections --- */
.zee-section { padding: clamp(52px, 8vw, 88px) 0; }
.zee-section-muted { background: var(--bg-alt); }

/* What we sell — photo mosaic (#range) */
.zee-range-visuals .zee-range-mosaic {
  display: grid;
  gap: clamp(14px, 2.2vw, 22px);
  grid-template-columns: 1fr;
}

.zee-range-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--blush-mid);
  box-shadow: var(--shadow-sm);
}

.zee-range-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.zee-range-tile--hero {
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.zee-range-tile:not(.zee-range-tile--hero):not(.zee-range-tile--wide) {
  aspect-ratio: 1;
  max-height: 380px;
}

.zee-range-tile--wide {
  aspect-ratio: 16 / 9;
  max-height: 320px;
}

@media (min-width: 768px) {
  .zee-range-visuals .zee-range-mosaic {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: minmax(200px, 14vw) minmax(200px, 14vw) minmax(140px, 12vw);
    align-items: stretch;
  }

  .zee-range-tile--hero {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
    align-self: stretch;
  }

  .zee-range-mosaic > .zee-range-tile:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .zee-range-mosaic > .zee-range-tile:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .zee-range-mosaic > .zee-range-tile:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .zee-range-mosaic > .zee-range-tile:nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }

  .zee-range-tile--wide {
    grid-column: 1 / -1;
    grid-row: 3;
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
  }

  .zee-range-tile:not(.zee-range-tile--hero):not(.zee-range-tile--wide) {
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
  }
}

.zee-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.zee-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 10px;
}
.zee-h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.zee-section-sub { color: var(--text-muted); font-size: 1.02rem; margin: 0; }

/* Products */
.zee-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.zee-product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.zee-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.zee-product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-alt);
}
.zee-product-media.is-placeholder {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e8dfd2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.zee-product-media.is-placeholder .zee-product-img {
  width: 40%;
  height: auto;
  object-fit: contain;
  opacity: 0.15;
}
.zee-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.zee-product-card:hover .zee-product-img { transform: scale(1.04); }

.zee-product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(165, 110, 122, 0.55), transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  opacity: 0;
  transition: opacity 0.25s;
}
.zee-product-card:hover .zee-product-overlay { opacity: 1; }
.zee-product-quick {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.zee-product-body { padding: 18px 18px 12px; }
.zee-product-name { font-weight: 600; font-size: 1.02rem; margin-bottom: 8px; }
.zee-product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.zee-product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-deep);
  font-weight: 600;
}
.zee-product-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  padding: 4px 8px;
  border-radius: 999px;
}

.zee-product-actions { padding: 0 18px 18px; }
.zee-add-btn {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s, transform 0.2s;
}
.zee-add-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* Categories */
.zee-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.zee-catCard {
  position: relative;
  min-height: 300px;
  border-radius: var(--radius-xl);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: transform 0.3s;
  border: 1px solid var(--border-light);
  background-color: var(--green-mid);
}
.zee-catCard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.zee-cat-content { position: relative; z-index: 1; }
.zee-cat-title { color: #fff; font-size: 1.5rem; margin-bottom: 6px; text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35); }
.zee-cat-sub { color: rgba(255, 255, 255, 0.92); font-size: 0.92rem; margin: 0; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }

/* Wholesale */
.zee-wholesale {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-soft) 42%, var(--rose-deep) 100%);
  color: var(--blush);
  padding: clamp(44px, 6vw, 72px) 0;
  position: relative;
  overflow: hidden;
}
.zee-wholesale::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: radial-gradient(circle at top right, rgba(196, 168, 130, 0.2) 0%, transparent 50%),
                    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
  animation: zee-wholesale-light 34s ease-in-out infinite alternate;
}
.zee-wholesale-inner {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .zee-wholesale-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.zee-wholesale-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px 28px 32px;
  box-shadow: var(--shadow-sm);
}
.zee-wholesale-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.zee-wholesale-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.zee-wholesale-list li { margin-bottom: 8px; }

.zee-wholesale-modern {
  display: grid;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.zee-wholesale-form-col {
  max-width: 360px;
  width: 100%;
  justify-self: center;
}
@media (min-width: 900px) {
  .zee-wholesale-modern {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 36px;
    align-items: start;
  }
  .zee-wholesale-form-col {
    justify-self: start;
  }
}
.zee-wholesale-form-head {
  margin-bottom: 12px;
  text-align: center;
}
@media (min-width: 900px) {
  .zee-wholesale-form-head { text-align: left; }
}
.zee-wholesale-form-eyebrow {
  margin-bottom: 4px !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.2em !important;
  opacity: 0.9;
}
.zee-wholesale-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.28rem, 3.2vw, 1.55rem);
  font-weight: 600;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.zee-wholesale-form-lead {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 251, 246, 0.88);
}
.zee-wholesale-intro .zee-section-head { margin-bottom: 0; text-align: left; }
.zee-wholesale-intro .zee-eyebrow { color: var(--gold-light); }
.zee-wholesale-intro .zee-h2 { color: #fff; font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 16px; }
.zee-wholesale-lead { text-align: left; margin-top: 12px; color: rgba(250, 244, 238, 0.9); font-size: 1.1rem; line-height: 1.6; }
.zee-wholesale-pills {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.zee-wholesale-pills li {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  backdrop-filter: blur(4px);
}
.zee-wholesale-preview-col .zee-section-head {
  margin-bottom: 12px;
  text-align: left;
}
.zee-wholesale-preview-col .zee-h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 0;
}
.zee-wholesale-preview-lead {
  font-size: 0.88rem !important;
  line-height: 1.45 !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}
.zee-wholesale-preview-col .zee-wholesale-pills {
  margin: 0 0 10px;
  gap: 8px;
}
.zee-wholesale-preview-col .zee-wholesale-pills li {
  padding: 6px 12px;
  font-size: 0.72rem;
}
.zee-wholesale-preview-hint {
  margin: 0 0 12px;
  font-size: 0.75rem;
  color: rgba(255, 251, 246, 0.72);
  line-height: 1.4;
}

.zee-wholesale-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
  gap: 12px;
}
.zee-wholesale-preview-empty {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 251, 246, 0.65);
  grid-column: 1 / -1;
}
.zee-wholesale-preview-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.zee-wholesale-preview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.zee-wholesale-preview-media {
  aspect-ratio: 4 / 5;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.zee-wholesale-preview-media.is-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
}
.zee-wholesale-preview-media.is-placeholder img {
  width: 42%;
  height: auto;
  object-fit: contain;
  opacity: 0.25;
}
.zee-wholesale-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zee-wholesale-preview-body {
  padding: 10px 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.zee-wholesale-preview-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zee-wholesale-preview-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.72rem;
}
.zee-wholesale-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  color: rgba(255, 251, 246, 0.88);
}
.zee-wholesale-preview-row--wholesale {
  padding-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.zee-wholesale-preview-label {
  color: rgba(255, 251, 246, 0.65);
  font-weight: 500;
}
.zee-wholesale-preview-label small {
  font-weight: 400;
  font-size: 0.65rem;
  opacity: 0.9;
}
.zee-wholesale-preview-retail {
  font-weight: 600;
  color: rgba(255, 251, 246, 0.92);
}
.zee-wholesale-preview-wholesale {
  font-weight: 700;
  color: var(--gold-light);
  font-size: 0.8rem;
}
.zee-wholesale-preview-cta {
  margin-top: auto;
  width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s, border-color 0.2s;
}
.zee-wholesale-preview-cta:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.5);
}
.zee-wholesale-wa-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(92, 36, 51, 0.06);
  position: relative;
  overflow: hidden;
}
.zee-wholesale-wa-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-deep), var(--gold));
}
.zee-wholesale-wa-badge {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(181, 130, 140, 0.2);
  color: var(--navy-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}
@media (min-width: 900px) {
  .zee-wholesale-wa-badge {
    margin-left: 0;
    margin-right: 0;
  }
}
.zee-wholesale-wa-title {
  margin: 0 0 4px;
  font-size: 0.98rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.02em;
}
@media (min-width: 900px) {
  .zee-wholesale-wa-title { text-align: left; }
}
.zee-wholesale-wa-copy {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  text-align: center;
}
@media (min-width: 900px) {
  .zee-wholesale-wa-copy { text-align: left; }
}
.zee-label-opt { font-weight: 400; color: var(--text-muted); font-size: 0.8rem; }

.zee-wholesale-wa-form .zee-form-row { margin-bottom: 10px; }
.zee-wholesale-wa-form .zee-form-row:last-of-type { margin-bottom: 12px; }
.zee-form-row label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}
.zee-wholesale-wa-form .zee-form-row label {
  font-size: 0.75rem;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.zee-form-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(92, 36, 51, 0.15);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: #faf5ef;
  transition: border-color 0.2s, background 0.2s;
}
.zee-wholesale-wa-form .zee-form-row input {
  padding: 9px 11px;
  font-size: 0.88rem;
  border-radius: 10px;
  background: #fff;
  border-color: rgba(92, 36, 51, 0.12);
}
.zee-form-row input:focus {
  outline: none;
  border-color: var(--green-deep);
  background: #fff;
}
.zee-wholesale-wa-form .zee-btn-wa {
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: 10px;
  margin-top: 2px;
}
.zee-wholesale-msg {
  font-size: 0.8rem;
  margin-top: 8px;
  min-height: 1.35em;
}
.zee-wholesale-msg.is-error { color: #923242; }
.zee-wholesale-msg.is-ok { color: var(--green-deep); }

/* Newsletter / Zee Beauty Club (pre-footer) */
.zee-subscribe {
  background: #fff;
  color: var(--charcoal);
}
.zee-subscribe--prefooter {
  padding-top: clamp(48px, 8vw, 72px);
  padding-bottom: clamp(40px, 6vw, 56px);
  margin-bottom: 0;
  border-top: 1px solid var(--border-light);
  position: relative;
}
.zee-subscribe--prefooter::after {
  display: none;
}
.zee-subscribe .zee-eyebrow { color: var(--green-deep); opacity: 0.95; letter-spacing: 0.06em; }
.zee-subscribe .zee-h2 { color: var(--green-deep); }
.zee-subscribe .zee-section-sub {
  color: var(--text-muted);
  margin-bottom: 0;
}
.zee-club-shell { max-width: 920px; margin: 0 auto; }
.zee-club-head { text-align: center; margin-bottom: clamp(28px, 5vw, 40px); }
.zee-club-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 6px 0 12px;
  color: var(--green-deep);
}
.zee-club-lead { max-width: 520px; margin-left: auto; margin-right: auto; }
.zee-club-panels {
  display: grid;
  gap: 20px;
}
@media (min-width: 720px) {
  .zee-club-panels:not(.zee-club-panels--solo) {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
/* Single subscribe card: stay centered above footer at all breakpoints */
.zee-club-panels--solo {
  grid-template-columns: 1fr;
  justify-items: center;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.zee-club-panels--solo .zee-club-card {
  width: 100%;
  max-width: 440px;
  text-align: center;
}
.zee-club-panels--solo .zee-club-card-icon {
  margin-left: auto;
  margin-right: auto;
}
.zee-club-panels--solo .zee-subscribe-form {
  align-items: stretch;
  max-width: 100%;
}
.zee-club-panels--solo .zee-subscribe-btn {
  align-self: stretch;
  width: 100%;
}
.zee-club-panels--solo .zee-subscribe-msg {
  text-align: center;
}
.zee-club-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 26px 24px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.zee-club-card:hover {
  border-color: var(--green-deep);
  box-shadow: var(--shadow-sm);
}
.zee-club-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(196, 168, 130, 0.22);
  color: #8b7355;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 14px;
}
.zee-club-card-icon--wa {
  background: rgba(181, 130, 140, 0.18);
  color: var(--navy-soft);
}
.zee-club-card-title { margin: 0 0 6px; font-size: 1.15rem; font-weight: 600; color: var(--green-deep); }
.zee-club-card-hint { margin: 0 0 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.45; }
.zee-club-card--wa .zee-club-card-hint { margin-bottom: 20px; }

.zee-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #fff;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
  font-weight: 600;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.zee-btn-wa:hover { background: var(--green-deep); color: #fff; }
.zee-btn-wa:active { transform: scale(0.99); }
.zee-btn-wa--block { width: 100%; }
.zee-btn-wa-svg { flex-shrink: 0; opacity: 0.95; }
.zee-club-wa-btn { margin-top: 4px; }

.zee-subscribe-inner {
  display: grid;
  gap: 28px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 720px) {
  .zee-subscribe-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
}
.zee-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.zee-subscribe-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
}
.zee-subscribe-input::placeholder { color: var(--text-muted); }
.zee-subscribe-input:focus {
  outline: none;
  border-color: var(--green-deep);
  background: #fff;
}
.zee-subscribe-btn {
  align-self: flex-start;
}
.zee-subscribe .btn-primary {
  background: #fff;
  color: var(--green-deep);
  border: 1px solid var(--green-deep);
}
.zee-subscribe .btn-primary:hover {
  background: var(--green-deep);
  color: #fff;
}
.zee-subscribe-msg {
  font-size: 0.9rem;
  margin: 4px 0 0;
  min-height: 1.4em;
  color: var(--text-muted);
}
.zee-subscribe-msg.is-error { color: #923242; }
.zee-subscribe-msg.is-ok { color: var(--green-deep); }

/* Brand values */
.zee-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.zee-value {
  padding: 26px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.zee-valueIcon { font-size: 1.4rem; margin-bottom: 10px; }
.zee-valueTitle { font-weight: 600; margin-bottom: 8px; }
.zee-valueSub { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* About */
.zee-about-text {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.zee-about-text p { margin: 0 0 16px; }
.zee-about-text p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #2f1a12 0%, #1a0e09 55%, #140a07 100%);
  color: var(--blush);
  padding: var(--space-12) 24px var(--space-4);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.site-footer h4 { color: var(--gold); margin: 0 0 14px; font-size: 1.05rem; font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.02em; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; font-size: 0.85rem; color: rgba(250, 244, 238, 0.75); }
.site-footer a { color: rgba(250, 244, 238, 0.85); font-size: 0.85rem; }
.site-footer a:hover { color: var(--gold); }
.footer-brand p {
  color: rgba(250, 244, 238, 0.75);
  font-size: 0.85rem;
  margin: 12px 0 0;
  line-height: 1.55;
}
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 244, 238, 0.55);
}

/* Cart drawer */
.zee-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(92, 36, 51, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.zee-cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.zee-cart-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(100%, 420px);
  background: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}
.zee-cart-overlay.is-open .zee-cart-drawer { transform: translateX(0); }

.zee-cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-light);
}
.zee-cart-title { margin: 0; font-size: 1.25rem; color: var(--green-deep); }
.zee-cart-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px 8px;
}

.zee-cart-body { flex: 1; overflow-y: auto; padding: 20px 22px; }
.zee-cart-foot {
  padding: 20px 22px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-alt);
}

.zee-cart-empty { text-align: center; color: var(--text-muted); margin-top: 32px; padding: 0 16px; }

.zee-cart-line {
  display: flex;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.zee-cart-line img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.zee-cart-line-title { font-weight: 600; font-size: 0.95rem; }
.zee-cart-line-price { color: var(--green-deep); font-weight: 600; margin-top: 4px; }
.zee-cart-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.zee-cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.zee-cart-qty button:hover { background: #eee; }

/* Checkout modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(92, 36, 51, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-wrap {
  background: #fff;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.is-open .modal-wrap { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9rem; }
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--rose-deep); }

.zee-checkout-modal.modal-wrap {
  max-width: 480px;
}
.zee-checkout-title {
  font-size: 1.35rem;
  margin: 0 32px 6px 0;
}
.zee-checkout-total-line {
  margin: 0 0 12px;
  font-size: 0.95rem;
}
.zee-pay-methods {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 6px 0 14px;
}
.zee-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 0.92rem;
  cursor: pointer;
  line-height: 1.35;
}
.zee-radio input {
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--rose-deep);
}
.zee-pay-instructions {
  margin: 12px 0 16px;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-main);
}
.zee-pay-instructions ul {
  margin: 8px 0 0;
  padding-left: 1.15rem;
}
.zee-checkout-submit {
  width: 100%;
  margin-top: 4px;
}
.zee-checkout-wa-note {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.zee-checkout-wa-note a {
  color: var(--rose-deep);
  text-decoration: underline;
}
.zee-checkout-done .zee-order-id-line {
  margin: 10px 0;
  font-size: 0.95rem;
}
.optional-label {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.85em;
}

/* —— Editorial: brand line, pillars, services, testimonials —— */
.zee-brand-line {
  background: linear-gradient(
    95deg,
    var(--blush-mid) 0%,
    var(--blush) 22%,
    var(--paper) 48%,
    var(--blush) 78%,
    var(--blush-mid) 100%
  );
  background-size: 220% 100%;
  animation: zee-brand-line-flow 52s ease-in-out infinite alternate;
  border-bottom: 1px solid var(--border-light);
  padding: 22px 0;
}
.zee-brand-line-inner {
  text-align: center;
}
.zee-brand-line-text {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-style: italic;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.5;
  max-width: 36rem;
  margin-inline: auto;
}

.zee-editorial {
  padding: clamp(56px, 9vw, 96px) 0;
  background: var(--white);
}
.zee-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 8px;
}
.zee-pillar {
  padding: 28px 26px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.zee-pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.zee-pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 600;
}
.zee-pillar p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.zee-services-preview {
  border-block: 1px solid var(--border-light);
}
.zee-services-inner {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .zee-services-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.zee-services-copy h2 {
  margin-bottom: 12px;
}
.zee-services-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.zee-services-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.98rem;
  border-bottom: 1px solid var(--border-light);
}
.zee-services-list li:last-child {
  border-bottom: none;
}
.zee-services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}
.zee-services-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.zee-services-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 36ch;
}

.zee-testimonials {
  background: linear-gradient(180deg, var(--white) 0%, var(--blush) 100%);
}
.zee-quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.zee-quote {
  background: #fff;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.zee-quote p {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
}
.zee-quote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
