/* ============================================
   MAMA T'S CREATIONS — MAIN STYLESHEET
   Created with Love. Guided by Faith.
============================================ */

/* ========== CSS VARIABLES (BRAND COLORS & FONTS) ========== */
:root {
  /* Brand Colors */
  --sky-blue: #64B5F6;
  --deep-blue: #1E88E5;
  --soft-white: #FFFFFF;
  --cloud-gray: #F4F6F8;
  --gold: #D4AF37;
  --warm-gold: #F9C74F;
  --text-dark: #243447;
  --soft-navy: #0D3B66;
  --text-muted: #5a6a7a;
  --border-light: #dce6f0;

  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --font-accent: 'Great Vibes', cursive;

  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1200px;

  /* Shadows */
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --hover-shadow: 0 10px 32px rgba(212, 175, 55, 0.22), 0 4px 14px rgba(13, 59, 102, 0.1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  /* Transitions */
  --transition: all 0.3s ease;
}

/* ========== CSS RESET ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--soft-white);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ========== CONTAINER ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--soft-navy);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.4px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  color: var(--soft-navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--warm-gold), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--soft-white);
  border: 2px solid var(--soft-white);
}

.btn-secondary:hover {
  background: var(--soft-white);
  color: var(--soft-navy);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
}

.btn-outline:hover {
  background: var(--deep-blue);
  color: var(--soft-white);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
============================================ */
#main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 24px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-navy);
  letter-spacing: 0.5px;
}

.logo-text span {
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* Hamburger button — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--soft-navy);
  cursor: pointer;
}

/* ============================================
   HERO SECTION — LOGO FIRST
============================================ */
#hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(
    160deg,
    #0a2a4a 0%,
    #0D3B66 25%,
    #1E88E5 60%,
    #64B5F6 85%,
    #e8f4fd 100%
  );
  position: relative;
  overflow: hidden;
}

/* Radial gold glow behind logo */
#hero::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(249, 199, 79, 0.18) 0%,
    rgba(212, 175, 55, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Subtle cloud texture overlay */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
}

/* Drifting clouds behind the hero — extends the logo's own sky/cloud imagery */
.hero-clouds {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-clouds .cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  filter: blur(16px);
}

.hero-clouds .cloud::before,
.hero-clouds .cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
  filter: inherit;
}

.hero-clouds .cloud-1 { width: 190px; height: 64px; top: 16%; left: -22%; opacity: 0.26; animation: cloudDrift 58s linear infinite; }
.hero-clouds .cloud-1::before { width: 80px; height: 80px; top: -36px; left: 20px; }
.hero-clouds .cloud-1::after  { width: 60px; height: 60px; top: -22px; left: 100px; }

.hero-clouds .cloud-2 { width: 130px; height: 46px; top: 62%; left: -28%; opacity: 0.18; animation: cloudDrift 80s linear infinite; animation-delay: -20s; }
.hero-clouds .cloud-2::before { width: 54px; height: 54px; top: -22px; left: 14px; }

.hero-clouds .cloud-3 { width: 150px; height: 50px; top: 36%; left: -18%; opacity: 0.2; animation: cloudDrift 68s linear infinite; animation-delay: -38s; }
.hero-clouds .cloud-3::before { width: 60px; height: 60px; top: -24px; left: 60px; }

@keyframes cloudDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(150vw); }
}

/* ===== HERO LOGO ===== */
.hero-logo {
  margin-bottom: 32px;
  animation: logoDropIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-logo-img {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(212, 175, 55, 0.5))
          drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  border-radius: 16px;
  animation: logoFloat 5.5s ease-in-out 1s infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-clouds .cloud,
  .hero-logo-img {
    animation: none !important;
  }
}

@keyframes logoDropIn {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.94);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== HERO SUBTITLE ===== */
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 580px;
  margin: 0 auto 28px;
  font-weight: 300;
  line-height: 1.8;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-subtitle strong {
  color: var(--warm-gold);
  font-weight: 600;
}

