/* =========================================
   Try Jesus - Modern 2025 Design System
   ========================================= */

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

html {
    scroll-behavior: smooth;
}

:root {
    /* Colors */
    --gold: #d4af37;
    --gold-dark: #b8962e;
    --gold-light: #f4e4c1;
    --gold-glow: rgba(212, 175, 55, 0.25);
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --navy-medium: #0f3460;
    --navy-50: rgba(26, 26, 46, 0.05);
    --white: #ffffff;
    --white-glass: rgba(255, 255, 255, 0.85);
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #495057;
    --text: #2d3436;
    
    /* Shadows - Layered for depth */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.3);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

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

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

img {
    max-width: 100%;
    height: auto;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* =========================================
   Buttons - Modern with soft shadows
   ========================================= */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    box-shadow: var(--shadow-md), 0 4px 16px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg), 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

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

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-light {
    background: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* =========================================
   Navbar - Glassmorphism
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: var(--white);
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    font-size: 1.35rem;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    width: 44px;
    height: 44px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

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

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

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

.nav-cart {
    position: relative;
}

.nav-cart::after {
    display: none !important;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* =========================================
   Hero Section - With image background
   ========================================= */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(15, 52, 96, 0.88) 100%),
        url('/assets/main.jpg') center/cover no-repeat fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient orbs */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 52, 96, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--white) 0%, rgba(255,255,255,0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 1.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
}

.hero-verse {
    margin-top: 5rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 650px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-verse p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.8;
}

.hero-verse cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
}

/* =========================================
   Mission Section - Cards with depth
   ========================================= */
.mission-section {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.mission-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.mission-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.9;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.mission-card {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-bounce);
}

.mission-card:hover .card-icon {
    transform: scale(1.15);
}

.mission-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.mission-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================================
   Featured Products Section
   ========================================= */
.featured-products {
    padding: 8rem 0;
    background: var(--gray-light);
    text-align: center;
}

.featured-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

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

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

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

.product-card h3 {
    padding: 1.25rem 1.5rem 0.5rem;
    font-size: 1.15rem;
    color: var(--navy);
}

.product-price {
    padding: 0 1.5rem 1.5rem;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1.1rem;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--gray);
    font-size: 1.1rem;
}

/* =========================================
   CTA Section
   ========================================= */
.cta-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 52, 96, 0.95) 100%),
        url('/assets/pic2.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
    text-align: center;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.contact-section p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-email {
    font-size: 1.35rem;
    color: var(--gold-dark);
    font-weight: 600;
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.contact-email:hover {
    background: var(--gold-light);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
    width: 44px;
    height: 44px;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =========================================
   Shop Page
   ========================================= */
.shop-header {
    padding: 10rem 0 5rem;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(15, 52, 96, 0.88) 100%),
        url('/assets/main.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.shop-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 0.75rem;
}

.shop-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    padding: 5rem 0;
}

.shop-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.shop-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.shop-product-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

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

.shop-product-info {
    padding: 2rem;
}

.shop-product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.shop-product-info .price {
    font-size: 1.35rem;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.product-options {
    margin-bottom: 1.25rem;
}

.product-options label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-dark);
}

.product-options select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-options select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* =========================================
   Cart Drawer
   ========================================= */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 1.75rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.35rem;
    color: var(--navy);
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition-fast);
    line-height: 1;
}

.close-cart:hover {
    color: var(--navy);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

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

.cart-item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--navy);
}

