/* ============================================
   WINNY'S CHRISTIAN ZONE — style.css
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE3;
  --ivory: #FFFDF8;
  --warm-white: #FEFCF8;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9E7A2E;
  --brown: #6B4F2B;
  --brown-light: #9C7A52;
  --dark: #1A1208;
  --dark-mid: #2D2010;
  --text: #3D2B1A;
  --text-light: #7A6150;
  --text-muted: #B09880;
  --purple: #5C3D7A;
  --purple-light: #8A6BAD;
  --border: rgba(201, 168, 76, 0.2);
  --border-strong: rgba(201, 168, 76, 0.4);
  --shadow-sm: 0 2px 12px rgba(42, 20, 5, 0.06);
  --shadow-md: 0 8px 32px rgba(42, 20, 5, 0.1);
  --shadow-lg: 0 20px 60px rgba(42, 20, 5, 0.15);
  --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-script: 'Sacramento', cursive;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--dark);
  color: #E8D5B5;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  height: 100%;
  width: max-content;
}

.announcement-content span { display: inline-flex; align-items: center; }
.announcement-icon { color: var(--gold); font-size: 10px; }
.announcement-content strong { color: var(--gold-light); letter-spacing: 0.12em; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SPLASH SCREEN
   ============================================ */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: all;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: splashLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes splashLogoIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.cross-icon {
  display: block;
  flex-shrink: 0;
  fill: currentColor;
}

.cross-icon.inline-cross {
  display: inline-block;
  vertical-align: -2px;
  width: 12px;
  height: 16px;
  margin-right: 4px;
}

.trust-strip-cross {
  display: inline-flex;
  vertical-align: middle;
  margin-right: 4px;
  color: var(--gold);
}
.trust-strip-cross .cross-icon {
  width: 12px;
  height: 16px;
}

.toast-icon .cross-icon {
  width: 13px;
  height: 17px;
  display: inline-block;
  vertical-align: -2px;
}

.splash-logo-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 2px 6px rgba(201, 168, 76, 0.35));
  flex-shrink: 0;
}

.splash-logo-cross .cross-icon {
  width: 25px;
  height: 33px;
}

.splash-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.splash-logo-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.splash-logo-sub {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 3px;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(250, 247, 242, 0.98);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  position: relative;
  gap: 20px;
}

/* Logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  transition: opacity var(--transition);
  white-space: nowrap;
}
.logo:hover { opacity: 0.8; }

.logo-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(201,168,76,0.3));
  flex-shrink: 0;
}

.logo-cross .cross-icon {
  width: 19px;
  height: 25px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Nav */
.nav-left { display: flex; align-items: center; gap: 32px; flex-shrink: 0; }
.nav-right { display: flex; align-items: center; gap: 32px; margin-left: auto; flex-shrink: 0; }

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--gold-dark); }
.nav-link:hover::after { width: 100%; }

/* Header Actions */
.header-actions { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  flex-shrink: 0; 
}

.icon-btn {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text);
  transition: all var(--transition);
  position: relative;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

.icon-btn:hover {
  color: var(--gold-dark);
  background: rgba(201, 168, 76, 0.1);
}

.auth-avatar-circle.auth-avatar-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gold, #C9A84C);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(28, 25, 23, 0.08);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
  background: #FFFFFF;
}

.icon-btn:hover .auth-avatar-circle.auth-avatar-btn {
  transform: scale(1.06);
  border-color: var(--gold-dark, #A8862A);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.35);
}

.auth-avatar-btn .auth-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.auth-avatar-btn.auth-avatar-default {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-dark, #A8862A);
}


.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform var(--transition);
}

.cart-count.bump { animation: bump 0.3s ease; }
@keyframes bump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu-btn:hover { background: rgba(201,168,76,0.1); }
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================
   DROPDOWN
   ============================================ */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
}

.dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.dropdown-col h4 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.dropdown-col a {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--text);
  padding: 6px 0;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

.dropdown-col a:hover {
  color: var(--gold-dark);
  padding-left: 8px;
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100vh;
  background: var(--ivory);
  z-index: 2000;
  padding: 80px 32px 40px;
  transition: left var(--transition-slow);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open { left: 0; }

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--text);
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
}
.mobile-nav-close:hover { background: rgba(201,168,76,0.1); color: var(--gold-dark); }

.mobile-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-logo .cross-icon {
  width: 16px;
  height: 21px;
  color: var(--gold);
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.mobile-nav-link:hover { color: var(--gold-dark); padding-left: 12px; }

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 18, 8, 0.97);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  transition: color var(--transition);
}
.search-close:hover { color: var(--gold); }

.search-inner {
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 40px;
}

.search-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(201,168,76,0.5);
  padding-bottom: 12px;
  gap: 12px;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.02em;
}
.search-input::placeholder { color: rgba(255,255,255,0.25); }

.search-submit {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  padding: 4px;
}
.search-submit:hover { color: var(--gold); }

