/* Fonts loaded via <link> in HTML head for performance */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Premium globals ─────────────────────────────────────────────────────── */

::selection {
  background: rgba(212, 160, 23, 0.28);
  color: var(--cream);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: rgba(212,160,23,0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

:root {
  --navy: #1A2E3B;
  --teal: #4A8B8C;
  --gold: #D4A017;
  --cream: #E8E0CC;
  --charcoal: #1C1C1C;
  --dark-teal: #3a6e6f;
  --light-cream: #f5f0e8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-gold:hover::after {
  transform: translateX(100%);
}

.btn-gold:hover {
  background: #e8b41f;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(232,224,204,0.5);
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,224,204,0.15);
}

.btn-teal {
  background: var(--teal);
  color: var(--cream);
}

.btn-teal:hover {
  background: var(--dark-teal);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-dark:hover {
  background: #2a2a2a;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 46, 59, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74, 139, 140, 0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

.nav-logo:hover .nav-logo-img {
  animation: logo-shake 0.4s ease;
}

@keyframes logo-shake {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  60% { transform: rotate(-6deg); }
  80% { transform: rotate(4deg); }
}

.nav-logo span {
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}

.nav-links a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

nav.scrolled {
  background: rgba(10, 22, 30, 0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
  border-bottom-color: rgba(212,160,23,0.15);
}

.nav-links .btn {
  padding: 10px 22px;
  font-size: 13px;
}

.nav-cart {
  position: relative;
  cursor: pointer;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.nav-cart:hover {
  opacity: 1;
  color: var(--gold);
}

.cart-count {
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(26,46,59,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px;
  z-index: 999;
  border-bottom: 1px solid rgba(74, 139, 140, 0.2);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  display: block;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-menu ul li a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}

.mobile-menu ul li a:hover {
  color: var(--gold);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  z-index: 0;
}

.hero-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A2E3B 0%, #0d1e28 50%, #1a3545 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74, 139, 140, 0.15) 0%, transparent 70%);
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,46,59,0.92) 45%, rgba(26,46,59,0.15) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  animation: hero-rise 0.7s ease 0.15s both;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
  max-width: 700px;
  animation: hero-rise 0.8s ease 0.3s both;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(232,224,204,0.75);
  margin-bottom: 40px;
  max-width: 500px;
  font-weight: 300;
  animation: hero-rise 0.8s ease 0.5s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: hero-rise 0.8s ease 0.65s both;
}

/* IMAGE PLACEHOLDER */
.img-placeholder {
  background: linear-gradient(135deg, #1A2E3B 0%, #243d4f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(232,224,204,0.4);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(74,139,140,0.05) 20px,
    rgba(74,139,140,0.05) 40px
  );
}

.img-placeholder .placeholder-icon {
  font-size: 36px;
  margin-bottom: 8px;
  opacity: 0.3;
}

.img-placeholder p {
  position: relative;
  z-index: 1;
  opacity: 0.5;
  font-size: 11px;
  letter-spacing: 0.05em;
}

/* ICONS STRIP */
.icons-strip {
  background: var(--teal);
  padding: 28px 24px;
}

.icons-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.icon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  flex: 1;
  justify-content: center;
}

.icon-item + .icon-item {
  border-left: 1px solid rgba(255,255,255,0.2);
}

.icon-item svg, .icon-item .icon-emoji {
  font-size: 28px;
  flex-shrink: 0;
}

.icon-item-text {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
}

/* SECTIONS */
section {
  padding: 80px 0;
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
}

.section-sub {
  color: rgba(232,224,204,0.65);
  font-size: 17px;
  max-width: 560px;
  font-weight: 300;
}

/* PRODUCTS SECTION */
.products-section {
  background: var(--charcoal);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Bundle Builder */
.bundle-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 800px) {
  .bundle-layout { grid-template-columns: 1fr; }
}

.bundle-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bundle-product-row:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.bundle-product-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  overflow: hidden;
  background: #071319;
}
.bundle-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bundle-product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  opacity: 0.4;
}
.bundle-product-info { flex: 1; min-width: 0; }
.bundle-product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}
.bundle-product-price {
  font-size: 13px;
  color: rgba(232,224,204,0.45);
}

.bundle-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.bundle-qty-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.bundle-qty-btn:hover { background: rgba(255,255,255,0.1); }
.bundle-qty-add {
  background: rgba(212,160,23,0.15);
  border-color: rgba(212,160,23,0.3);
  color: var(--gold);
}
.bundle-qty-add:hover { background: rgba(212,160,23,0.25); }
.bundle-qty-input {
  width: 44px;
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  border-left: none;
  border-right: none;
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-align: center;
  -moz-appearance: textfield;
}
.bundle-qty-input::-webkit-outer-spin-button,
.bundle-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.bundle-summary-wrap {
  position: sticky;
  top: 80px;
}
.bundle-summary {
  background: var(--navy);
  border: 1px solid rgba(74,139,140,0.2);
  padding: 24px;
}

