/* ========================================
   Still Here Prints - Store Styles
   Brand: Dark Navy + Gold Semicolon
   ======================================== */

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

:root {
  --ink: #1a1a2e;
  --ink-light: #16213e;
  --warm: #f5f0eb;
  --gold: #c9a96e;
  --gold-light: #d4b87a;
  --sage: #8a9a7b;
  --sage-light: #a8b89a;
  --blush: #d4a0a0;
  --grey: #6b6b7b;
  --grey-light: #9b9bab;
  --off-white: #faf8f5;
  --shadow-sm: 0 2px 8px rgba(26,26,46,0.06);
  --shadow-md: 0 4px 20px rgba(26,26,46,0.1);
  --shadow-lg: 0 8px 40px rgba(26,26,46,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

.serif { font-family: 'Cormorant Garamond', serif; }

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

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.7rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--off-white);
}

.nav-logo .logo-semi {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
}

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

.nav-links a {
  color: rgba(245,240,235,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

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

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--ink);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ---- SHOP HERO ---- */
.shop-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(170deg, #1a1a2e 0%, #16213e 40%, #1a1a2e 100%);
  color: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.shop-hero::before {
  content: ';';
  font-family: 'Cormorant Garamond', serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40rem;
  font-weight: 700;
  color: rgba(201,169,110,0.03);
  pointer-events: none;
}

.shop-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  position: relative;
}

.shop-hero p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(245,240,235,0.6);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.shop-hero .hero-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.5;
}

/* ---- CATEGORY FILTERS ---- */
.filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 2rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid rgba(26,26,46,0.12);
  border-radius: 100px;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey);
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.filter-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--off-white);
}

/* ---- PRODUCT GRID ---- */
.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

/* ---- PRODUCT CARD ---- */
.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
}

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

.product-card .card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card .card-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  background: rgba(26,26,46,0.7);
  backdrop-filter: blur(8px);
  color: rgba(245,240,235,0.8);
  font-size: 0.65rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- PRODUCT PREVIEW ART ---- */
.preview-art {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Semicolon Hero - Large gold semicolon on navy */
.preview-art.semicolon-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #1a1a2e 100%);
}
.preview-art.semicolon-hero .preview-element {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201,169,110,0.4), 0 0 120px rgba(201,169,110,0.15);
  line-height: 1;
}
.preview-art.semicolon-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}

/* Typography Dark - Quote text on navy */
.preview-art.typography-dark {
  background: linear-gradient(145deg, #1a1a2e, #0f0f23);
}
.preview-art.typography-dark .preview-element {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--off-white);
  text-align: center;
  line-height: 1.3;
  padding: 0 2rem;
}
.preview-art.typography-dark .preview-element .gold { color: var(--gold); }

/* Code Mono - Developer style */
.preview-art.code-mono {
  background: #0d1117;
}
.preview-art.code-mono::before {
  content: '// life.js';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: 0.7rem;
  color: rgba(139,148,158,0.5);
}
.preview-art.code-mono .preview-element {
  font-family: 'Courier New', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c9d1d9;
  letter-spacing: 0.05em;
}
.preview-art.code-mono .preview-element .gold {
  color: var(--gold);
}
.preview-art.code-mono::after {
  content: '|';
  font-family: 'Courier New', monospace;
  font-size: 2.2rem;
  color: var(--gold);
  animation: blink 1.2s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Botanical - Soft greens with semicolon */
.preview-art.botanical {
  background: linear-gradient(160deg, #e8ede5 0%, #d4dece 40%, #c5d4bc 100%);
}
.preview-art.botanical::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138,154,123,0.2) 0%, transparent 70%);
}
.preview-art.botanical .preview-element {
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 700;
  color: var(--sage);
  opacity: 0.7;
  text-shadow: 0 0 40px rgba(138,154,123,0.3);
}
.preview-art.botanical::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(138,154,123,0.2);
  border-radius: 50%;
}