.search-suggestions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.search-suggestions span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.search-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  letter-spacing: 0.05em;
}
.search-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid rgba(42,20,5,0.3);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 95vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 18, 8, 0.72) 0%,
    rgba(26, 18, 8, 0.4) 50%,
    rgba(26, 18, 8, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 0 80px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.hero-actions .btn {
  border-radius: 4px;
  padding: 13px 26px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-actions .btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  box-shadow: none;
}

.hero-actions .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.hero-actions .btn-ghost {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-item svg {
  stroke: rgba(255, 255, 255, 0.85);
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.hero-trust-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.85);
}

.hero-trust-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(to top, rgba(15, 12, 8, 0.45), transparent);
  backdrop-filter: blur(2px);
}

.hero-bottom-verse {
  font-family: var(--font-display);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
}

.hero-bottom-verse em {
  font-style: italic;
  font-weight: 400;
}

.hero-bottom-ref {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold-light);
  margin-left: 8px;
  letter-spacing: 0.04em;
}

.hero-bottom-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition);
}

.hero-bottom-scroll:hover {
  color: var(--gold-light);
}

.hero-scroll-arrow {
  font-size: 13px;
  display: inline-block;
  transition: transform var(--transition);
  animation: arrowBounce 2s infinite ease-in-out;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.hero-scroll-vbar {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
  font-weight: 300;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  background: var(--dark);
  overflow: hidden;
  height: 60px;
  display: flex;
  align-items: center;
}

.marquee-track {
  width: 100%;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeSlide 40s linear infinite;
}

.marquee-content span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: rgba(232, 213, 181, 0.75);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   SECTION HEADERS (shared)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   COLLECTIONS
   ============================================ */
.collections {
  padding: 100px 0;
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 460px 300px;
  gap: 20px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.collection-card.large {
  grid-row: 1 / 3;
  grid-column: 1;
}

/* Last card (Gift Sets) spans both remaining columns to fill the gap */
.collections-grid .collection-card:last-child {
  grid-column: 2 / 4;
}

.collection-image-wrap {
  position: absolute;
  inset: 0;
}

.collection-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.collection-card:hover .collection-image {
  transform: scale(1.06);
}

.collection-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home-decor {
  background: linear-gradient(135deg, #C9A84C22, #8B6914aa, #C9A84C44);
  background-color: #8B6B30;
}

.gifts {
  background: linear-gradient(135deg, #5C3D7A22, #8A6BADaa, #5C3D7A44);
  background-color: #6B4F8A;
}

.placeholder-icon {
  font-size: 64px;
  opacity: 0.5;
}

.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 10, 2, 0.78) 0%,
    rgba(20, 10, 2, 0.3) 40%,
    rgba(20, 10, 2, 0.05) 70%,
    transparent 100%
  );
  transition: background var(--transition);
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(
    to top,
    rgba(20, 10, 2, 0.85) 0%,
    rgba(20, 10, 2, 0.4) 40%,
    rgba(20, 10, 2, 0.1) 70%,
    transparent 100%
  );
}

.collection-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.collection-tag {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.collection-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
}

.collection-card.large .collection-name { font-size: 40px; }

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.collection-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
  gap: 16px;
}

.collection-link span { transition: transform var(--transition); }
.collection-link:hover span { transform: translateX(4px); }

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
  padding: 100px 0;
  background: var(--warm-white);
}

/* Tabs */
.tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: all var(--transition);
}