.bundle-tier-wrap {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.bundle-tier-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(232,224,204,0.35);
  margin-bottom: 4px;
}
.bundle-tier-value {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: rgba(232,224,204,0.4);
  margin-bottom: 8px;
}
.bundle-tier-nudge {
  font-size: 12px;
  color: rgba(232,224,204,0.45);
  margin-bottom: 10px;
  line-height: 1.4;
}
.bundle-tier-bar {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}
.bundle-tier-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.bundle-line-items {
  min-height: 48px;
  margin-bottom: 16px;
}
.bundle-empty-msg {
  font-size: 13px;
  color: rgba(232,224,204,0.25);
  text-align: center;
  padding: 12px 0;
}
.bundle-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.bundle-line-name {
  font-size: 13px;
  color: rgba(232,224,204,0.6);
}
.bundle-line-price {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--cream);
}

.bundle-totals {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}
.bundle-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(232,224,204,0.6);
}
.bundle-savings {
  color: var(--teal);
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
}
.bundle-total-price {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}

/* Quick View hover button */
.qv-hover-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10,20,28,0.88);
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 11px 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.product-card-img-wrap:hover .qv-hover-btn {
  opacity: 1;
  transform: translateY(0);
}

/* Quick View Modal */
#qv-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,12,18,0.75);
  z-index: 900;
  backdrop-filter: blur(3px);
}
#qv-overlay.show { display: block; }

#qv-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  opacity: 0;
  width: min(880px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #0d1e28;
  border: 1px solid rgba(74,139,140,0.2);
  z-index: 901;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#qv-modal.show {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%);
}
#qv-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(232,224,204,0.4);
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.15s;
}
#qv-close:hover { color: var(--cream); }

.qv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .qv-layout { grid-template-columns: 1fr; }
}
.qv-img-col {
  position: relative;
  background: #071319;
  display: flex;
  flex-direction: column;
}
.qv-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.qv-img-placeholder {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  opacity: 0.3;
}
.qv-full-link {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(232,224,204,0.35);
  padding: 12px;
  text-decoration: none;
  transition: color 0.15s;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
}
.qv-full-link:hover { color: var(--teal); }

.qv-info-col {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}
.qv-name {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.qv-price {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.qv-ship {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 18px;
}
.qv-tagline {
  font-size: 15px;
  color: var(--cream);
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.qv-body {
  font-size: 14px;
  color: rgba(232,224,204,0.65);
  line-height: 1.75;
  margin: 0 0 10px;
}
.qv-scent-wrap {
  margin: 18px 0 20px;
}
.qv-scent-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(232,224,204,0.4);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.qv-scent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qv-scent-btn {
  background: transparent;
  border: 1px solid rgba(232,224,204,0.15);
  color: rgba(232,224,204,0.55);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.18s;
}
.qv-scent-btn:hover {
  border-color: rgba(212,160,23,0.5);
  color: var(--cream);
}
.qv-scent-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}
.qv-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qv-bullets li {
  font-size: 13px;
  color: rgba(232,224,204,0.65);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.qv-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.qv-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
}
.qv-cart-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(74,139,140,0.4);
  color: var(--teal);
}
.qv-cart-btn:hover {
  background: rgba(74,139,140,0.1);
}

.product-card {
  background: var(--navy);
  border: 1px solid rgba(74,139,140,0.15);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74,139,140,0.45);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 4/3;
}

.product-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0d1e28;
}

.product-img-primary,
.product-img-hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.5s ease;
}

.product-card:hover .product-img-primary,
.product-card:hover .product-img-hover {
  transform: scale(1.04);
}

.product-img-hover {
  opacity: 0;
}

.product-card:hover .product-img-primary {
  opacity: 0;
}

.product-card:hover .product-img-hover {
  opacity: 1;
}

.product-card-body {
  padding: 20px;
}

