/* ===================================================
   HALLOWED HEART — Master Stylesheet
   Premium Christian Streetwear
   Aged Manuscript × Premium Streetwear × Sacred Minimal
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,700;0,800;1,400;1,700;1,800&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --parchment:        #f5efe0;
  --parchment-alt:    #ede3cc;
  --parchment-deep:   #e4d8be;
  --cream:            #faf6ed;
  --brown-dark:       #3d2a0a;
  --brown-mid:        #7a4f1f;
  --brown-light:      #a06530;
  --gold:             #c8a050;
  --gold-light:       #d4b878;
  --gold-pale:        #e8d4a0;
  --ink:              #1a1208;
  --ink-light:        #2a1a0a;
  --shadow:           rgba(61, 42, 10, 0.12);
  --shadow-deep:      rgba(26, 18, 8, 0.28);

  --font-heading:     'Barlow Condensed', sans-serif;
  --font-body:        'Barlow Condensed', sans-serif;
  --transition:       0.3s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background-color: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ─── Grain Texture Overlay ─── */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--ink);
}
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-light);
  margin-bottom: 1.2em;
}
p:last-child { margin-bottom: 0; }

a { color: var(--brown-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
img { max-width: 100%; display: block; }
strong { font-weight: 700; }

/* ─── Entry Screen ─── */
.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.4s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23a)' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
.entry-screen.entry-exit {
  opacity: 0;
  pointer-events: none;
}
.entry-logo-wrap {
  text-align: center;
  opacity: 0;
  transform: scale(0.9) translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.entry-screen.entry-reveal .entry-logo-wrap {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.entry-logo {
  width: clamp(90px, 20vw, 140px);
  height: auto;
  margin: 0 auto 1.6rem;
  display: block;
}
.entry-wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
}
.entry-divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  justify-content: center;
  margin: 1rem 0 0.6rem;
  color: var(--gold);
}
.entry-divider::before, .entry-divider::after {
  content: '';
  width: 50px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.entry-divider::after { background: linear-gradient(to left, transparent, var(--gold)); }
.entry-verse {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--brown-mid);
  display: block;
  margin-top: 0.2rem;
  opacity: 0;
  transition: opacity 0.8s ease 0.7s;
}
.entry-screen.entry-reveal .entry-verse {
  opacity: 1;
}
.entry-ornament {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0;
  display: block;
  margin-top: 0.5rem;
  transition: opacity 0.6s ease 0.5s;
}
.entry-screen.entry-reveal .entry-ornament { opacity: 1; }

/* ─── Navigation ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--brown-dark);
  border-bottom: 2px solid var(--gold);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-sub {
  font-size: 0.48rem;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  font-weight: 400;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--parchment-alt);
  text-decoration: none;
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6px;
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--gold-light); }
.cart-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.58rem;
  width: 16px; height: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  letter-spacing: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 14px 34px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--parchment);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  line-height: 1;
}
.btn > span { position: relative; z-index: 1; }
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  transition: left 0.4s ease;
  z-index: 0;
}
.btn:hover::before { left: 0; }
.btn:hover { color: var(--ink) !important; border-color: var(--gold); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-gold::before { background: var(--ink); }
.btn-gold:hover { color: var(--parchment) !important; }

.btn-outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { color: var(--ink) !important; }

.btn-outline-light { background: transparent; border-color: var(--gold); color: var(--gold); }
.btn-outline-light::before { background: var(--gold); }
.btn-outline-light:hover { color: var(--ink) !important; }

/* ─── Ornamental Dividers ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0;
  color: var(--gold);
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-pale), transparent);
}
.divider-inner {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  padding: 0 0.5rem;
}
.divider-sm {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 2rem 0;
}
.divider-sm::before, .divider-sm::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold-pale);
}
.divider-sm span { font-size: 0.75rem; color: var(--gold); letter-spacing: 0.3em; }

/* ─── Sections ─── */
.section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 6rem 2rem; }
.section-bg { background-color: var(--parchment-alt); }
.section-dark {
  background-color: var(--brown-dark);
  color: var(--parchment);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--gold); }
