:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f5f5f5;
  --bg-card: #ffffff;
  --gold: #c9a84c;
  --gold-light: #b8962e;
  --text-primary: #111111;
  --text-secondary: #6b6b6b;
  --accent: #8b4513;
  --border: #e5e5e5;
  --success: #166534;
  --error: #dc2626;
  --dark: #111111;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

h1, h2, h3 { font-family: 'Playfair Display', serif; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---- NAVBAR ---- */
.navbar {
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.logo-text { color: #ffffff; }
.logo-accent { color: var(--gold); }

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

.nav-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--gold); text-decoration: none; }

.nav-cart {
  position: relative;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

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

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.75);
}

.mobile-menu {
  display: none;
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  flex-direction: column;
  gap: 12px;
}

.mobile-menu a {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: flex; }

/* ---- FLASH MESSAGES ---- */
.flash-messages {
  max-width: 1200px;
  margin: 16px auto;
  padding: 0 24px;
}

.flash {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 8px;
  font-size: 14px;
}

.flash-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.flash-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.flash-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.flash-info { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gold);
  color: #111111;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #111111;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
  background: #111111;
  color: #ffffff;
  font-weight: 600;
}

.btn-secondary:hover {
  background: #2a2a2a;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: #111111;
  text-decoration: none;
}

.btn-disabled {
  background: #f5f5f5;
  color: #999;
  cursor: not-allowed;
  border: 1px solid var(--border);
}

.btn-sm { padding: 7px 14px; font-size: 13px; }
.btn-large { padding: 14px 32px; font-size: 16px; }
.btn-full { width: 100%; text-align: center; }

/* ---- HERO ---- */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
              #111111;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-actions {
  justify-content: center;
}

.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-verse-display {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-verse-ref {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 40px;
}

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

.hero-cross { display: none; }

.cross-symbol {
  font-size: 300px;
  color: var(--gold);
  line-height: 1;
}

/* ---- MISSION STRIP ---- */
.mission-strip {
  background: var(--gold);
  padding: 14px 0;
  text-align: center;
}

.mission-text {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

/* ---- SECTIONS ---- */
.featured-section, .collections-section, .mission-section {
  padding: 80px 0;
}

.featured-section { background: #f5f5f5; }
.collections-section { background: #ffffff; }
.mission-section {
  background: linear-gradient(135deg, #f5f5f5 0%, rgba(201, 168, 76, 0.06) 100%);
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 48px;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- PRODUCT GRID ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  flex: 1;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-secondary);
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.product-img-placeholder.large {
  min-height: 400px;
  border-radius: 10px;
}

.placeholder-cross {
  font-size: 64px;
  color: var(--gold);
  opacity: 0.3;
}

.sold-out-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.75);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}

.product-info {
  padding: 16px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
}

.product-sku {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.product-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.product-card .btn {
  margin: 0 16px 16px;
}

/* ---- PRODUCT DETAIL ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 24px 0 32px;
}

.breadcrumb a { color: #6b6b6b; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: #111111; }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
}

.product-detail-images { }

.product-detail-main-img {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 12px;
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}

.product-thumb.active, .product-thumb:hover { border-color: var(--gold); }

.product-detail-name {
  font-size: 32px;
  margin-bottom: 12px;
}

.product-detail-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.product-description {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.product-variants { margin-bottom: 20px; }
.variant-label { font-size: 13px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; display: block; }

.variant-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.variant-btn {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.variant-btn:hover, .variant-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.product-stock { margin-bottom: 20px; font-size: 14px; }
.in-stock { color: var(--success); }
.low-stock { color: #facc15; }
.out-of-stock { color: var(--error); }

.product-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.qty-btn {
  background: none;
  border: none;
  color: #111111;
  width: 36px;
  height: 44px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
}

.qty-btn:hover { background: #f5f5f5; }

.qty-input {
  width: 50px;
  text-align: center;
  background: none;
  border: none;
  color: #111111;
  font-size: 16px;
  padding: 0;
  font-family: inherit;
}

.product-faith-note {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 16px;
}

/* ---- PAGE HEADER ---- */
.page-header {
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
  border-bottom: 1px solid var(--border);
  padding: 60px 24px;
  text-align: center;
}

.page-header h1 { font-size: clamp(28px, 5vw, 48px); margin-bottom: 12px; }
.page-header p { color: var(--text-secondary); font-size: 16px; }

/* ---- SHOP SECTION ---- */
.shop-section { padding: 60px 0; }

.empty-shop, .empty-products {
  text-align: center;
  padding: 80px 20px;
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.4;
}

/* ---- CART ---- */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 40px 0 80px;
}

.cart-items { }

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 28px;
}

.cart-item-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.cart-item-variant { font-size: 13px; color: var(--text-secondary); }
.cart-item-price { color: var(--gold); font-weight: 600; }

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 18px;
  padding: 4px 8px;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--error); }

.cart-summary {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 80px;
}

.cart-summary h2 { font-size: 20px; margin-bottom: 20px; }

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