.tab-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.tab-btn.active {
  background: var(--dark);
  color: var(--gold-light);
  border-color: var(--dark);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.product-badge.new { background: var(--purple); color: white; }
.product-badge.sale { background: #C0392B; color: white; }

.product-quick-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(26, 18, 8, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  border: 1px solid rgba(201,168,76,0.3);
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-quick-add:hover { background: var(--gold); color: var(--dark); }

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition);
}

.product-card:hover .product-wishlist { opacity: 1; transform: scale(1); }
.product-wishlist:hover { background: white; transform: scale(1.1) !important; }
.product-wishlist.liked { opacity: 1; color: #E74C3C; }

.product-info {
  padding: 18px 20px 20px;
}

.product-category {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 6px;
}

.product-desc {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 9px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.product-stars {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
}

.product-rating-count {
  font-size: 11px;
  color: var(--text-muted);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.product-price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-return-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: #1a6b44;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.product-return-badge .return-icon {
  width: 11px;
  height: 11px;
  color: #2e7d32;
  flex-shrink: 0;
}

.cart-return-pill {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 10.5px;
  font-weight: 500;
  color: #1a6b44;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  padding: 1px 6px;
  border-radius: 3px;
}

.section-cta { text-align: center; }

/* ============================================
   SCRIPTURE BANNER
   ============================================ */
.scripture-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 50%, #2C1A05 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.scripture-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 208px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 26' fill='%23C9A84C' opacity='0.04' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 1C8.5 0.45 8.95 0 9.5 0H10.5C11.05 0 11.5 0.45 11.5 1V7H17.5C18.05 7 18.5 7.45 18.5 8V9C18.5 9.55 18.05 10 17.5 10H11.5V25C11.5 25.55 11.05 26 10.5 26H9.5C8.95 26 8.5 25.55 8.5 25V10H2.5C1.95 10 1.5 9.55 1.5 9V8C1.5 7.45 1.95 7 2.5 7H8.5V1Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.scripture-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.scripture-cross .cross-icon {
  width: 32px;
  height: 42px;
}

.scripture-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: center;
  justify-content: center;
}

.scripture-decor-left, .scripture-decor-right {
  font-size: 28px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

.scripture-text-wrap { flex: 1; }

.scripture-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  margin-bottom: 16px;
}

.scripture-ref {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   WHY US / FEATURES
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: 100px 0;
  background: var(--cream-dark);
}

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

.about-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image-frame:hover .about-img { transform: scale(1.03); }

/* Decorative placeholder — replaces the about photo until a real one is added */
.about-img-placeholder {
  width: 100%;
  height: 540px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #2D1A08 0%, #4A2C0F 35%, #6B4423 65%, #3D2010 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,168,76,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.about-img-placeholder::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 286px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 26' fill='%23C9A84C' opacity='0.04' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.5 1C8.5 0.45 8.95 0 9.5 0H10.5C11.05 0 11.5 0.45 11.5 1V7H17.5C18.05 7 18.5 7.45 18.5 8V9C18.5 9.55 18.05 10 17.5 10H11.5V25C11.5 25.55 11.05 26 10.5 26H9.5C8.95 26 8.5 25.55 8.5 25V10H2.5C1.95 10 1.5 9.55 1.5 9V8C1.5 7.45 1.95 7 2.5 7H8.5V1Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.about-placeholder-cross {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.about-placeholder-cross .cross-icon {
  width: 44px;
  height: 57px;
  color: var(--gold);
  filter: drop-shadow(0 4px 12px rgba(201,168,76,0.4));
}

.badge-cross {
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-cross .cross-icon {
  width: 16px;
  height: 21px;
  color: var(--dark);
}

.collections-empty-icon {
  display: flex;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.collections-empty-icon .cross-icon {
  width: 32px;
  height: 42px;
}

.about-placeholder-name {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.about-placeholder-verse {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: rgba(201,168,76,0.8);
  line-height: 1.7;
  max-width: 300px;
  border-top: 1px solid rgba(201,168,76,0.25);
  padding-top: 16px;
  position: relative;
  z-index: 1;
}

.about-placeholder-verse em {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
  font-style: normal;
  display: block;
  margin-top: 6px;
}


.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  border-radius: var(--radius-full);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  gap: 4px;
}

.badge-cross {
  font-size: 24px;
  color: var(--dark);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  line-height: 1.3;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about-body {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--brown-light);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 28px 0 36px;
  background: rgba(201, 168, 76, 0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: 1.6;
}

.about-quote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-style: normal;
  margin-top: 10px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--dark);
  overflow: hidden;
}

.testimonials .section-title { color: white; }

.testimonials-slider {
  position: relative;
  height: 280px;
  margin-bottom: 60px;
  /* overflow:visible so side cards peek out; section clips at boundaries */
  overflow: visible;
}

.testimonials-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 90vw);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  padding: 36px;
  backdrop-filter: blur(10px);
  /* Default: invisible centre */
  transform: translate(-50%, -50%) scale(0.65);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  cursor: default;
  transition:
    transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity   0.65s ease,
    box-shadow 0.65s ease,
    filter    0.65s ease;
}

/* ── Active card — centred, full size, glowing ── */
.testimonial-card.is-active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  pointer-events: all;
  box-shadow:
    0 8px 40px rgba(0,0,0,0.55),
    0 0 0 1px rgba(201,168,76,0.35);
  border-color: rgba(201,168,76,0.45);
  filter: brightness(1);
}

/* ── Previous card — behind and to the left ── */
.testimonial-card.is-prev {
  transform: translate(calc(-50% - 520px), -50%) scale(0.82);
  opacity: 0.55;
  z-index: 2;
  filter: brightness(0.55);
  pointer-events: all;
  cursor: pointer;
}

/* ── Next card — behind and to the right ── */
.testimonial-card.is-next {
  transform: translate(calc(-50% + 520px), -50%) scale(0.82);
  opacity: 0.55;
  z-index: 2;
  filter: brightness(0.55);
  pointer-events: all;
  cursor: pointer;
}

/* ── All other cards — completely hidden ── */
.testimonial-card.is-hidden {
  transform: translate(-50%, -50%) scale(0.65);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}


.stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-info strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: white;
}

.author-info span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: all var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social-section {
  padding: 100px 0;
  background: var(--warm-white);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

.social-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  animation: fadeInUp 0.6s ease both;
  animation-delay: var(--delay);
}

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

.social-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.social-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.social-item:hover .social-image { transform: scale(1.08); }