.product-card-name {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.product-card-desc {
  font-size: 14px;
  color: rgba(232,224,204,0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* Shop card description */
.pdesc-tagline {
  font-size: 14px;
  color: rgba(232,224,204,0.8);
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pdesc-contents {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pdesc-contents li {
  font-size: 13px;
  color: rgba(232,224,204,0.6);
  padding-left: 16px;
  position: relative;
  line-height: 1.4;
}
.pdesc-contents li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pdesc-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.pdesc-ship {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
}
.pdesc-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(232,224,204,0.2);
  flex-shrink: 0;
}
.pdesc-scent-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(232,224,204,0.35);
  text-transform: uppercase;
}
.pdesc-scents {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.pdesc-scent-tag {
  font-size: 11px;
  color: rgba(232,224,204,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
}

/* Product detail page description */
.pd-tagline {
  font-size: 19px;
  color: var(--cream);
  font-style: italic;
  line-height: 1.65;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pd-body {
  font-size: 15px;
  color: rgba(232,224,204,0.7);
  line-height: 1.8;
  margin: 0 0 14px;
}
.pd-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pd-bullets li {
  font-size: 14px;
  color: rgba(232,224,204,0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.pd-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pd-ship-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--teal);
  background: rgba(74,139,140,0.1);
  border: 1px solid rgba(74,139,140,0.25);
  padding: 6px 14px;
  margin-bottom: 24px;
}
.pd-scent-wrap {
  margin: 24px 0;
}
.pd-scent-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(232,224,204,0.4);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pd-scent-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-scent-btn {
  background: transparent;
  border: 1px solid rgba(232,224,204,0.15);
  color: rgba(232,224,204,0.55);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 9px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.18s;
}
.pd-scent-btn:hover {
  border-color: rgba(212,160,23,0.5);
  color: var(--cream);
}
.pd-scent-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 700;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold);
}

.btn-add-cart {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-add-cart:hover {
  background: #e8b41f;
  transform: translateY(-1px);
}

.btn-buy-now {
  width: 100%;
  background: var(--teal);
  color: var(--cream);
  border: none;
  padding: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.2s;
  display: block;
  text-align: center;
}

.btn-buy-now:hover {
  background: var(--dark-teal);
}

/* LIFESTYLE SECTION */
.lifestyle-section {
  background: var(--navy);
  padding: 80px 0;
}

.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.lifestyle-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.lifestyle-img {
  aspect-ratio: 1;
}

.lifestyle-text {
  padding: 60px;
}

.lifestyle-text .section-title {
  margin-bottom: 24px;
}

.lifestyle-text p {
  color: rgba(232,224,204,0.7);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* MEMBERSHIP TEASER */
.membership-teaser {
  background: var(--charcoal);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.membership-teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74,139,140,0.1) 0%, transparent 70%);
}

.membership-teaser .container {
  position: relative;
  z-index: 1;
}

.membership-teaser .section-label {
  text-align: center;
}

.membership-teaser .section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.membership-teaser .section-sub {
  text-align: center;
  margin: 0 auto 16px;
  max-width: 600px;
}

.membership-price-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin: 32px 0 8px;
}

.membership-price-tag span {
  font-size: 22px;
  color: rgba(232,224,204,0.6);
}

.founding-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  margin-bottom: 32px;
}

/* REVIEWS */
/* HOW IT WORKS */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.hiw-step {
  text-align: center;
  padding: 0 24px;
}
.hiw-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  height: 160px;
  align-self: center;
}
.hiw-number {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}
.hiw-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.hiw-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.hiw-desc {
  font-size: 15px;
  color: rgba(232,224,204,0.55);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hiw-divider { display: none; }
}

/* REVIEWS */
.reviews-section {
  background: var(--navy);
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--charcoal);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.review-card:hover {
  border-color: rgba(212,160,23,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.review-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.review-role {
  font-size: 12px;
  color: rgba(232,224,204,0.4);
  margin-top: 2px;
}
.review-stars-small {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
  margin-left: auto;
  flex-shrink: 0;
}
.review-text {
  font-size: 15px;
  color: rgba(232,224,204,0.75);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(232,224,204,0.3);
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
  margin-top: 12px;
  gap: 8px;
}
.review-verified {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--teal);
  opacity: 0.8;
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* FOOTER */
footer {
  background: #0f1e28;
  border-top: 1px solid rgba(74,139,140,0.15);
  padding: 60px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  font-size: 24px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  color: rgba(232,224,204,0.55);
  font-size: 15px;
  line-height: 1.7;
  max-width: 300px;
}

.footer-nav h4, .footer-social h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul a {
  color: rgba(232,224,204,0.6);
  font-size: 15px;
  transition: color 0.2s;
}

.footer-nav ul a:hover {
  color: var(--gold);
}

.footer-social .social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(232,224,204,0.6);
  font-size: 15px;
  transition: color 0.2s;
  margin-bottom: 12px;
}

.footer-social .social-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(232,224,204,0.35);
  font-size: 13px;
}

/* PAGE HEADER */
.page-header {
  background: var(--navy);
  padding: 120px 24px 60px;
  text-align: center;
}

.page-header .section-label {
  animation: hero-rise 0.6s ease 0.1s both;
}

.page-header h1 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--cream);
  margin-bottom: 12px;
  animation: hero-rise 0.7s ease 0.25s both;
}

.page-header p {
  font-size: 18px;
  color: rgba(232,224,204,0.65);
  max-width: 560px;
  margin: 0 auto;
  animation: hero-rise 0.7s ease 0.4s both;
}

/* SHOP PAGE */
.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.shop-section {
  background: var(--charcoal);
  padding: 60px 0 100px;
}

/* CART DRAWER */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(2px);
}