.section-dark p, .section-dark li { color: var(--parchment); }
.section-dark .section-label { color: var(--gold-light); }
.section-dark a { color: var(--gold-light); }
.section-ink { background-color: var(--ink); }
.section-ink h2, .section-ink h3 { color: var(--gold); }
.section-ink p, .section-ink li { color: var(--parchment); }
.section-ink .section-label { color: var(--gold-light); }
.section-ink a { color: var(--gold-light); }

.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--brown-mid);
  display: block;
  margin-bottom: 0.4rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold) !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background-color: var(--parchment);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23b)' opacity='0.09'/%3E%3C/svg%3E");
  background-size: 300px 300px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(200,160,80,0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 50%, rgba(61,42,10,0.05) 0%, transparent 55%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(110px, 16vw, 160px);
  height: auto;
  margin: 0 auto 1.8rem;
  display: block;
  opacity: 0.88;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 9rem);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.hero-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  color: var(--gold);
}
.hero-ornament::before, .hero-ornament::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-ornament::after { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-ornament span { font-size: 1rem; letter-spacing: 0.3em; color: var(--gold); }

.hero-tagline {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--brown-mid);
  margin-bottom: 0.4rem;
}
.hero-verse {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--brown-light);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Hero Rating Strip ─── */
.hero-rating-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 2.4rem;
}
.hero-rating-stars {
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  line-height: 1;
}
.hero-rating-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

.hero-bg-cross {
  position: absolute;
  font-size: 20rem;
  color: var(--brown-dark);
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  animation: float-slow 12s ease-in-out infinite;
  line-height: 1;
}
.hero-bg-cross-l { top: 50%; left: 2%; transform: translateY(-50%); }
.hero-bg-cross-r { top: 50%; right: 2%; transform: translateY(-50%); animation-delay: -5s; }

@keyframes float-slow {
  0%, 100% { transform: translateY(-50%) rotate(-2deg); }
  50%       { transform: translateY(calc(-50% - 20px)) rotate(2deg); }
}

/* ─── Marquee ─── */
.marquee-section {
  background: var(--brown-dark);
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  padding: 0.85rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2.5rem;
}
.marquee-track span.sep { color: var(--gold-light); opacity: 0.5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── Daily Verse Widget ─── */
.verse-widget {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 2.2rem 2.8rem;
  position: relative;
}
.verse-widget::before {
  content: '\201C';
  position: absolute;
  top: -0.4rem; left: 1.2rem;
  font-family: var(--font-body);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.22;
  line-height: 1;
  pointer-events: none;
}
.verse-widget-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.verse-widget-label::before { content: '✦'; color: var(--gold); }
.verse-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 0.7rem;
}
.verse-ref {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.77rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brown-mid);
}