/* ===== HERO BADGES ===== */
.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.55s ease both;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--soft-white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.hero-badge i {
  color: var(--warm-gold);
  font-size: 0.8rem;
}

.hero-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--warm-gold);
}

/* ===== HERO BUTTONS ===== */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.7s ease both;
}

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

/* ===== MOBILE HERO ===== */
@media (max-width: 768px) {
  #hero {
    min-height: 80vh;
    padding: 40px 16px;
  }

  .hero-logo-img {
    max-width: 100%;
    border-radius: 12px;
  }

  .hero-badges {
    gap: 8px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-logo-img {
    border-radius: 10px;
  }
}

/* ============================================
   PRODUCT CATEGORIES SECTION
============================================ */
#categories {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.custom-emphasis-bar {
  background: linear-gradient(135deg, var(--soft-navy), #1a5276);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.custom-emphasis-bar > i {
  font-size: 2rem;
  color: var(--warm-gold);
  flex-shrink: 0;
}

.custom-emphasis-bar p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.6;
  flex: 1;
  min-width: 240px;
  text-align: left;
  margin: 0;
}

.custom-emphasis-bar p strong {
  color: var(--warm-gold);
}

/* "Made Just for You" badge on product cards */
.custom-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  color: var(--soft-navy);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--cloud-gray);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-shadow);
  background: var(--soft-white);
  border-color: var(--sky-blue);
}

.category-card i {
  font-size: 2.4rem;
  color: var(--deep-blue);
  margin-bottom: 16px;
  display: block;
}

.category-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--soft-navy);
  margin-bottom: 10px;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS / ORDER PROCESS SECTION
============================================ */
#order-process {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #f0f8ff 0%, #e8f4fd 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 48px;
}

.process-step {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
}

.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  color: var(--soft-navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step i {
  font-size: 2rem;
  color: var(--deep-blue);
  margin-bottom: 14px;
  display: block;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--soft-navy);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* ============================================
   FAITH / MISSION SECTION
============================================ */
#mission {
  padding: var(--section-padding);
  background: linear-gradient(
    160deg,
    var(--soft-navy) 0%,
    #1E4976 100%
  );
  text-align: center;
}

.mission-content {
  max-width: 680px;
  margin: 0 auto;
}

.mission-accent {
  font-family: var(--font-accent);
  font-size: 1.8rem;
  color: var(--warm-gold);
  margin-bottom: 16px;
}

#mission h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--soft-white);
  margin-bottom: 20px;
}

#mission p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

#mission .btn-outline {
  color: var(--warm-gold);
  border-color: var(--warm-gold);
  margin-top: 16px;
}

#mission .btn-outline:hover {
  background: var(--warm-gold);
  color: var(--soft-navy);
}

/* ============================================
   FOOTER
============================================ */
#main-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text {
  color: var(--soft-white);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.footer-links h4,
.footer-policies h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--warm-gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-links ul li,
.footer-policies ul li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-policies a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-policies a:hover {
  color: var(--warm-gold);
  padding-left: 4px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  color: var(--soft-navy);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom .fa-heart {
  color: #e05c7a;
}

/* ============================================
   MOBILE RESPONSIVE
============================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--soft-white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-accent {
    font-size: 1.5rem;
  }

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

/* ========== SCROLL REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SCROLLED HEADER STATE ========== */
#main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
/* ============================================
   PAGE HERO BANNER (inner pages)
============================================ */
.page-hero {
  background: linear-gradient(
    160deg,
    #0D3B66 0%,
    #1E88E5 50%,
    #64B5F6 100%
  );
  padding: 80px 24px;
  text-align: center;
  color: var(--soft-white);
}

.page-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--soft-white);
  margin: 12px 0;
}

.page-hero-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   SHOP FILTER BAR
============================================ */
#shop-nav {
  background: var(--soft-white);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 65px;
  z-index: 900;
}

.shop-filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  background: var(--cloud-gray);
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--deep-blue);
  color: var(--soft-white);
  border-color: var(--deep-blue);
}