.cart-item-details .variant {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.cart-item-details .item-price {
    font-weight: 700;
    color: var(--gold-dark);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #e9ecef;
    background: none;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-weight: 600;
}

.qty-btn:hover {
    background: var(--gray-light);
    border-color: var(--gray);
}

.remove-item {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 0.85rem;
    cursor: pointer;
    margin-left: auto;
    transition: var(--transition-fast);
}

.remove-item:hover {
    color: #a71d2a;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid #eee;
    background: var(--gray-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.checkout-btn {
    width: 100%;
    padding: 1.125rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checkout-btn:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    background: var(--gray);
    cursor: not-allowed;
    transform: none;
}

.empty-cart {
    text-align: center;
    padding: 4rem 1.5rem;
    color: var(--gray);
}

/* =========================================
   Success Page
   ========================================= */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
}

.success-content {
    max-width: 520px;
    background: var(--white);
    padding: 4rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.success-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.success-content p {
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* =========================================
   About Page
   ========================================= */
.about-header {
    padding: 10rem 0 5rem;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(15, 52, 96, 0.88) 100%),
        url('/assets/main.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.about-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 0.75rem;
}

.about-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
}

.about-section {
    padding: 6rem 0;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.75rem;
    text-align: center;
    color: var(--navy);
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.9;
}

/* Story Section */
.story-section {
    background: var(--white);
}

.story-content {
    max-width: 780px;
    margin: 0 auto;
}

.story-content h2 {
    text-align: left;
    margin-bottom: 2.5rem;
}

.story-content .lead {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text);
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 2;
    color: #555;
    margin-bottom: 1.75rem;
}

.story-content .signature {
    font-style: italic;
    color: var(--gold-dark);
    font-size: 1.2rem;
    margin-top: 2.5rem;
    font-weight: 500;
}

/* Mission Section (About page version) */
.mission-bg {
    background: var(--gray-light);
}

.mission-statement {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.mission-point {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.mission-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.point-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.25rem;
}

.mission-point h3 {
    font-size: 1.25rem;
    margin-bottom: 0.875rem;
    color: var(--navy);
}

.mission-point p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* =========================================
   Beliefs Section
   ========================================= */
.beliefs-section {
    background: var(--white);
}

.creeds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.creed-card {
    background: var(--gray-light);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.creed-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-glow);
    box-shadow: var(--shadow-lg);
}

.creed-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.creed-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.creed-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.creed-link:hover {
    color: var(--gold);
}

.beliefs-footer {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    max-width: 620px;
    margin: 2.5rem auto 0;
    line-height: 1.8;
}

/* FAQ Section */
.faq-section {
    background: var(--gray-light);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-question span {
    flex: 1;
    padding-right: 1.5rem;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 350px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--gray);
    line-height: 1.9;
    font-size: 1rem;
}

/* Get Started Section */
.get-started-section {
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

@media (min-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background: var(--gray-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: var(--transition-smooth);
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-gold);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0.75rem;
    color: var(--navy);
}

.step-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.step-link {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.step-link:hover {
    color: var(--gold);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-container {
        height: 70px;
    }
    
    .hero {
        padding: 7rem 1.5rem 3rem;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-verse {
        margin-top: 3rem;
        padding: 1.5rem;
    }
    
    .mission-section,
    .featured-products,
    .cta-section {
        padding: 5rem 0;
    }
    
    .mission-section h2,
    .featured-products h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .mission-cards,
    .products-preview,
    .shop-grid {
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .shop-header,
    .about-header {
        padding: 8rem 0 3rem;
    }
    
    .shop-header h1,
    .about-header h1 {
        font-size: 2.25rem;
    }
    
    .shop-grid {
        padding: 3rem 0;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .story-content .lead {
        font-size: 1.1rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .mission-cards,
    .products-preview,
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-product-image,
    .product-image {
        height: 280px;
    }
    
    .btn {
        padding: 0.875rem 2rem;
    }
    
    .success-content {
        padding: 2.5rem 1.5rem;
    }
}

/* =========================================
   Print Styles
   ========================================= */
@media print {
    .navbar,
    .cart-drawer,
    .cart-overlay,
    .hero-buttons,
    .btn {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem;
        background: var(--navy) !important;
    }
    
    body {
        color: #000;
    }
}

/* =========================================
   Blog Styles
   ========================================= */

/* Blog Header */
.blog-header {
    padding: 10rem 0 5rem;
    background: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(15, 52, 96, 0.88) 100%),
        url('/assets/main.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.blog-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: 0.75rem;
}

.blog-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
}

/* Blog Main */
.blog-main {
    padding: 5rem 0;
    background: var(--gray-light);
    min-height: 50vh;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    display: block;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-content {
    padding: 2rem;
}

.blog-card-meta {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.blog-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--navy);
    transition: color 0.2s ease;
}

.blog-card h2 a:hover {
    color: var(--gold-dark);
}

.blog-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.read-more {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--gold);
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.no-posts p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* Blog Post Page */
.blog-post {
    padding-top: 80px;
}

.post-header {
    padding: 4rem 0 3rem;
    background: var(--gray-light);
    text-align: center;
}

.post-meta {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.post-meta .author {
    margin-left: 0.5rem;
}

.post-meta .author::before {
    content: '•';
    margin-right: 0.5rem;
}

.post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--navy);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.post-featured-image {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.container-narrow {
    max-width: 750px;
}

.post-content {
    padding: 4rem 0;
}

.post-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 1.75rem;
}

.post-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: var(--navy);
}

.post-content h3 {
    font-size: 1.35rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.post-content blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: var(--gray-light);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--gray-dark);
}

.post-content blockquote p {
    margin-bottom: 0;
}

.post-content ul, .post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.post-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.post-content a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content a:hover {
    color: var(--gold);
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 2rem 0;
}

.post-footer {
    padding: 2rem 0 4rem;
    border-top: 1px solid #eee;
}

.back-to-blog {
    color: var(--gold-dark);
    font-weight: 600;
    transition: var(--transition-fast);
}

.back-to-blog:hover {
    color: var(--gold);
}

/* Responsive Blog */
@media (max-width: 768px) {
    .blog-header {
        padding: 8rem 0 3rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-image img {
        height: 200px;
    }
    
    .post-header {
        padding: 3rem 0 2rem;
    }
    
    .post-content {
        padding: 3rem 0;
    }
    
    .post-content p {
        font-size: 1.05rem;
    }
}