.social-hover {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.social-item:hover .social-hover { opacity: 1; }

.social-hover span {
  color: white;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.social-follow { text-align: center; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  background: linear-gradient(135deg, var(--cream-dark) 0%, #E8D5B5 50%, var(--cream-dark) 100%);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner { position: relative; max-width: 560px; margin: 0 auto; }

.newsletter-decor {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 16px;
  margin-bottom: 24px;
  opacity: 0.6;
}

.newsletter-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.newsletter-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 36px;
}

.newsletter-input-wrap {
  display: flex;
  background: white;
  border-radius: var(--radius-full);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  margin-bottom: 16px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: transparent;
}
.newsletter-input::placeholder { color: var(--text-muted); }

.newsletter-btn {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  margin: 4px;
}
.newsletter-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.newsletter-note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.newsletter-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
}

.newsletter-success.show { display: flex; }

.success-icon {
  font-size: 32px;
  color: var(--gold);
}

.newsletter-success p {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--dark);
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  text-decoration: none;
  transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 0.85; }

.footer-logo-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.footer-logo-cross .cross-icon {
  width: 22px;
  height: 29px;
}

.footer-logo-vbar {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.footer-logo-texts {
  display: flex;
  flex-direction: column;
}

.footer-logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: white;
  line-height: 1.1;
}

.footer-logo-sub {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 3px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 320px;
}

.footer-script {
  font-family: 'Sacramento', cursive;
  font-size: 32px;
  line-height: 1.25;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.footer-script-rule {
  width: 38px;
  height: 1px;
  background: rgba(201, 168, 76, 0.45);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  width: 100%;
}

.footer-link {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 0;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--gold);
  color: var(--gold);
}

.footer-contact-item a,
.footer-contact-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1;
  transition: color var(--transition);
}

.footer-contact-item a:hover,
.footer-contact-link:hover {
  color: var(--gold);
}

.footer-contact-item span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-family: var(--font-display);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-hr {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0 18px;
}

.footer-verse-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-verse-mark {
  font-family: var(--font-display), Georgia, serif;
  font-size: 42px;
  line-height: 0.85;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
  display: block;
}

.footer-verse-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin: 0;
}

.footer-verse-ref {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: block;
}

.footer-bottom {
  padding: 26px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-heart {
  color: var(--gold);
  display: inline-block;
  margin: 0 2px;
}

.footer-motto {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.footer-vdivider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.footer-shopping-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-shopping-note {
  font-family: 'Sacramento', cursive;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.1;
  margin: 0;
  white-space: nowrap;
}

.footer-shopping-line {
  width: 32px;
  height: 1px;
  background: rgba(201, 168, 76, 0.5);
  margin-top: 4px;
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  height: 100vh;
  background: var(--ivory);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-lg);
}

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

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

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
}

.cart-header h3 span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
}

.cart-close {
  font-size: 20px;
  color: var(--text-muted);
  padding: 6px;
  border-radius: 50%;
  transition: all var(--transition);
}
.cart-close:hover { color: var(--dark); background: var(--cream); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-empty-icon { font-size: 56px; margin-bottom: 16px; }

.cart-empty p {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
}

.cart-empty span { font-size: 14px; color: var(--text-muted); }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--cream);
}

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

.cart-item-name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--dark);
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

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

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--transition);
}
.qty-btn:hover { border-color: var(--gold); color: var(--gold-dark); }

.qty-num {
  font-size: 14px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  font-size: 18px;
  color: var(--text-muted);
  transition: color var(--transition);
  align-self: flex-start;
  padding: 4px;
}
.cart-item-remove:hover { color: #C0392B; }

.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
  background: var(--ivory);
}

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

.cart-total span {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
}

.cart-shipping-note {
  font-size: 12px;
  color: var(--gold-dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.cart-checkout-btn { width: 100%; padding: 16px; font-size: 13px; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2499;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.cart-overlay.open { opacity: 1; visibility: visible; }

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--dark);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5000;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201,168,76,0.3);
  letter-spacing: 0.02em;
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--gold); font-size: 12px; }

/* ============================================
   RESPONSIVE & DEVICE ADAPTIVE SYSTEM
   ============================================ */

/* ---------- Mobile & Touch Runtime Enhancements ---------- */
html.has-touch {
  -webkit-tap-highlight-color: transparent;
}

html.is-mobile body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Touch-optimized button and link active feedback */
html.has-touch .btn:active,
html.has-touch .icon-btn:active,
html.has-touch .tab-btn:active {
  transform: scale(0.97);
}