/* ============================================
   SHOP SECTIONS
============================================ */
.shop-section {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.shop-section-alt {
  background: var(--cloud-gray);
}

.shop-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.shop-section-header i {
  font-size: 2.8rem;
  color: var(--deep-blue);
  margin-bottom: 12px;
  display: block;
}

.shop-section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--soft-navy);
  margin-bottom: 10px;
}

.shop-section-header p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   PRODUCT GRID & CARDS
============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

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

.product-image-placeholder {
  background: linear-gradient(135deg, #e8f4fd, #d0e8f8);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder i {
  font-size: 4rem;
  color: var(--deep-blue);
  opacity: 0.4;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--soft-navy);
  margin-bottom: 10px;
}

.product-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.product-tag {
  background: var(--cloud-gray);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--soft-navy);
  margin-bottom: 16px !important;
}

/* ============================================
   SHOP BOTTOM CTA BANNER
============================================ */
#shop-cta {
  padding: var(--section-padding);
  background: linear-gradient(
    160deg,
    var(--soft-navy) 0%,
    #1E4976 100%
  );
}

.cta-banner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--soft-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1rem;
}

.cta-banner .hero-accent {
  font-size: 1.6rem;
}
/* ============================================
   CUSTOM ORDER PAGE — MINI STEPS
============================================ */
#order-steps {
  padding: 48px 0;
  background: var(--cloud-gray);
  border-bottom: 1px solid var(--border-light);
}

.mini-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.mini-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 220px;
}

.mini-step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-navy);
  font-size: 1.1rem;
}

.mini-step-text h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--soft-navy);
  margin-bottom: 4px;
}

.mini-step-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.mini-step-divider {
  color: var(--sky-blue);
  font-size: 1.2rem;
  padding-top: 12px;
  display: flex;
  align-items: center;
}

/* ============================================
   ORDER FORM
============================================ */
#order-form-section {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.form-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 40px;
}

.form-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--soft-navy);
  margin-bottom: 10px;
}

.form-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.required-star {
  color: #e05c7a;
  font-weight: 700;
}

/* Fieldsets */
.form-fieldset {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  background: var(--cloud-gray);
}

.form-fieldset legend {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--soft-navy);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-fieldset legend i {
  color: var(--deep-blue);
}

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

/* Form groups */
.form-group {
  margin-top: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--soft-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deep-blue);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.12);
}

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

/* Checkbox / radio group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 50px;
  background: var(--soft-white);
  transition: var(--transition);
}

.checkbox-label:hover {
  border-color: var(--deep-blue);
  color: var(--deep-blue);
}

.checkbox-label input {
  width: auto;
  margin: 0;
  accent-color: var(--deep-blue);
}

/* Submit area */
.form-submit {
  text-align: center;
  margin-top: 32px;
}

.form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note i {
  color: var(--deep-blue);
}

.btn-large {
  padding: 16px 48px;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ============================================
   TRUST STRIP
============================================ */
#trust-strip {
  padding: 36px 0;
  background: linear-gradient(135deg, var(--soft-navy), #1E4976);
}

.trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--soft-white);
}

.trust-item i {
  font-size: 1.8rem;
  color: var(--warm-gold);
}

.trust-item p {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   MOBILE — FORM RESPONSIVE
============================================ */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .mini-step-divider {
    display: none;
  }

  .mini-steps {
    flex-direction: column;
    align-items: center;
  }

  .mini-step {
    max-width: 100%;
  }
}
/* ============================================
   ABOUT PAGE
============================================ */
#about-story {
  padding: var(--section-padding);
  background: var(--soft-white);
}

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

.about-image-placeholder {
  background: linear-gradient(135deg, #e8f4fd, #d0e8f8);
  border-radius: var(--radius-lg);
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--deep-blue);
  border: 2px dashed var(--sky-blue);
}

.about-image-placeholder i {
  font-size: 4rem;
  opacity: 0.4;
}

.about-image-placeholder p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--soft-navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Values */
#about-values {
  padding: var(--section-padding);
  background: var(--cloud-gray);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
}