/* Minimalist Trio - Three semicolons */
.preview-art.minimalist-trio {
  background: var(--off-white);
  gap: 2rem;
}
.preview-art.minimalist-trio .preview-element {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.preview-art.minimalist-trio .mini-semi {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}
.preview-art.minimalist-trio .mini-semi:nth-child(1) {
  color: var(--ink);
}
.preview-art.minimalist-trio .mini-semi:nth-child(2) {
  color: var(--gold);
  font-size: 4rem;
}
.preview-art.minimalist-trio .mini-semi:nth-child(3) {
  color: var(--grey-light);
}

/* Script Warm - Handwritten style */
.preview-art.script-warm {
  background: linear-gradient(135deg, var(--warm) 0%, #ede5db 100%);
}
.preview-art.script-warm .preview-element {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
}
.preview-art.script-warm .preview-element .gold {
  color: var(--gold);
  font-weight: 700;
  font-style: normal;
}

/* Quote Bold - Bold typography on light */
.preview-art.quote-bold {
  background: var(--off-white);
}
.preview-art.quote-bold .preview-element {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
  padding: 0 2rem;
}
.preview-art.quote-bold .preview-element .gold {
  color: var(--gold);
}

/* Affirmation Grid - Grid of small cards */
.preview-art.affirmation-grid {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  padding: 1.5rem;
}
.preview-art.affirmation-grid .preview-element {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 250px;
}
.preview-art.affirmation-grid .mini-card {
  background: rgba(245,240,235,0.06);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 6px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
}
.preview-art.affirmation-grid .mini-card:nth-child(5) {
  background: rgba(201,169,110,0.12);
  border-color: var(--gold);
}

/* Reminder Gentle - Soft blush design */
.preview-art.reminder-gentle {
  background: linear-gradient(160deg, #f5eded, #eddede);
}
.preview-art.reminder-gentle .preview-element {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.4;
  opacity: 0.85;
}
.preview-art.reminder-gentle .preview-element .gold {
  color: var(--gold);
  font-weight: 700;
}
.preview-art.reminder-gentle::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,160,0.15) 0%, transparent 70%);
}

/* Tracker Grid - Mood tracker preview */
.preview-art.tracker-grid {
  background: var(--warm);
  padding: 1.5rem;
}
.preview-art.tracker-grid .preview-element {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 100%;
  max-width: 220px;
}
.preview-art.tracker-grid .tracker-dot {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(26,26,46,0.08);
}
.preview-art.tracker-grid .tracker-dot.filled-gold { background: var(--gold); opacity: 0.6; }
.preview-art.tracker-grid .tracker-dot.filled-sage { background: var(--sage); opacity: 0.5; }
.preview-art.tracker-grid .tracker-dot.filled-blush { background: var(--blush); opacity: 0.5; }

/* Cards Spread - Fanned cards */
.preview-art.cards-spread {
  background: linear-gradient(135deg, var(--warm), #ede5db);
}
.preview-art.cards-spread .preview-element {
  position: relative;
  width: 120px;
  height: 160px;
}
.preview-art.cards-spread .spread-card {
  position: absolute;
  width: 100px;
  height: 140px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.3s;
}
.preview-art.cards-spread .spread-card:nth-child(1) { transform: rotate(-12deg) translateX(-15px); }
.preview-art.cards-spread .spread-card:nth-child(2) { transform: rotate(-4deg) translateX(-5px); z-index: 1; }
.preview-art.cards-spread .spread-card:nth-child(3) { transform: rotate(5deg) translateX(5px); z-index: 2; }

/* Journal Lines - Lined paper preview */
.preview-art.journal-lines {
  background: white;
  padding: 2rem 2.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.preview-art.journal-lines .preview-element {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.preview-art.journal-lines .journal-line {
  width: 100%;
  height: 1px;
  background: rgba(26,26,46,0.08);
  position: relative;
}
.preview-art.journal-lines .journal-line:first-child::before {
  content: 'How are you feeling today? ;';
  position: absolute;
  top: -1rem;
  left: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--grey-light);
  font-style: italic;
  white-space: nowrap;
}
.preview-art.journal-lines::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(212,160,160,0.2);
}

/* ---- CARD INFO ---- */
.card-info {
  padding: 1.2rem 1.4rem 1.4rem;
}

.card-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.card-info .card-desc {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-info .card-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.card-info .card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--off-white);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.card-info .card-btn:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ---- PRODUCT DETAIL PAGE ---- */
.product-detail {
  padding: 7rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail .preview-art {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.product-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-info .product-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-info .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.product-info .product-category-tag {
  background: var(--warm);
  color: var(--grey);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-info .product-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-info .features-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  margin-bottom: 0.75rem;
}

.product-info .features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.product-info .features-list li {
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.product-info .features-list li::before {
  content: ';';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 15px rgba(201,169,110,0.3);
}

.buy-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(201,169,110,0.4);
}

.buy-btn .btn-price {
  opacity: 0.7;
  font-weight: 500;
}

.product-info .trust-signals {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26,26,46,0.06);
}

.product-info .trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--grey);
}