/* On mobile/touch devices, ensure Quick Add is always visible and tap-ready */
html.has-touch .product-quick-add,
html.is-mobile .product-quick-add {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ---------- Large Tablets / Small Laptops (<= 1100px) ---------- */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* ---------- Tablets & Small Screens (<= 900px) ---------- */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .header-inner {
    padding: 0 20px;
    justify-content: flex-start;
  }
  .nav-left, .nav-right { display: none; }
  .mobile-menu-btn { display: flex; }
  .logo {
    left: 50%;
    transform: translateX(-50%);
  }
  .header-actions {
    margin-left: auto;
    gap: 6px;
  }
  
  .collections-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .collection-card.large { grid-row: auto; grid-column: auto; }
  .collections-grid .collection-card:last-child { grid-column: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-frame { max-width: 500px; margin: 0 auto; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-bottom-bar { padding: 16px 24px; }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cart-summary-card {
    position: static;
  }
}

/* ---------- Standard Mobile Screens (<= 768px) ---------- */
@media (max-width: 768px) {
  /* Testimonials Card Deck — Containment & Touch Flow */
  .testimonials-slider {
    overflow: hidden;
    height: 440px;
    margin-bottom: 36px;
  }
  .testimonials-track {
    width: 100%;
    height: 100%;
  }
  .testimonial-card {
    width: calc(100vw - 44px);
    max-width: 440px;
    padding: 26px 20px;
  }
  .testimonial-card.is-prev {
    transform: translate(calc(-50% - 105%), -50%) scale(0.85);
    opacity: 0;
    pointer-events: none;
  }
  .testimonial-card.is-next {
    transform: translate(calc(-50% + 105%), -50%) scale(0.85);
    opacity: 0;
    pointer-events: none;
  }
  .testimonial-text {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  /* Filter Tabs — Smooth horizontal touch pill bar */
  .tabs {
    display: flex;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 8px 12px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
    margin-bottom: 28px;
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 9px 16px;
    font-size: 11px;
  }

  /* Collections Toolbar */
  .collections-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .collections-search-box {
    max-width: 100%;
  }
  .collections-sort-group {
    justify-content: space-between;
    margin-left: 0;
    width: 100%;
  }
}

/* ---------- Compact Mobile Devices (<= 640px) ---------- */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  /* Hero Section */
  .hero {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }
  .hero-content {
    padding: 95px 16px 36px;
    max-width: 100%;
    margin: auto 0;
  }
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: clamp(34px, 9vw, 46px);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
  }
  .hero-trust {
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
    font-size: 11.5px;
  }
  .hero-trust-divider { display: none; }
  .hero-bottom-bar {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
    background: rgba(26, 18, 8, 0.7);
  }
  .hero-bottom-verse { font-size: 13px; line-height: 1.4; }
  .hero-bottom-scroll { display: none; }

  /* Collections Grid */
  .collections-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }
  .collection-card,
  .collection-card.large,
  .collections-grid .collection-card:last-child {
    grid-row: auto;
    grid-column: auto;
    height: 240px;
  }
  .collection-content {
    padding: 20px 18px;
  }
  .collection-name,
  .collection-card.large .collection-name {
    font-size: 24px;
    margin-bottom: 8px;
  }

  /* Products Grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 36px;
  }
  .product-card {
    border-radius: 8px;
  }
  .product-title,
  .product-name {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .product-desc {
    font-size: 11px;
    line-height: 1.35;
    margin-bottom: 6px;
  }
  .product-price-row {
    flex-wrap: wrap;
    gap: 4px 6px;
  }
  .product-price {
    font-size: 13.5px;
  }
  .product-return-badge {
    font-size: 9.5px;
    padding: 2px 5px;
    gap: 3px;
  }
  .product-return-badge .return-icon {
    width: 9.5px;
    height: 9.5px;
  }
  .product-quick-add {
    opacity: 1;
    transform: translateY(0);
    padding: 9px 4px;
    font-size: 9.5px;
    bottom: 8px;
    left: 8px;
    right: 8px;
  }
  .product-wishlist {
    width: 30px;
    height: 30px;
    top: 8px;
    right: 8px;
    font-size: 14px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-card {
    padding: 24px 20px;
  }

  /* About Section */
  .about-section {
    padding: 60px 0;
  }
  .about-img,
  .about-img-placeholder {
    height: clamp(260px, 65vw, 340px);
    border-radius: var(--radius-md);
  }
  .about-placeholder-name {
    font-size: 28px;
  }
  .about-placeholder-verse {
    font-size: 13px;
    padding-top: 10px;
  }
  .about-badge {
    right: 12px;
    bottom: -16px;
    width: 80px;
    height: 80px;
  }
  .badge-cross { font-size: 18px; }
  .badge-text { font-size: 8px; }

  /* Social Grid */
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Footer */
  .footer-top {
    padding: 60px 0 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-bottom-left { align-items: center; }
  .footer-bottom-right { flex-direction: column; gap: 14px; align-items: center; }
  .footer-vdivider { display: none; }
  .footer-shopping-wrap { align-items: center; }

  /* Newsletter & Scripture */
  .newsletter { padding: 60px 16px; }
  .newsletter-title { font-size: clamp(28px, 7vw, 36px); }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .newsletter-input {
    width: 100%;
    border-radius: var(--radius-full);
  }
  .newsletter-submit {
    width: 100%;
    border-radius: var(--radius-full);
  }
  .scripture-banner { padding: 50px 16px; }
  .scripture-banner-inner { flex-direction: column; gap: 16px; text-align: center; }
  .scripture-text { font-size: 18px; }

  /* Cart Page Responsive */
  .cart-page-section {
    padding: 24px 0 60px;
  }
  .cart-page-header {
    margin-bottom: 20px;
  }
  .cart-page-title {
    font-size: 28px;
  }
  .cart-table-header {
    display: none;
  }
  .cart-item-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px 14px;
    gap: 10px;
    position: relative;
  }
  .cart-product-cell {
    width: 100%;
    padding-right: 36px;
  }
  .cart-product-img {
    width: 58px;
    height: 58px;
  }
  .cart-product-title {
    font-size: 15.5px;
  }
  .cart-unit-price {
    font-size: 13px;
    color: var(--text-muted);
  }
  .cart-qty-stepper {
    margin-left: auto;
  }
  .cart-line-total {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-left: 10px;
  }
  .cart-remove-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 20px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cart-actions-bar {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .cart-actions-bar .btn-continue-shopping,
  .cart-actions-bar .btn-clear-cart {
    text-align: center;
    width: 100%;
    justify-content: center;
  }

  /* Checkout Modal */
  .checkout-modal {
    max-height: 94svh;
    border-radius: 12px;
  }
  .checkout-modal-body {
    padding: 18px 16px;
  }
  .checkout-form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------- Ultra-compact Phones (<= 480px) ---------- */
@media (max-width: 480px) {
  .header-inner {
    padding: 0 14px;
    height: 60px;
  }
  .logo {
    gap: 8px;
  }
  .logo-cross .cross-icon {
    width: 16px;
    height: 21px;
  }
  .logo-name {
    font-size: 17px;
  }
  .logo-sub {
    font-size: 8px;
    letter-spacing: 0.12em;
  }
  .icon-btn {
    width: 34px;
    height: 34px;
  }
  .icon-btn svg {
    width: 17px;
    height: 17px;
  }
  .cart-count {
    top: 2px;
    right: 2px;
    font-size: 8.5px;
    min-width: 14px;
    height: 14px;
  }
  .mobile-menu-btn {
    width: 34px;
    height: 34px;
  }
  .hero-title {
    font-size: 32px;
  }
  .products-grid {
    gap: 8px;
  }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   COLLECTIONS PAGE
   ============================================ */
.collections-hero {
  background: radial-gradient(circle at 50% 20%, #2e1c0d 0%, var(--dark) 75%);
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.collections-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumbs a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.breadcrumbs span {
  color: var(--gold-dark);
}

.breadcrumbs span:not(:last-child) {
  color: var(--text-muted);
}

/* Breadcrumbs in dark hero sections */
.collections-hero .breadcrumbs {
  color: var(--gold-light);
}

.collections-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
}

.collections-hero .breadcrumbs a:hover {
  color: var(--gold-light);
}

.collections-hero .breadcrumbs span {
  color: var(--gold-light);
}

.collections-hero .breadcrumbs span:not(:last-child) {
  color: rgba(255, 255, 255, 0.4);
}

.collections-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.collections-title em {
  font-style: italic;
  color: var(--gold-light);
}

.collections-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 24px;
}

.collections-trust-strip {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.collections-trust-strip span {
  color: var(--gold);
}

.collections-main {
  padding: 50px 0 90px;
  background: var(--bg);
}

.collections-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.collections-search-box {
  position: relative;
  min-width: 250px;
  flex: 1;
  max-width: 320px;
}

.collections-search-input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}

.collections-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}

.collections-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.collections-sort-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.collections-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.sort-select {
  padding: 9px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  background: white;
  color: var(--text);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition);
}

.sort-select:focus {
  border-color: var(--gold);
}

.collections-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}