.value-card i {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--soft-navy);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Faith quote */
#about-quote {
  padding: var(--section-padding);
  background: linear-gradient(160deg, var(--soft-navy), #1E4976);
}

.faith-quote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.faith-quote .fa-quote-left {
  font-size: 2.5rem;
  color: var(--warm-gold);
  opacity: 0.5;
  margin-bottom: 20px;
}

.faith-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--soft-white);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 16px;
}

.faith-quote cite {
  font-size: 0.95rem;
  color: var(--warm-gold);
  font-style: normal;
  font-weight: 500;
}

/* About CTA reuses #shop-cta styles */
#about-cta {
  padding: var(--section-padding);
  background: linear-gradient(160deg, var(--soft-navy) 0%, #1E4976 100%);
}

/* ============================================
   CONTACT PAGE
============================================ */
#contact-section {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: var(--soft-navy);
  margin-bottom: 14px;
}

.contact-info > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.contact-info > p a {
  color: var(--deep-blue);
  font-weight: 500;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-blue), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-white);
  font-size: 1rem;
}

.contact-detail-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-detail-item p,
.contact-detail-item a {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-detail-item a:hover {
  color: var(--deep-blue);
}

.contact-social p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* Contact form reuses order form styles */
.contact-form .form-group {
  margin-top: 16px;
}

.contact-form-wrapper {
  background: var(--cloud-gray);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border-light);
}

/* ============================================
   THANK YOU PAGE
============================================ */
#thank-you-section {
  padding: 100px 24px;
  background: linear-gradient(160deg, #f0f8ff, #e8f4fd);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-box {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.thank-you-box h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--soft-navy);
  margin-bottom: 20px;
}

.thank-you-message {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 12px;
}

.thank-you-scripture {
  background: var(--soft-white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 32px 0;
  text-align: left;
}

.thank-you-scripture i {
  color: var(--warm-gold);
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}

.thank-you-scripture p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--soft-navy);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 8px;
}

.thank-you-scripture cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.thank-you-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ============================================
   MOBILE — ABOUT & CONTACT
============================================ */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image-placeholder {
    height: 260px;
  }

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

  .contact-form-wrapper {
    padding: 24px;
  }
}
/* ============================================
   FINAL POLISH & UTILITY CLASSES
============================================ */

/* Smooth page load */
body {
  animation: fadeInPage 0.4s ease;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Selection color */
::selection {
  background: var(--warm-gold);
  color: var(--soft-navy);
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--warm-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cloud-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--sky-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-blue);
}

/* Image replacement utility */
.img-placeholder {
  background: linear-gradient(135deg, #e8f4fd, #d0e8f8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-blue);
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Print styles */
@media print {
  #main-header,
  #main-footer,
  .btn,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 12pt;
  }
}
/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  color: var(--soft-navy);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.5);
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ============================================
   PRICING HIGHLIGHT BAR