.cart-overlay.open {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  max-width: 100vw;
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  border-left: 1px solid rgba(74,139,140,0.2);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cart-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-close {
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
}

.cart-close:hover {
  opacity: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: rgba(232,224,204,0.4);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.cart-item-price {
  font-size: 14px;
  color: var(--gold);
  margin-top: 4px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--cream);
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(255,255,255,0.15);
}

.qty-display {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  color: var(--cream);
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  background: none;
  border: none;
  color: rgba(232,224,204,0.4);
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s;
  padding: 4px;
}

.cart-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.cart-total-label {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: rgba(232,224,204,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cart-total-amount {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}

.btn-checkout {
  width: 100%;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-checkout:hover {
  background: #e8b41f;
}

/* ABOUT PAGE */
.about-story {
  background: var(--charcoal);
  padding: 80px 0;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-story-img {
  aspect-ratio: 4/5;
}

.about-story-text h2 {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  margin-bottom: 24px;
}

.about-story-text p {
  color: rgba(232,224,204,0.72);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-story-text .gold {
  color: var(--gold);
  font-weight: 600;
}

.ingredients-section {
  background: var(--navy);
  padding: 80px 0;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.ingredient-card {
  background: var(--charcoal);
  padding: 32px 24px;
  text-align: center;
  border-top: 3px solid var(--teal);
}

.ingredient-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.ingredient-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.ingredient-desc {
  font-size: 14px;
  color: rgba(232,224,204,0.6);
  line-height: 1.6;
}

.about-tagline {
  background: var(--gold);
  padding: 60px 0;
  text-align: center;
}

.about-tagline h2 {
  font-size: clamp(32px, 6vw, 64px);
  color: var(--charcoal);
  font-weight: 700;
}

/* CONTACT PAGE */
.contact-section {
  background: var(--charcoal);
  padding: 60px 0 100px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.contact-info h3 {
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 20px;
}

.contact-info p {
  color: rgba(232,224,204,0.7);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.contact-info .contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(232,224,204,0.7);
  font-size: 15px;
  margin-bottom: 12px;
}

.contact-info .contact-detail strong {
  color: var(--gold);
}

.contact-form {
  background: var(--navy);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(74,139,140,0.25);
  color: var(--cream);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,139,140,0.12);
  background: rgba(255,255,255,0.07);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  margin-top: 8px;
}

.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: rgba(74,139,140,0.2);
  border: 1px solid var(--teal);
  color: var(--teal);
  display: block;
}

.form-message.error {
  background: rgba(231,76,60,0.1);
  border: 1px solid #e74c3c;
  color: #e74c3c;
  display: block;
}

/* JOIN PAGE */
.join-section {
  background: var(--charcoal);
  padding: 60px 0 100px;
}

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.join-features {
  list-style: none;
  margin-bottom: 32px;
}

.join-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(232,224,204,0.8);
  font-size: 16px;
  line-height: 1.5;
}

.join-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.join-card {
  background: var(--navy);
  padding: 40px;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.join-card h3 {
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 8px;
}

.join-price {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 20px 0 4px;
}

.join-price-sub {
  color: rgba(232,224,204,0.5);
  font-size: 14px;
  margin-bottom: 8px;
}

.join-trial {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.join-badge {
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  display: inline-block;
  margin-bottom: 28px;
}

/* MEMBERS PAGE */
.members-section {
  background: var(--charcoal);
  min-height: 100vh;
  padding: 100px 0 60px;
}

.members-login {
  max-width: 480px;
  margin: 0 auto;
  background: var(--navy);
  padding: 48px 40px;
  border-top: 4px solid var(--gold);
  text-align: center;
}

.members-login h2 {
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 8px;
}

.members-login p {
  color: rgba(232,224,204,0.6);
  font-size: 15px;
  margin-bottom: 32px;
}

.members-content {
  display: none;
}

.members-content.active {
  display: block;
  animation: mc-fade 0.4s ease forwards;
}

.members-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.members-header h2 {
  font-size: 32px;
  color: var(--cream);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.member-card {
  background: var(--navy);
  padding: 28px;
  border-left: 3px solid var(--teal);
}

.member-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.member-card h3 {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
}

.member-card p {
  color: rgba(232,224,204,0.65);
  font-size: 15px;
  line-height: 1.7;
}

.member-card .date {
  font-size: 12px;
  color: rgba(232,224,204,0.4);
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

.discount-banner {
  background: var(--gold);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.discount-banner h3 {
  font-size: 20px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.discount-banner p {
  font-size: 14px;
  color: rgba(28,28,28,0.7);
}

.discount-code {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--charcoal);
  background: rgba(255,255,255,0.3);
  padding: 8px 20px;
  letter-spacing: 0.1em;
}

/* ── MEMBERS PAGE POLISH ──────────────────────────────────────────── */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Button micro-interactions */
.btn:active {
  transform: scale(0.96) translateY(0) !important;
  transition: transform 0.08s ease !important;
}

/* Feature card hover lift */
.feature-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}
.feature-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 44px rgba(0,0,0,0.38) !important;
}

/* 2-col feature grid */
.mc-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

/* Premium badge shimmer */
@keyframes badge-shine {
  0% { left: -100%; }
  60%, 100% { left: 150%; }
}
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.4);
  padding: 6px 14px;
  margin-top: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.premium-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.3), transparent);
  animation: badge-shine 3s ease 0.8s infinite;
}

/* Giveaway progress bar */
@keyframes prog-fill {
  from { width: 0; }
  to { width: var(--fill); }
}
.progress-track {
  background: rgba(255,255,255,0.07);
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
  margin: 8px 0 4px;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f0c94d);
  border-radius: 3px;
  width: 0;
  animation: prog-fill 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.5s;
}

/* Discount code click-to-copy */
.discount-banner {
  cursor: pointer;
}
@keyframes code-flash {
  0%   { background: rgba(255,255,255,0.3); color: var(--charcoal); }
  40%  { background: rgba(255,255,255,0.85); color: var(--charcoal); }
  100% { background: rgba(255,255,255,0.3); color: var(--charcoal); }
}
.discount-code.flash {
  animation: code-flash 0.55s ease forwards;
}

/* Count-up */
.count-num {
  display: inline-block;
}

/* Giveaway prize card hover */
.prize-card {
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.prize-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,160,23,0.25) !important;
}

/* Members content fade-in */
.members-content.active {
  animation: mc-fade 0.4s ease forwards;
}
@keyframes mc-fade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reports-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.report-item {
  background: var(--navy);
  padding: 24px;
  border-left: 3px solid var(--teal);
}

.report-item h3 {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 8px;
}

.report-item p {
  color: rgba(232,224,204,0.65);
  font-size: 15px;
  line-height: 1.7;
}

.report-body { color: rgba(232,224,204,0.75); font-size: 15px; line-height: 1.8; }
.report-body p { margin-bottom: 14px; }
.report-body h4 { font-family: 'Oswald', sans-serif; font-size: 13px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin: 24px 0 10px; }
.report-body strong { color: var(--cream); }
.report-body ul { padding-left: 18px; margin-bottom: 14px; }
.report-body li { margin-bottom: 6px; }
.report-body .r-section { background: rgba(255,255,255,0.03); border-left: 3px solid var(--teal); padding: 16px 20px; margin: 16px 0; }
.report-body .r-section-title { font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--teal); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 10px; }
.report-body .r-callout { background: rgba(212,160,23,0.07); border-left: 3px solid var(--gold); padding: 14px 18px; margin: 16px 0; font-size: 14px; }
.report-body .r-species { display: inline-block; background: rgba(74,139,140,0.15); border: 1px solid rgba(74,139,140,0.25); color: var(--teal); font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 0.08em; padding: 4px 10px; margin: 3px 3px 3px 0; }

.report-date {
  font-size: 12px;
  color: rgba(232,224,204,0.4);
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.05em;
}

.qv-variants { margin: 16px 0; display: flex; flex-direction: column; gap: 14px; }
.qv-variant-group {}
.qv-variant-label { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.12em; color: rgba(232,224,204,0.45); margin-bottom: 8px; }
.qv-variant-label span { color: var(--gold); }
.qv-variant-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.qv-variant-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.qv-variant-btn:hover { border-color: rgba(255,255,255,0.4); }
.qv-variant-btn.active { border-color: var(--gold); background: rgba(212,160,23,0.1); color: var(--gold); }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.03em;
  text-align: left;
}
.faq-q:hover { color: var(--gold); }
.faq-chevron {
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-q.open .faq-chevron { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-bottom: 20px;
}
.faq-a p {
  color: rgba(232,224,204,0.7);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}
.faq-a.open { display: block; }

.guides-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-item {
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-left: 3px solid var(--gold);
}

.guide-item h3 {
  font-size: 17px;
  color: var(--cream);
}

/* ADMIN PAGE */
.admin-section {
  background: var(--charcoal);
  min-height: 100vh;
  padding: 100px 0 60px;
}

.admin-login {
  max-width: 420px;
  margin: 0 auto;
  background: var(--navy);
  padding: 48px 40px;
  border-top: 4px solid var(--gold);
  text-align: center;
}

.admin-login h2 {
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 8px;
}

.admin-login p {
  color: rgba(232,224,204,0.55);
  font-size: 14px;
  margin-bottom: 28px;
}

.admin-content {
  display: none;
}

.admin-content.active {
  display: block;
}

.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.admin-tab {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--navy);
  color: rgba(232,224,204,0.6);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.admin-tab.active {
  background: var(--gold);
  color: var(--charcoal);
}

.stat-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(232,224,204,0.4);
  margin-bottom: 8px;
}
.stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--cream);
  line-height: 1;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-form {
  background: var(--navy);
  padding: 32px;
  margin-bottom: 32px;
}