.collections-empty-icon {
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 14px;
}

.collections-empty h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .collections-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .collections-search-box {
    max-width: 100%;
  }
  .collections-sort-group {
    justify-content: space-between;
    margin-left: 0;
  }
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page-section {
  padding: 50px 0 90px;
  background: var(--bg);
  min-height: 70vh;
}

.cart-page-header {
  margin-bottom: 28px;
}

.cart-page-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--dark);
  margin-top: 10px;
}

.cart-page-title span {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 400;
}

.cart-shipping-bar-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 32px;
}

.cart-shipping-text {
  font-size: 13.5px;
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-shipping-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.cart-shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}

.cart-table-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
  padding: 14px 20px;
  background: rgba(250, 247, 242, 0.7);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cart-item-row {
  display: grid;
  grid-template-columns: 3fr 1fr 1.2fr 1fr 40px;
  padding: 18px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.cart-item-row:last-child {
  border-bottom: none;
}

.cart-item-row:hover {
  background: rgba(250, 247, 242, 0.4);
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-product-img {
  width: 68px;
  height: 68px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-product-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-product-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}

.cart-product-title:hover {
  color: var(--gold-dark);
}

.cart-product-cat {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-unit-price {
  font-size: 14.5px;
  color: var(--text);
  font-weight: 500;
}

.cart-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  background: white;
  justify-self: center;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  transition: background var(--transition);
}

.cart-qty-btn:hover {
  background: var(--bg);
  color: var(--gold-dark);
}

.cart-qty-val {
  width: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}

.cart-line-total {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-dark);
  text-align: right;
}

.cart-remove-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-remove-btn:hover {
  color: #c94a4a;
}

.cart-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.btn-continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  transition: color var(--transition);
}