============================================ */
.pricing-highlight-bar {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.price-pill {
  background: var(--soft-white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 140px;
  transition: var(--transition);
}

.price-pill:hover {
  border-color: var(--sky-blue);
  transform: translateY(-3px);
  box-shadow: var(--card-shadow);
}

.price-pill i {
  font-size: 1.6rem;
  color: var(--deep-blue);
}

.price-pill span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-pill strong {
  font-size: 1.5rem;
  color: var(--soft-navy);
  font-family: var(--font-heading);
}

.price-pill.best-value {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffbf0, #fff8e1);
}

.price-pill.best-value i,
.price-pill.best-value strong {
  color: var(--gold);
}

.best-value-tag {
  background: var(--gold);
  color: var(--soft-navy);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ============================================
   FEATURED PRODUCT CARD
============================================ */
.product-card-featured {
  border: 2px solid var(--gold) !important;
  position: relative;
}

.product-featured-ribbon {
  position: absolute;
  top: 14px;
  right: -1px;
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  color: var(--soft-navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px 0 0 4px;
  letter-spacing: 0.5px;
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 4px;
}

/* ============================================
   PRICING SUMMARY TABLE
============================================ */
#pricing-summary {
  padding: var(--section-padding);
  background: var(--cloud-gray);
}

.pricing-table-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--soft-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--soft-navy), #1E4976);
  color: var(--soft-white);
}

.pricing-table th {
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5px;
}

.pricing-table td {
  padding: 14px 20px;
  font-size: 0.93rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
}

.pricing-table td i {
  color: var(--deep-blue);
  margin-right: 8px;
  width: 16px;
}

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

.pricing-table tr:hover td {
  background: var(--cloud-gray);
}

.table-highlight td {
  background: linear-gradient(135deg, #fffbf0, #fff8e1);
  font-weight: 600;
  color: var(--soft-navy);
}

.table-highlight:hover td {
  background: linear-gradient(135deg, #fff8e1, #fef3c7) !important;
}

.pricing-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pricing-note i {
  color: var(--deep-blue);
}

.pricing-note a {
  color: var(--deep-blue);
  font-weight: 500;
}

.pricing-note a:hover {
  text-decoration: underline;
}

/* Pricing table mobile */
@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .pricing-highlight-bar {
    gap: 10px;
  }

  .price-pill {
    min-width: 120px;
    padding: 12px 16px;
  }
}

/* ============================================
   PRICING SNAPSHOT (Homepage)
============================================ */
#price-snapshot {
  padding: var(--section-padding);
  background: var(--cloud-gray);
}

.price-snapshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.price-snap-card {
  background: var(--soft-white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
}

.price-snap-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
  border-color: var(--sky-blue);
}

.price-snap-card i {
  font-size: 1.8rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
  display: block;
}

.price-snap-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--soft-navy);
  margin-bottom: 8px;
}

.snap-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--soft-navy);
  font-family: var(--font-heading);
  margin: 0;
}

.featured-snap {
  border: 2px solid var(--gold) !important;
  background: linear-gradient(135deg, #fffbf0, #fff8e1);
}

.featured-snap i,
.featured-snap .snap-price {
  color: var(--gold);
}

.snap-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--warm-gold));
  color: var(--soft-navy);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 6px;
  letter-spacing: 0.3px;
}

@media (max-width: 480px) {
  .price-snapshot-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .price-snap-card {
    padding: 16px 8px;
  }

  .snap-price {
    font-size: 1.2rem;
  }
}

/* ============================================
   FAQ PAGE
============================================ */
#faq-section {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 48px;
}

.faq-category h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--soft-navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category h2 i {
  color: var(--deep-blue);
  font-size: 1.2rem;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--soft-white);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--cloud-gray);
  color: var(--soft-navy);
}

.faq-question i {
  color: var(--deep-blue);
  font-size: 0.85rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-question.open i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  margin: 14px 0 0;
}

.faq-answer a {
  color: var(--deep-blue);
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
  background: linear-gradient(160deg, var(--soft-navy), #1E4976);
  border-radius: var(--radius-lg);
  padding: 56px 32px;
  margin-top: 48px;
}

.faq-cta h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--soft-white);
  margin-bottom: 12px;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

/* ============================================
   LEGAL / POLICY PAGES
============================================ */
#legal-section {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.legal-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.legal-intro {
  font-size: 1.02rem;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.legal-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--soft-navy);
  margin: 36px 0 12px;
}

.legal-wrapper h2:first-of-type {
  margin-top: 0;
}

.legal-wrapper p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.legal-wrapper a {
  color: var(--deep-blue);
  font-weight: 500;
}

.legal-wrapper a:hover {
  text-decoration: underline;
}

.legal-list {
  list-style: none;
  margin: 4px 0 16px 0;
}

.legal-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding: 6px 0 6px 26px;
  position: relative;
}

.legal-list li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--deep-blue);
  font-size: 0.82rem;
  top: 8px;
}

/* ============================================
   MANAGE / UPDATE FORM — field hint text
============================================ */
.field-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

/* ============================================
   REAL PRODUCT IMAGES
============================================ */
.product-img-wrap {
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #e8f4fd, #d0e8f8);
  position: relative;
}