.summary-divider {
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.secure-badge {
  text-align: center;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* ---- COLLECTIONS ---- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.collection-card {
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.collection-card .btn-outline {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.collection-card .btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #111111;
}

.collection-icon { font-size: 40px; margin-bottom: 16px; }
.collection-card h3 { font-size: 22px; margin-bottom: 10px; }
.collection-card p { color: #6b6b6b; font-size: 14px; margin-bottom: 20px; }

/* ---- MISSION ---- */
.mission-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mission-content h2 { font-size: 36px; margin-bottom: 20px; }
.mission-content p { color: var(--text-secondary); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.mission-content .btn { margin-top: 16px; }

/* ---- INFO/AFFILIATE/WHOLESALE ---- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 60px 0;
}

.info-card {
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}

.info-icon { font-size: 36px; margin-bottom: 14px; }
.info-card h3 { font-size: 18px; margin-bottom: 10px; }
.info-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

.cta-section {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.cta-section h2 { font-size: 32px; margin-bottom: 24px; }

/* ---- FORMS ---- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 40px auto 80px;
}

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

.form-label-light {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  color: #111111;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  color: #111111;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  min-height: 120px;
  resize: vertical;
  transition: border-color 0.2s;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

/* ---- AFFILIATE/WHOLESALE PORTAL ---- */
.stats-grid-light {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.stat-card-light {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.stat-label-light {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.stat-value-light {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
}

.card-light {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  margin-bottom: 24px;
}

.card-light h3 {
  font-size: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.table-light {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table-light th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-light td {
  padding: 12px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-secondary);
}

.table-light tr:last-child td { border-bottom: none; }

.badge-light {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.badge-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.badge-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }
.badge-error { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }

.ref-link-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f5f5f5;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
}

.ref-link-box code {
  flex: 1;
  color: var(--gold);
  font-size: 14px;
  word-break: break-all;
}

/* ---- SUCCESS PAGE ---- */
.success-page {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  font-size: 72px;
  color: var(--gold);
  margin-bottom: 24px;
}

.success-page h1 { font-size: 40px; margin-bottom: 16px; }
.success-page p { color: var(--text-secondary); font-size: 16px; margin-bottom: 12px; }
.order-number { font-size: 20px; color: var(--gold); font-weight: 700; margin: 16px 0; }
.success-verse { font-style: italic; color: var(--text-secondary); margin: 24px auto; max-width: 500px; }

.cancel-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ---- CART NOTIFICATION ---- */
.cart-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: #000;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.cart-notification.show {
  opacity: 1;
  transform: translateY(0);
}

/* ---- FOOTER ---- */
.footer {
  background: #0a1628;
  border-top: 1px solid var(--border);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-links { flex: 1; }
.footer-links h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  line-height: 2;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); text-decoration: none; }
.footer-brand-center {
  text-align: center;
  padding: 24px 60px;
  border-top: 1px solid rgba(212,175,55,0.3);
}
.footer-brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}
.footer-brand-logo .logo-accent { color: var(--gold); }
.footer-tagline { font-size: 13px; color: var(--gold); margin-top: 6px; }
.footer-scripture {
  text-align: center;
  padding: 24px 60px;
  background: rgba(0,0,0,0.25);
}
.footer-scripture p {
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
.footer-bottom {
  padding: 16px 60px;
  text-align: center;
  background: rgba(0,0,0,0.25);
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12px; margin: 0; }

@media (max-width: 768px) {
  .footer-container { flex-wrap: wrap; padding: 40px 32px; gap: 30px; }
  .footer-links { flex: 0 0 calc(50% - 15px); }
  .footer-brand-center, .footer-scripture, .footer-bottom { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 480px) {
  .footer-container { flex-direction: column; padding: 32px 24px; gap: 24px; }
  .footer-links { flex: 0 0 100%; }
  .footer-brand-center, .footer-scripture, .footer-bottom { padding-left: 24px; padding-right: 24px; }
}

/* ---- TEXT UTILITIES ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 60px 24px; min-height: auto; }
  .hero-cross { display: none; }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }


  .stats-grid-light { grid-template-columns: 1fr 1fr; }

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

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .product-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
}

/* ── CHECKOUT PAGE ─────────────────────────────────────────── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 40px 0 80px;
    align-items: start;
}

.checkout-form-col { }

.checkout-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px;
    margin-bottom: 20px;
}

.checkout-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.checkout-summary-col {
    position: sticky;
    top: 80px;
}

.checkout-error {
    background: #3a1a1a;
    color: #f87171;
    border: 1px solid #991b1b;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ── PRODUCT TYPE BADGE ────────────────────────────────────── */
.type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-digital {
    background: rgba(26, 42, 58, 0.9);
    color: #60a5fa;
    border: 1px solid #1e40af;
}

/* ── ADMIN PRODUCT FORM ADDITIONS ──────────────────────────── */
.variant-checkbox-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.variant-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    transition: border-color 0.2s;
    font-size: 14px;
}

.variant-checkbox-label:has(input:checked) {
    border-color: #d4af37;
    color: #d4af37;
}

/* ── ORDER DETAIL / SUCCESS POLISH ─────────────────────────── */
.order-items-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 12px;
}

.order-items-table th {
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-items-table td {
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-secondary);
}

/* ── RESPONSIVE CHECKOUT ───────────────────────────────────── */
@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-summary-col {
        position: static;
        order: -1;
    }
}