/* ─── Scripture Draw ─── */
.scripture-draw {
  background: var(--parchment-deep);
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
  padding: 5rem 2rem;
  text-align: center;
}
.scripture-draw-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.scripture-draw-sub { font-style: italic; color: var(--brown-mid); margin-bottom: 2rem; font-size: 0.94rem; }
#drawn-verse {
  display: none;
  max-width: 620px;
  margin: 2rem auto 0;
  animation: reveal-verse 0.6s ease;
}
@keyframes reveal-verse {
  from { opacity: 0; transform: translateY(18px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Scripture Tooltips ─── */
.scripture-ref {
  color: var(--brown-mid);
  border-bottom: 1px dashed var(--brown-light);
  cursor: help;
  position: relative;
  white-space: nowrap;
}
.scripture-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--parchment);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1.65;
  padding: 1rem 1.2rem;
  width: 280px;
  border: 1px solid var(--gold);
  z-index: 200;
  pointer-events: none;
  text-align: left;
  white-space: normal;
}
.scripture-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--gold);
}
.scripture-ref:hover .scripture-tooltip {
  display: block;
  animation: tooltip-in 0.2s ease;
}
@keyframes tooltip-in {
  from { opacity: 0; transform: translateX(-50%) translateY(6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── Product Grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px var(--shadow-deep);
}
.product-img {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(to top, rgba(26,18,8,0.75), transparent);
}
.product-img-label span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.product-info {
  padding: 1.5rem;
  border-top: 1px solid var(--gold-pale);
}
.product-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.product-verse { font-style: italic; font-size: 0.77rem; color: var(--brown-mid); margin-bottom: 0.7rem; }
.product-desc { font-size: 0.83rem; color: var(--ink-light); margin-bottom: 0.9rem; line-height: 1.6; }
.product-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}
.product-tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-tag-sold { background: var(--brown-mid); color: var(--parchment); }
.product-tag-sale { background: #8b1a1a; color: var(--parchment); }

/* ─── Sale pricing ─── */
.price-compare {
  display: inline-block;
  text-decoration: line-through;
  color: var(--brown-light);
  font-weight: 400;
  font-size: 0.9rem;
  margin-right: 0.4rem;
  opacity: 0.7;
}
.price-sale {
  color: var(--gold);
  font-weight: 800;
}
.price-currency {
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--brown-mid);
}

/* ─── Shop Filter Bar ─── */
.filter-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold-pale);
}
.filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--gold-pale);
  background: transparent;
  color: var(--brown-mid);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--gold);
}

/* ─── Cart Drawer ─── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,0.55);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--cream);
  border-left: 2px solid var(--gold);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--gold-pale);
  background: var(--brown-dark);
}
.cart-drawer-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.cart-close {
  background: none;
  border: none;
  color: var(--parchment-alt);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
  line-height: 1;
}
.cart-close:hover { color: var(--gold); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.8rem;
}
.cart-empty {
  font-style: italic;
  color: var(--brown-mid);
  text-align: center;
  padding: 2rem 0;
  font-size: 0.9rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--parchment-deep);
  align-items: start;
}
.cart-item-img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border: 1px solid var(--gold-pale);
  background: var(--parchment-alt);
}
.cart-item-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.cart-item-variant {
  font-size: 0.77rem;
  color: var(--brown-mid);
  font-style: italic;
  margin-bottom: 0.3rem;
}
.cart-item-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.qty-btn {
  width: 24px; height: 24px;
  background: var(--parchment-alt);
  border: 1px solid var(--gold-pale);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  color: var(--ink);
}
.qty-btn:hover { background: var(--brown-dark); color: var(--gold); }
.cart-item-qty span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
  color: var(--ink);
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--brown-mid);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 2px;
  transition: color var(--transition);
  line-height: 1;
}
.cart-item-remove:hover { color: #8b1a1a; }

.cart-drawer-footer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--gold-pale);
  background: var(--parchment-alt);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.cart-note {
  font-size: 0.75rem;
  color: var(--brown-mid);
  font-style: italic;
  margin-bottom: 1.2rem;
  text-align: center;
}
.cart-loading { opacity: 0.5; pointer-events: none; }

/* ─── Loading / Error States ─── */
.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.error-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 2rem;
  font-style: italic;
  color: var(--brown-mid);
}

/* ─── Tags/Badges ─── */
.tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--ink);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}
.tag-outline { background: transparent; border: 1px solid var(--gold-pale); color: var(--brown-mid); }