.admin-form h3 {
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-table-wrap {
  background: var(--navy);
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}

.admin-table td {
  padding: 14px 16px;
  color: rgba(232,224,204,0.75);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
}

.admin-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.status-active {
  background: rgba(74,139,140,0.2);
  color: var(--teal);
}

.status-cancelled {
  background: rgba(231,76,60,0.15);
  color: #e74c3c;
}

.btn-danger {
  background: none;
  border: 1px solid rgba(231,76,60,0.4);
  color: #e74c3c;
  padding: 6px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-danger:hover {
  background: rgba(231,76,60,0.1);
}

/* SUCCESS PAGE */
.success-section {
  background: var(--charcoal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  text-align: center;
}

.success-card {
  max-width: 560px;
  margin: 0 auto;
}

.success-icon {
  font-size: 72px;
  margin-bottom: 24px;
}

.success-card h1 {
  font-size: clamp(36px, 6vw, 56px);
  color: var(--gold);
  margin-bottom: 16px;
}

.success-card p {
  font-size: 18px;
  color: rgba(232,224,204,0.7);
  margin-bottom: 12px;
  line-height: 1.7;
}

.review-prompt-card {
  max-width: 560px;
  width: 100%;
  margin: 40px auto 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.2);
  padding: 36px;
  text-align: left;
}
.review-prompt-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.review-prompt-card h3 {
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
}
.review-prompt-card p {
  font-size: 14px;
  color: rgba(232,224,204,0.6);
  margin-bottom: 20px;
}
.review-form-stars {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
}
.rstar {
  font-size: 32px;
  color: rgba(212,160,23,0.25);
  cursor: pointer;
  transition: color 0.15s;
  line-height: 1;
}
.rstar:hover,
.rstar.active {
  color: var(--gold);
}
.review-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.review-prompt-card input,
.review-prompt-card textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 12px;
  box-sizing: border-box;
}
.review-prompt-card input::placeholder,
.review-prompt-card textarea::placeholder {
  color: rgba(232,224,204,0.35);
}
.review-prompt-card input:focus,
.review-prompt-card textarea:focus {
  outline: none;
  border-color: rgba(212,160,23,0.4);
}
@media (max-width: 600px) {
  .review-form-row { grid-template-columns: 1fr; }
  .review-prompt-card { padding: 24px 20px; }
}

/* ADMIN REVIEW CARDS */
.admin-review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  margin-bottom: 12px;
}
.admin-review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.admin-review-meta {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.admin-review-meta span {
  color: rgba(232,224,204,0.4);
  font-family: sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0;
  margin-left: 8px;
}
.admin-review-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.admin-review-body {
  font-size: 14px;
  color: rgba(232,224,204,0.7);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}
.admin-review-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.admin-review-actions button {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border: 1px solid;
  cursor: pointer;
  background: transparent;
  transition: all 0.15s;
}
.btn-approve {
  border-color: var(--teal);
  color: var(--teal);
}
.btn-approve:hover { background: var(--teal); color: var(--charcoal); }
.btn-unpublish {
  border-color: rgba(232,224,204,0.3);
  color: rgba(232,224,204,0.5);
}
.btn-unpublish:hover { background: rgba(232,224,204,0.1); }
.btn-delete-review {
  border-color: rgba(231,76,60,0.4);
  color: rgba(231,76,60,0.7);
}
.btn-delete-review:hover { background: rgba(231,76,60,0.15); }

/* ALERT */
.alert {
  padding: 14px 20px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
}

.alert.show {
  display: block;
}

.alert-success {
  background: rgba(74,139,140,0.15);
  border: 1px solid var(--teal);
  color: #6bc0c1;
}

.alert-error {
  background: rgba(231,76,60,0.1);
  border: 1px solid #e74c3c;
  color: #e74c3c;
}

/* LOADING */
.loading-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-wrap {
  text-align: center;
  padding: 40px;
  color: rgba(232,224,204,0.4);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .products-grid,
  .shop-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo-img {
    height: 52px;
  }

  section {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero-content {
    padding: 60px 20px;
  }

  .hero-overlay {
    background: rgba(26,46,59,0.85);
  }

  .page-header {
    padding: 100px 20px 48px;
  }

  .icons-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .icon-item {
    padding: 16px 16px;
    width: 100%;
    justify-content: flex-start;
    border-left: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .icon-item + .icon-item {
    border-left: none;
  }

  .products-grid,
  .shop-products-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-inner {
    grid-template-columns: 1fr;
  }

  .lifestyle-text {
    padding: 40px 24px;
  }

  .lifestyle-images {
    height: 400px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .join-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tier-grid {
    grid-template-columns: 1fr !important;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .mc-feature-grid {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    gap: 4px;
  }

  .admin-tab {
    font-size: 12px;
    padding: 8px 14px;
  }

  .admin-form {
    padding: 24px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    text-align: center;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .icons-strip-inner {
    grid-template-columns: 1fr;
  }

  .membership-price-tag {
    font-size: 52px;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 48px);
  }

  .members-login,
  .admin-login {
    padding: 32px 20px;
    margin: 0 16px;
  }
}

/* Email Capture Popup */
.email-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.email-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.email-popup {
  background: var(--navy);
  border: 1px solid rgba(212,160,23,0.3);
  max-width: 460px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: center;
}
.email-popup-overlay.show .email-popup {
  transform: translateY(0);
}
.email-popup-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(232,224,204,0.4);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}
.email-popup-close:hover {
  color: var(--cream);
}
.email-popup h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.email-popup p {
  color: rgba(232,224,204,0.7);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}
.email-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.email-popup-form input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--cream);
  padding: 14px 16px;
  font-size: 15px;
  width: 100%;
  font-family: 'Inter', sans-serif;
}
.email-popup-form input::placeholder { color: rgba(232,224,204,0.35); }
.email-popup-skip {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(232,224,204,0.3);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}
.email-popup-skip:hover { color: rgba(232,224,204,0.6); }

/* Spot Lookup */
/* Spot Lookup — full redesign */
.spot-map-wrap {
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.spot-float-search {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 58px;
  z-index: 1000;
  display: flex;
  background: rgba(8, 18, 26, 0.93);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.spot-float-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  min-width: 0;
}
.spot-float-search input::placeholder { color: rgba(232,224,204,0.28); }
.spot-search-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.07em;
  padding: 11px 16px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.spot-loc-btn {
  background: rgba(255,255,255,0.05);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  color: var(--cream);
  padding: 11px 12px;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}
.spot-float-layers {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spot-float-layers button {
  width: 40px;
  height: 40px;
  background: rgba(8, 18, 26, 0.93);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  cursor: pointer;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.spot-float-layers button.active {
  border-color: var(--gold);
  background: rgba(212,160,23,0.18);
}
#spot-map {
  width: 100%;
  height: 560px;
  display: block;
}
#spot-pin-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(8, 18, 26, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(232,224,204,0.6);
  font-size: 11px;
  padding: 7px 16px;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
  pointer-events: none;
}
#spot-results {
  display: none;
  padding-top: 28px;
  border-top: 2px solid var(--gold);
}
#spot-results.active { display: block; }
#spot-location-name {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.spot-weather-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.spot-weather-main {
  background: var(--navy);
  padding: 24px 28px;
  border-left: 3px solid var(--teal);
  min-width: 150px;
}
.spot-temp {
  font-family: 'Oswald', sans-serif;
  font-size: 56px;
  color: var(--cream);
  line-height: 1;
}
.spot-condition {
  font-size: 14px;
  color: rgba(232,224,204,0.6);
  margin-top: 6px;
  text-transform: capitalize;
}
.spot-weather-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  flex: 1;
  min-width: 240px;
}
.spot-stat {
  background: var(--navy);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.spot-stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(232,224,204,0.3);
}
.spot-stat-val {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--cream);
}
.spot-section { margin-bottom: 24px; }
.spot-section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(232,224,204,0.35);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tide-chart { display: flex; flex-direction: column; gap: 2px; }
.tide-row {
  display: grid;
  grid-template-columns: 72px 1fr 64px 54px;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.tide-type { font-family: 'Oswald', sans-serif; font-size: 11px; letter-spacing: 0.06em; }
.tide-bar-wrap { background: rgba(255,255,255,0.05); height: 5px; border-radius: 3px; overflow: hidden; }
.tide-bar { height: 100%; border-radius: 3px; }
.tide-time { color: rgba(232,224,204,0.45); text-align: right; }
.tide-height { color: var(--cream); font-family: 'Oswald', sans-serif; text-align: right; }
.tide-high { color: var(--teal); }
.tide-low { color: rgba(232,224,204,0.4); }
.species-tag {
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.22);
  color: var(--cream);
  padding: 5px 12px;
  font-size: 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
}