.btn-continue-shopping:hover {
  color: var(--gold-dark);
}

.btn-clear-cart {
  background: none;
  border: none;
  font-size: 12.5px;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  transition: color var(--transition);
}

.btn-clear-cart:hover {
  color: #c94a4a;
}

.cart-note-card {
  margin-top: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
}

.cart-note-card label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.cart-note-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  resize: vertical;
  min-height: 60px;
  outline: none;
}

.cart-note-input:focus {
  border-color: var(--gold);
}

.cart-summary-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 90px;
}

.cart-summary-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.cart-summary-row.total-row {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
  margin-bottom: 18px;
}

.cart-summary-row.total-row span:last-child {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--gold-dark);
}

.cart-promo-box {
  display: flex;
  gap: 8px;
  margin: 16px 0 6px;
}

.cart-promo-input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-size: 12.5px;
  text-transform: uppercase;
  outline: none;
}

.cart-promo-input:focus {
  border-color: var(--gold);
}

.btn-promo-apply {
  padding: 9px 16px;
  background: var(--dark);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}

.btn-promo-apply:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-checkout-page {
  width: 100%;
  padding: 14px;
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-checkout-page:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.2);
}

.cart-trust-badges {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.cart-trust-badges div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-trust-badges svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Empty cart view */
.cart-empty-state {
  text-align: center;
  padding: 80px 20px;
  max-width: 500px;
  margin: 0 auto;
}

.cart-empty-cross {
  display: flex;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.cart-empty-cross .cross-icon {
  width: 38px;
  height: 49px;
}

.cart-empty-title {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 12px;
}

.cart-empty-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Modal */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 12, 8, 0.75);
  backdrop-filter: blur(8px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.checkout-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.checkout-modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: modalScale 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalScale {
  from { transform: scale(0.93) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.checkout-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout-modal-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dark);
}

.checkout-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
}

.checkout-modal-body {
  padding: 24px;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.checkout-form-group.full {
  grid-column: 1 / -1;
}

.checkout-form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkout-form-group input,
.checkout-form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  font-size: 13px;
  outline: none;
  background: white;
}

.checkout-form-group input:focus {
  border-color: var(--gold);
}

.checkout-payment-opts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 20px;
}

.checkout-pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 13.5px;
}

.checkout-pay-option.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

/* ==============================================================================
   SUPABASE AUTH MODAL & USER POPOVER
   ============================================================================== */