/* ─── Are You Saved Accordion ─── */
.saved-section { background: var(--ink); padding: 6rem 2rem; color: var(--parchment); }
.saved-section h2 { color: var(--gold); text-align: center; margin-bottom: 0.5rem; }
.saved-section p { color: var(--parchment); }
.saved-sub { text-align: center; color: var(--parchment); font-style: italic; margin-bottom: 3rem; }
.saved-questions { max-width: 720px; margin: 0 auto; }
.saved-item { border-bottom: 1px solid rgba(200,160,80,0.2); }
.saved-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--parchment);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.saved-question:hover { color: var(--gold); }
.saved-question-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; transition: transform var(--transition); }
.saved-item.active .saved-question-icon { transform: rotate(45deg); }
.saved-answer { display: none; padding: 0 0 1.5rem; color: var(--parchment); font-style: italic; line-height: 1.85; }
.saved-answer .answer-ref {
  color: var(--gold-light);
  font-style: normal;
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.saved-item.active .saved-answer { display: block; animation: fade-down 0.3s ease; }
@keyframes fade-down {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Forms ─── */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-bottom: 2px solid var(--brown-mid);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-bottom-color: var(--gold);
  background: var(--parchment);
}
.form-input:focus-visible, .form-select:focus-visible, .form-textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form-select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

.form-success {
  display: none;
  background: var(--brown-dark);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  text-align: center;
  border: 1px solid var(--gold);
  margin-top: 1.5rem;
  animation: reveal-verse 0.4s ease;
}
.form-error-msg {
  font-size: 0.75rem;
  color: #8b1a1a;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
  display: none;
}

/* ─── Star Rating ─── */
.star-rating {
  display: flex;
  gap: 0.3rem;
  margin: 0.4rem 0 0.8rem;
}
.star {
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--parchment-deep);
  transition: color var(--transition), transform 0.15s ease;
  padding: 0;
  line-height: 1;
}
.star.active, .star.hover { color: var(--gold); }
.star:hover { transform: scale(1.15); }
.star-display { display: flex; gap: 2px; }
.star-display .star-icon { font-size: 1rem; color: var(--parchment-deep); }
.star-display .star-icon.filled { color: var(--gold); }

/* ─── Reviews Cards ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem; left: 1rem;
  font-family: var(--font-body);
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.review-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
}
.review-text {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin: 0;
}
.review-meta {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-top: 1rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--parchment-deep);
}

/* Average Rating Display */
.avg-rating-display {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--parchment-alt);
  border: 1px solid var(--gold-pale);
  margin-bottom: 3rem;
}
.avg-rating-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 6rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.avg-rating-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.avg-stars { justify-content: center; margin: 0.8rem 0; }

/* ─── Prayer Wall Cards ─── */
.prayer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.prayer-card {
  background: var(--cream);
  border: 1px solid var(--gold-pale);
  border-top: 3px solid var(--gold);
  padding: 2rem 2rem 1.5rem;
  position: relative;
}
.prayer-card::after {
  content: '✝';
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.4;
}
.prayer-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brown-mid);
  margin-bottom: 0.8rem;
}
.prayer-text {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin: 0;
}
.prayer-time {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
  margin-top: 1rem;
}

/* ─── I Prayed For This button ─── */
.prayed-for-wrap { margin-top: 1.1rem; }
.btn-prayed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  background: transparent;
  border: 1px solid var(--gold-pale);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-prayed:hover:not(:disabled) { background: rgba(200,160,80,0.12); border-color: var(--gold-light); }
.btn-prayed:disabled { opacity: 0.5; cursor: default; }
.prayed-count {
  margin-top: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  min-height: 1.1em;
}

/* ─── Pagination ─── */
.load-more-wrap { text-align: center; margin-top: 3rem; }