/* Fishing score card */
.fishing-score-card {
  background: var(--navy);
  border-left: 4px solid var(--gold);
  padding: 24px 28px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 16px 28px;
  align-items: center;
}
.fishing-score-left { grid-row: 1 / 3; }
.fishing-score-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(232,224,204,0.35);
  margin-bottom: 6px;
}
.fishing-score-num {
  font-family: 'Oswald', sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 400;
}
.fishing-score-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.fishing-score-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
  align-self: center;
}
.fishing-score-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}
.fishing-score-factors {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.score-factor {
  font-size: 13px;
  color: rgba(232,224,204,0.6);
}

/* Solunar */
.solunar-chart { display: flex; flex-direction: column; gap: 4px; }
.solunar-row {
  display: grid;
  grid-template-columns: 90px 130px 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}
.solunar-type {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.solunar-major { color: var(--gold); }
.solunar-minor { color: rgba(232,224,204,0.45); }
.solunar-window {
  font-family: 'Oswald', sans-serif;
  color: var(--cream);
  font-size: 14px;
}
.solunar-label { color: rgba(232,224,204,0.45); }

/* ============================================================
   PREMIUM FEATURES
   ============================================================ */

/* MARQUEE TICKER */
.marquee-wrap {
  background: var(--gold);
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 28s linear infinite;
}
.marquee-track span {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-right: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* STATS STRIP */
.stats-strip {
  background: var(--navy);
  border-top: 1px solid rgba(212,160,23,0.15);
  border-bottom: 1px solid rgba(212,160,23,0.15);
  padding: 52px 20px;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(232,224,204,0.4);
  margin-top: 8px;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stats-inner { gap: 36px; }
}

/* INGREDIENTS CALLOUT */
.ingredients-section {
  background: var(--charcoal);
  padding: 80px 0;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.ingredient-card {
  background: var(--navy);
  border: 1px solid rgba(74,139,140,0.15);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ingredient-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ingredient-card:hover { transform: translateY(-4px); border-color: rgba(74,139,140,0.35); }
.ingredient-card:hover::before { transform: scaleX(1); }
.ingredient-icon {
  font-size: 52px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}
.ingredient-card h3 {
  font-size: 17px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}
.ingredient-card p {
  font-size: 15px;
  color: rgba(232,224,204,0.6);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .ingredients-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* SOCIAL PROOF TOASTS */
.toast-container {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.social-toast {
  background: var(--navy);
  border: 1px solid rgba(212,160,23,0.25);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 290px;
  animation: toast-in 0.4s ease forwards;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5);
}
.social-toast.toast-out {
  animation: toast-out 0.4s ease forwards;
}
.toast-emoji {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.toast-body { flex: 1; min-width: 0; }
.toast-name {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  color: var(--cream);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toast-action {
  font-size: 12px;
  color: rgba(232,224,204,0.5);
  margin-top: 2px;
}
.toast-time {
  font-size: 11px;
  color: rgba(212,160,23,0.65);
  flex-shrink: 0;
  font-family: 'Oswald', sans-serif;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes toast-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-24px); }
}
@media (max-width: 480px) {
  .toast-container { display: none; }
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  border: 1px solid rgba(212,160,23,0.3);
  padding: 12px 14px 12px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-cta-text {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(232,224,204,0.65);
  white-space: nowrap;
}
.sticky-cta .btn {
  font-size: 13px;
  padding: 10px 20px;
  white-space: nowrap;
}
.sticky-cta-close {
  background: none;
  border: none;
  color: rgba(232,224,204,0.3);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 4px;
  transition: color 0.2s;
}
.sticky-cta-close:hover { color: var(--cream); }
@media (max-width: 480px) {
  .sticky-cta-text { display: none; }
  .sticky-cta { padding: 10px 12px; bottom: 16px; right: 16px; }
}

/* EXIT INTENT POPUP */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(5px);
}
.exit-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}
.exit-popup {
  background: var(--navy);
  border: 1px solid rgba(212,160,23,0.3);
  padding: 48px 40px 40px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.92) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.exit-popup-overlay.show .exit-popup {
  transform: scale(1) translateY(0);
}
.exit-popup-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: rgba(232,224,204,0.35);
  font-size: 24px;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.exit-popup-close:hover { color: var(--cream); }
.exit-popup-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--charcoal);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.exit-popup h3 {
  font-size: clamp(26px, 4vw, 34px);
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.1;
}
.exit-popup p {
  color: rgba(232,224,204,0.6);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.exit-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.exit-popup-form input[type="email"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 14px 16px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}
.exit-popup-form input[type="email"]:focus { border-color: var(--gold); }
.exit-popup-form .btn { width: 100%; text-align: center; }
.exit-popup-skip {
  background: none;
  border: none;
  color: rgba(232,224,204,0.3);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  display: block;
  margin: 0 auto;
  transition: color 0.2s;
}
.exit-popup-skip:hover { color: rgba(232,224,204,0.6); }

/* ── Spot Lookup ─────────────────────────────────────────────────────────── */
.spot-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-left: 3px solid var(--teal);
  padding: 32px;
}
.spot-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.spot-distance {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 8px;
}
.spot-name {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  color: var(--cream);
  margin: 0 0 6px;
}
.spot-region {
  font-size: 13px;
  color: rgba(232,224,204,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spot-coming-soon {
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.35);
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  white-space: nowrap;
}
.spot-overview {
  color: rgba(232,224,204,0.75);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.spot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.spot-block {
  background: rgba(255,255,255,0.04);
  padding: 16px 18px;
}
.spot-block-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(232,224,204,0.35);
  margin-bottom: 8px;
}
.spot-block-value {
  color: var(--cream);
  font-size: 14px;
  line-height: 1.5;
}
.spot-species-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spot-tag {
  background: rgba(74,139,140,0.18);
  border: 1px solid rgba(74,139,140,0.3);
  color: var(--teal);
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 10px;
}

/* ── Premium polish additions ─────────────────────────────────────────────── */

/* Cart icon pulse on add */
@keyframes cart-pulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.35); }
  60%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}
.nav-cart.pulse { animation: cart-pulse 0.45s cubic-bezier(0.36,0.07,0.19,0.97); }

/* Add to cart button - ripple effect */
.btn-add-cart {
  position: relative;
  overflow: hidden;
}
.btn-add-cart::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-add-cart:hover::after { transform: translateX(100%); }

/* Page load fade */
body { animation: page-in 0.35s ease both; }
@keyframes page-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Checkout button glow */
.btn-checkout:hover {
  background: #e8b41f;
  box-shadow: 0 0 24px rgba(212,160,23,0.3);
}

/* Review card gold border on hover */
.review-card:hover {
  border-color: rgba(212,160,23,0.25);
}

/* Ingredient card hover lift */
.ingredient-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

/* Feature card pop */
.feature-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}
.feature-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4) !important;
  border-color: rgba(212,160,23,0.4) !important;
}

/* FAQ hover */
.faq-q:hover { color: var(--gold); }

/* Join card subtle glow */
.join-card {
  transition: box-shadow 0.3s ease;
}
.join-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,160,23,0.2);
}

/* Marquee pause on hover */
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* Stat items lift */
.stat-item {
  transition: transform 0.2s ease;
}
.stat-item:hover { transform: translateY(-3px); }

/* Footer link hover */
.footer-nav ul li a {
  transition: color 0.2s, padding-left 0.2s;
}
.footer-nav ul li a:hover { padding-left: 6px; }

/* Smoother product stagger from JS */
.product-card { opacity: 0; transform: translateY(16px); }
.product-card.card-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Quick view scale on open */
#qv-modal { transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.34,1.2,0.64,1); }

/* Input placeholder */
input::placeholder, textarea::placeholder {
  transition: opacity 0.2s ease;
}
input:focus::placeholder, textarea:focus::placeholder {
  opacity: 0.4;
}

/* Gold shimmer on section labels */
.section-label {
  position: relative;
}