.wcz-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcz-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.wcz-auth-dialog {
  background: var(--light, #FFFFFF);
  border: 1px solid var(--border-strong, #E2D9CC);
  border-radius: 16px;
  max-width: 440px;
  width: 100%;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wcz-modal-backdrop.active .wcz-auth-dialog {
  transform: translateY(0) scale(1);
}

.wcz-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: var(--text-muted, #7A7265);
  cursor: pointer;
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.wcz-modal-close:hover {
  color: var(--dark, #1C1917);
  background: rgba(0, 0, 0, 0.05);
}

.wcz-auth-header {
  text-align: center;
  margin-bottom: 24px;
}

.wcz-auth-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--gold, #C9A84C);
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  margin-bottom: 12px;
}

.wcz-auth-cross svg {
  width: 16px;
  height: 20px;
}

.wcz-auth-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--dark, #1C1917);
  margin-bottom: 6px;
}

.wcz-auth-subtitle {
  font-size: 13px;
  color: var(--text-muted, #7A7265);
  line-height: 1.45;
}

.wcz-btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border-strong, #E2D9CC);
  border-radius: 8px;
  background: #FFFFFF;
  color: #3C4043;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.wcz-btn-google:hover {
  background: #F8F9FA;
  border-color: #DADCE0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

.wcz-auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: var(--text-muted, #7A7265);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.wcz-auth-divider::before,
.wcz-auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border, #ECE5D8);
}

.wcz-auth-divider span {
  padding: 0 12px;
}

.wcz-auth-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.04);
  padding: 4px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.wcz-tab-btn {
  flex: 1;
  padding: 8px 12px;
  border: none;
  background: none;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted, #7A7265);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wcz-tab-btn.active {
  background: #FFFFFF;
  color: var(--dark, #1C1917);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.wcz-form-group {
  margin-bottom: 14px;
}

.wcz-form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark, #1C1917);
  margin-bottom: 5px;
}

.wcz-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wcz-forgot-link {
  font-size: 11.5px;
  color: var(--gold-dark, #A8862A);
  text-decoration: none;
}

.wcz-forgot-link:hover {
  text-decoration: underline;
}

.wcz-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-strong, #E2D9CC);
  border-radius: 6px;
  font-size: 13.5px;
  outline: none;
  background: #FAFAF8;
  transition: all 0.2s;
  color: var(--dark, #1C1917);
}

.wcz-input:focus {
  background: #FFFFFF;
  border-color: var(--gold, #C9A84C);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.wcz-btn-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--gold, #C9A84C) 0%, var(--gold-dark, #A8862A) 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.25);
  margin-top: 6px;
}

.wcz-btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

.wcz-auth-footer {
  margin-top: 18px;
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid var(--border, #ECE5D8);
}



/* ==============================================================================
   LUXURY USER PILL & BESPOKE CUSTOMER POPOVER
   ============================================================================== */

/* User Icon Button in Navigation Header (Strict Circle Only) */
#account-btn,
.icon-btn.has-user-avatar,
.icon-btn.has-user-pill {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.auth-user-pill {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.auth-user-name,
.auth-pill-chevron {
  display: none !important;
}

.auth-avatar-circle {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1.5px solid var(--gold, #C9A84C);
  background: #FFFFFF;
  overflow: hidden !important;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(28, 25, 23, 0.08);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-btn:hover .auth-avatar-circle {
  transform: scale(1.06);
  border-color: var(--gold-dark, #A8862A);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.35);
}

.auth-avatar-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  display: block !important;
}

.auth-avatar-txt {
  font-family: var(--font-display, serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark, #A8862A);
  line-height: 1;
}

/* Luxury Profile Popover Card */
.wcz-user-popover {
  position: absolute;
  width: 310px;
  max-width: calc(100vw - 28px);
  z-index: 10001;
  animation: luxuryPopoverIn 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top right;
}

@keyframes luxuryPopoverIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wcz-popover-card {
  background: #FAF8F5;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  box-shadow: 0 20px 48px -10px rgba(28, 25, 23, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

/* Hero / Profile Header */
.wcz-popover-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7F2 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.wcz-popover-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.wcz-popover-avatar-img,
.wcz-popover-avatar-txt {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold, #D4AF37);
  box-shadow: 0 3px 10px rgba(212, 175, 55, 0.22);
}

.wcz-popover-avatar-img {
  object-fit: cover;
}

.wcz-popover-avatar-txt {
  background: linear-gradient(135deg, #D4AF37 0%, #9F7817 100%);
  color: #FFFFFF;
  font-family: var(--font-display, serif);
  font-weight: 700;
  font-size: 20px;
}

.wcz-popover-badge-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 17px;
  height: 17px;
  background: #D4AF37;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FFFFFF;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.wcz-popover-profile-meta {
  flex: 1;
  min-width: 0;
}

.wcz-popover-name {
  font-family: var(--font-display, 'Cinzel', serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--dark, #1C1917);
  margin: 0 0 2px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wcz-popover-email {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted, #7A7265);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}

.wcz-popover-patron-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #8F6F16;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.28);
  padding: 1.5px 8px;
  border-radius: 9999px;
}

/* Assurance Strip */
.wcz-popover-assurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 175, 55, 0.06);
  border-bottom: 1px solid rgba(212, 175, 55, 0.12);
  font-size: 11px;
  font-weight: 500;
  color: #7A6946;
}

.wcz-assurance-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.wcz-assurance-item svg {
  color: var(--gold-dark, #A8862A);
  flex-shrink: 0;
}

.wcz-assurance-sep {
  color: rgba(212, 175, 55, 0.5);
  font-size: 12px;
}

/* Curated Menu Rows */
.wcz-popover-nav {
  padding: 8px 10px;
}

.wcz-popover-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--dark, #1C1917);
  transition: all 0.2s ease;
  cursor: pointer;
}

.wcz-popover-item:hover {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.04), 0 0 0 1px rgba(212, 175, 55, 0.18);
  transform: translateX(2px);
}

.wcz-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--gold-dark, #A8862A);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.wcz-popover-item:hover .wcz-item-icon {
  background: #FAF6ED;
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--gold, #D4AF37);
}

.wcz-item-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.wcz-item-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--dark, #1C1917);
  line-height: 1.3;
}

.wcz-item-sub {
  font-size: 10.5px;
  color: var(--text-muted, #7A7265);
  line-height: 1.2;
}

.wcz-item-arrow {
  color: #B3A898;
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.wcz-popover-item:hover .wcz-item-arrow {
  color: var(--gold-dark, #A8862A);
  transform: translateX(2px);
}

/* Refined Popover Footer */
.wcz-popover-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 14px 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  background: #F8F5EE;
}

.wcz-signout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #7A7265;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.wcz-signout-btn:hover {
  color: #9E2A2B;
  background: rgba(158, 42, 43, 0.08);
}