/* ─── Lookbook ─── */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--brown-dark);
}
.lookbook-item.wide { grid-column: span 2; aspect-ratio: 16/10; }
.lookbook-item.tall { grid-row: span 2; aspect-ratio: auto; }
.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.lookbook-item:hover img { transform: scale(1.04); }
.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lookbook-item:hover .lookbook-overlay {
  background: rgba(26,18,8,0.35);
}
.lookbook-zoom {
  color: var(--gold);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.lookbook-item:hover .lookbook-zoom { opacity: 1; transform: scale(1); }

/* ─── Lightbox ─── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,0.96);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 2px solid rgba(200,160,80,0.25);
}
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--parchment); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,18,8,0.6);
  border: 1px solid rgba(200,160,80,0.3);
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--ink); }
.lightbox-prev { left: -3.5rem; }
.lightbox-next { right: -3.5rem; }

/* ─── Page Header ─── */
.page-header {
  background: var(--brown-dark);
  padding: 5.5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,160,80,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 { color: var(--gold); position: relative; }
.page-header p { color: var(--parchment-alt); font-style: italic; max-width: 520px; margin: 1rem auto 0; position: relative; }
.page-header-cross {
  position: absolute;
  font-size: 40rem;
  color: var(--parchment);
  opacity: 0.014;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  font-family: var(--font-heading);
  line-height: 1;
}

/* ─── Mission Hero ─── */
.mission-hero {
  background: var(--brown-dark);
  padding: 8rem 2rem 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-hero::before {
  content: '✝';
  position: absolute;
  font-size: 50rem;
  color: var(--parchment);
  opacity: 0.013;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  font-family: var(--font-heading);
  line-height: 1;
}

/* ─── Scripture Passage Block ─── */
.scripture-passage {
  background: var(--parchment-alt);
  border: 1px solid var(--gold-pale);
  border-left: 5px solid var(--gold);
  padding: 3rem 3.5rem;
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.scripture-passage::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; left: 1.5rem;
  font-family: var(--font-body);
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.scripture-passage p {
  font-family: var(--font-body);
  font-weight: 700;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--ink-light);
  margin-bottom: 0.5em;
}
.scripture-passage p:last-child { margin-bottom: 0; }
.scripture-passage .passage-ref {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brown-mid);
  display: block;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--gold-pale);
}
.verse-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--gold);
  vertical-align: super;
  margin-right: 0.2em;
  font-style: normal;
}

/* ─── Giving / Stats ─── */
.giving-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(5rem, 12vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.giving-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brown-mid);
}
.giving-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

/* ─── Responsive inline-grid helpers ─── */
.mission-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
  margin-bottom: 4rem;
}
.shop-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.home-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.scripture-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.giving-card {
  background: var(--parchment-alt);
  border: 1px solid var(--gold-pale);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}
.giving-card-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.giving-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.giving-card p { font-size: 0.84rem; color: var(--brown-mid); line-height: 1.6; margin: 0; }

/* ─── Two Column ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col-text { padding: 1rem 0; }

/* ─── Vintage Frame ─── */
.vintage-frame {
  border: 1px solid var(--gold-pale);
  padding: 3rem;
  position: relative;
  background: var(--cream);
}
.vintage-frame::before, .vintage-frame::after {
  content: '✦';
  position: absolute;
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
}
.vintage-frame::before { top: -0.55rem; left: 50%; transform: translateX(-50%); background: var(--cream); padding: 0 0.8rem; }
.vintage-frame::after { bottom: -0.55rem; left: 50%; transform: translateX(-50%); background: var(--cream); padding: 0 0.8rem; }

/* ─── Corner Ornament Frame ─── */
.corner-frame {
  position: relative;
  padding: 3rem;
}
.corner-frame::before, .corner-frame::after {
  content: '';
  position: absolute;
  width: 28px; height: 28px;
  border-color: var(--gold-pale);
  border-style: solid;
}
.corner-frame::before { top: 0.8rem; left: 0.8rem; border-width: 2px 0 0 2px; }
.corner-frame::after { bottom: 0.8rem; right: 0.8rem; border-width: 0 2px 2px 0; }