.product-info .trust-item .trust-icon {
  font-size: 1rem;
}

/* ---- RELATED PRODUCTS ---- */
.related-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(26,26,46,0.06);
}

.related-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ---- SUCCESS PAGE ---- */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(170deg, #1a1a2e 0%, #16213e 40%, #1a1a2e 100%);
  color: var(--off-white);
  position: relative;
  overflow: hidden;
}

.success-page::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.success-semicolon {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(201,169,110,0.3);
}

.success-page h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 1rem;
  max-width: 600px;
  line-height: 1.3;
}

.success-page .success-text {
  font-size: 1rem;
  color: rgba(245,240,235,0.65);
  max-width: 450px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.success-steps {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.success-step {
  background: rgba(245,240,235,0.05);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  text-align: left;
  max-width: 200px;
}

.success-step .step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.success-step .step-text {
  font-size: 0.85rem;
  color: rgba(245,240,235,0.6);
  line-height: 1.5;
}

.success-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.success-actions .btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}

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

.success-actions .btn-secondary {
  background: rgba(245,240,235,0.08);
  color: var(--off-white);
  padding: 0.75rem 1.8rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: 1px solid rgba(245,240,235,0.15);
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}

.success-actions .btn-secondary:hover {
  background: rgba(245,240,235,0.12);
}

/* ---- FOOTER ---- */
.store-footer {
  padding: 3rem 2rem;
  background: #12121f;
  text-align: center;
}

.store-footer .footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.store-footer .footer-semicolon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.75rem;
  display: block;
}

.store-footer .footer-text {
  font-size: 0.85rem;
  color: rgba(245,240,235,0.35);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.store-footer .footer-copy {
  font-size: 0.75rem;
  color: rgba(245,240,235,0.2);
}

.store-footer .footer-copy .gold { color: var(--gold); opacity: 0.4; }

.store-footer .crisis-line {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,240,235,0.06);
  font-size: 0.75rem;
  color: rgba(245,240,235,0.3);
}

.store-footer .crisis-line strong {
  color: rgba(245,240,235,0.5);
}

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

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }
.product-card:nth-child(11) { animation-delay: 0.55s; }
.product-card:nth-child(12) { animation-delay: 0.6s; }

/* ---- EMPTY STATE ---- */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--grey);
}

.empty-state .empty-semi {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 1rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav { padding: 0.8rem 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.nav-cta) { display: none; }

  .shop-hero { padding: 7rem 1.5rem 3rem; }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail { padding: 6rem 1.5rem 3rem; }

  .success-steps { flex-direction: column; align-items: center; }
  .success-step { max-width: 280px; width: 100%; }

  .filters { gap: 0.4rem; }
  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.8rem; }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .card-info .card-footer {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }

  .card-info .card-btn {
    justify-content: center;
  }
}