.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.product-img-wrap img[src$=".svg"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   WORK GALLERY — homepage featured section
============================================ */
#gallery {
  padding: var(--section-padding);
  background: var(--soft-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(13,59,102,0.85));
  color: white;
  padding: 24px 14px 12px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-heading);
}

/* ============================================================
   PREMIUM SIGNATURE SYSTEM
   Language: the physical craft of the products themselves —
   stitching, fabric tags, hand-finished seams. Used with
   restraint at section boundaries and on price/value badges,
   not scattered everywhere.
================================================================ */

/* ---------- Refined button hover (lift + warm glow, no gimmicks) ---------- */
.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.38);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

/* ---------- Section title gold accent ---------- */
.section-title {
  position: relative;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold), var(--warm-gold));
}

/* ---------- Eyebrow / kicker label ---------- */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow-tag i {
  font-size: 0.72rem;
}

.eyebrow-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

/* ---------- Stitched seam divider ----------
   A dashed thread line with a small circular
   medallion — marks a transition the way a seam
   marks where two pieces of fabric are joined. */
.stitch-divider {
  position: relative;
  height: 48px;
  margin: 0;
  overflow: visible;
}

.stitch-divider svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  overflow: visible;
  transform: translateY(-50%);
}

.stitch-divider .stitch-line {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 9 7;
  fill: none;
  opacity: 0.5;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.1s ease;
}

.stitch-divider.stitch-animate .stitch-line {
  animation: stitchDraw 1.4s ease forwards;
}

@keyframes stitchDraw {
  from { stroke-dashoffset: 1400; opacity: 0; }
  to   { stroke-dashoffset: 0; opacity: 0.5; }
}

.stitch-medallion {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--soft-white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Light variant for use on dark section backgrounds */
.stitch-divider--light .stitch-line {
  stroke: var(--warm-gold);
  opacity: 0.65;
}

.stitch-divider--light .stitch-medallion {
  background: var(--soft-navy);
  border-color: var(--warm-gold);
  color: var(--warm-gold);
}

/* ---------- Swing tag (Best Value badge) ----------
   Reshapes the existing .best-value-tag into a real
   garment price-tag silhouette: notched left edge and
   a small punch-hole, tied to the apparel the site sells. */
.best-value-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--soft-navy);
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  padding: 4px 12px 4px 20px;
  border-radius: 0;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 12px 100%, 0 50%);
  transform: rotate(-2.5deg);
  transition: transform 0.25s ease;
}

.best-value-tag::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--soft-navy);
  opacity: 0.45;
}

.price-pill.best-value:hover .best-value-tag {
  transform: rotate(0deg);
}

/* ---------- Subtle woven-canvas card texture ----------
   Applied on top of existing card backgrounds without
   disturbing their colors — pure texture, very low opacity. */
.category-card,
.value-card,
.process-step,
.price-snap-card,
.product-card,
.form-fieldset,
.faq-item {
  background-image: repeating-linear-gradient(
    45deg,
    rgba(13, 59, 102, 0.02) 0px,
    rgba(13, 59, 102, 0.02) 1px,
    transparent 1px,
    transparent 8px
  );
}

/* ============================================
   MEET THE MAKER (Homepage)
============================================ */
#meet-maker {
  padding: var(--section-padding);
  background: var(--cloud-gray);
}

.meet-maker-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.meet-maker-photo-frame {
  background: linear-gradient(135deg, #e8f4fd, #d0e8f8);
  border-radius: var(--radius-lg);
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--deep-blue);
  border: 2px dashed var(--sky-blue);
}

.meet-maker-photo-frame i {
  font-size: 3rem;
  opacity: 0.4;
}

.meet-maker-photo-frame p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0;
}

.meet-maker-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--soft-navy);
  margin-bottom: 16px;
}

.meet-maker-text p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .meet-maker-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .meet-maker-photo-frame {
    height: 240px;
  }
}

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .stitch-divider.stitch-animate .stitch-line {
    animation: none;
    stroke-dashoffset: 0;
    opacity: 0.5;
  }
}