/* ─── Contact Page ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.contact-card {
  background: var(--parchment-alt);
  border: 1px solid var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1.8rem;
  margin-bottom: 1.2rem;
}
.contact-card-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.4rem;
}
.contact-card p { font-size: 0.92rem; margin: 0; }

.prayer-section {
  background: var(--ink);
  padding: 6rem 2rem;
  color: var(--parchment);
}
.prayer-section h2, .prayer-section h3, .prayer-section h4 { color: var(--gold); }
.prayer-section p, .prayer-section li { color: var(--parchment); }
.prayer-section .section-label { color: var(--gold-light); }
.prayer-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,160,80,0.2);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.prayer-form-wrap::before {
  content: '✝';
  position: absolute;
  font-size: 20rem;
  color: var(--parchment);
  opacity: 0.02;
  right: -2rem;
  bottom: -4rem;
  line-height: 1;
  pointer-events: none;
  font-family: var(--font-heading);
}
.prayer-form-wrap .form-label { color: var(--gold-light); }
.prayer-form-wrap .form-input,
.prayer-form-wrap .form-select,
.prayer-form-wrap .form-textarea {
  background: rgba(255,255,255,0.1);
  border-color: rgba(200,160,80,0.2);
  color: var(--parchment) !important;
  border-bottom-color: rgba(200,160,80,0.45);
}
.prayer-form-wrap .form-input::placeholder,
.prayer-form-wrap .form-textarea::placeholder { color: rgba(200,160,80,0.4); }
.prayer-form-wrap .form-input:focus,
.prayer-form-wrap .form-select:focus,
.prayer-form-wrap .form-textarea:focus {
  background: rgba(255,255,255,0.14);
  border-bottom-color: var(--gold);
  color: var(--parchment) !important;
}

/* ─── Ichthys / Ornament Symbols ─── */
.ichthys {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  animation: pulse-gentle 3.5s ease-in-out infinite;
}
@keyframes pulse-gentle {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.06); }
}

/* ─── Floating Decorative Elements ─── */
.float-ornament {
  position: absolute;
  pointer-events: none;
  user-select: none;
  color: var(--brown-dark);
  opacity: 0.04;
  animation: float-slow 10s ease-in-out infinite;
  font-size: 2.5rem;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ─── Newsletter Band ─── */
.newsletter-band {
  background: var(--gold);
  padding: 1.8rem 2rem;
  text-align: center;
}
.newsletter-band p {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}

/* ─── Footer ─── */
.footer { background: var(--ink); padding: 5rem 2rem 2.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200,160,80,0.15);
}
.footer-logo-img {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.3rem;
  line-height: 1.1;
  display: block;
}
.footer-tagline { font-family: var(--font-heading); font-weight: 700; font-style: italic; font-size: 0.9rem; color: var(--parchment-alt); margin-bottom: 1rem; }
.footer-verse { font-style: italic; font-size: 0.77rem; color: var(--brown-light); line-height: 1.7; }
.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.83rem; color: var(--parchment-alt); letter-spacing: 0.04em; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.7rem;
  color: rgba(245,239,224,0.28);
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

/* ─── Policy Pages ─── */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.policy-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.6rem; }
.policy-content h3 { margin-top: 2rem; margin-bottom: 0.5rem; font-size: 1.2rem; }
.policy-content ul, .policy-content ol { padding-left: 2rem; margin-bottom: 1.2em; }
.policy-content li { line-height: 1.75; margin-bottom: 0.4em; }

/* ─── Print ─── */
@media print {
  body::after { display: none; }
  .nav { position: static; }
  .entry-screen { display: none; }
  .cart-drawer, .cart-overlay { display: none; }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .nav-links { gap: 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > *:first-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .prayer-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .giving-cards { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-item.wide { grid-column: span 2; }
  .lookbook-item.tall { grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 66px; left: 0;
    width: 100%;
    background: var(--brown-dark);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 2px solid var(--gold);
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-logo-sub { display: none; }
  .section { padding: 4rem 1.5rem; }
  .section-full { padding: 4rem 1.5rem; }
  .vintage-frame { padding: 2rem 1.5rem; }
  .verse-widget { padding: 1.8rem 1.5rem; }
  .hero { padding: 5rem 1.5rem 4rem; }
  .scripture-passage { padding: 2rem 2rem; }
  .prayer-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox-prev { left: -2rem; }
  .lightbox-next { right: -2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .giving-cards { grid-template-columns: 1fr; }
  .mission-stats { grid-template-columns: 1fr; gap: 2rem; }
  .shop-features { grid-template-columns: 1fr; }
  .home-pillars { grid-template-columns: 1fr; }
  .scripture-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .prayer-grid { grid-template-columns: 1fr; }
  .giving-cards { grid-template-columns: 1fr; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-item.wide { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-bg-cross { display: none; }
  .two-col { gap: 2rem; }
  .filter-bar { justify-content: center; }
  .giving-number { font-size: clamp(2.5rem, 10vw, 4rem); }
}
