/**
 * Jyotived - Pooja Booking Platform
 * Main Stylesheet - Redesigned Version
 * Theme: Traditional Indian Spiritual + Modern SaaS
 */

/* ============================================
   CSS VARIABLES - Enhanced Color Palette
   ============================================ */
:root {
    /* Primary Colors */
    --primary-saffron: #FF9933;
    --primary-saffron-dark: #E87E1A;
    --primary-saffron-light: #FFB366;
    
    /* Secondary Colors */
    --deep-maroon: #8B1C1C;
    --deep-red: #B22222;
    --deep-red-dark: #8B0000;
    
    /* Gold Accents */
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8941F;
    
    /* Background Colors */
    --warm-cream: #F8F1E5;
    --cream: #FFF8E7;
    --cream-dark: #F5E6D3;
    --warm-white: #FFFAF0;
    --parchment: #F5E6C8;
    
    /* Accent Colors */
    --sacred-orange: #FF7700;
    --spiritual-brown: #5D3A1A;
    --divine-yellow: #FFA500;
    
    /* Neutral Colors */
    --text-dark: #2C1810;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
    --border-color: #E0D5C8;
    
    /* Gradients */
    --gradient-saffron: linear-gradient(135deg, #FF9933 0%, #FF7700 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    --gradient-divine: linear-gradient(135deg, #FF9933 0%, #D4AF37 50%, #FF7700 100%);
    --gradient-maroon: linear-gradient(135deg, #8B1C1C 0%, #5D1810 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 153, 51, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(139, 69, 19, 0.08);
    --shadow-medium: 0 8px 30px rgba(139, 69, 19, 0.12);
    --shadow-strong: 0 12px 40px rgba(139, 69, 19, 0.18);
    --shadow-glow: 0 0 30px rgba(255, 153, 51, 0.3);
    
    /* Typography */
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-hindi: 'Noto Sans Devanagari', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1280px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--warm-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-saffron);
}

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

/* ============================================
   MANDALA BACKGROUND PATTERN
   ============================================ */
.mandala-bg {
    position: relative;
}

.mandala-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L55 25 L70 20 L60 35 L75 45 L58 48 L65 65 L50 55 L35 65 L42 48 L25 45 L40 35 L30 20 L45 25 Z' fill='none' stroke='%23FF9933' stroke-width='0.5' opacity='0.08'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.06'/%3E%3Ccircle cx='50' cy='50' r='20' fill='none' stroke='%23FF9933' stroke-width='0.3' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   DECORATIVE ELEMENTS
   ============================================ */
.lotus-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.lotus-divider::before,
.lotus-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lotus-divider i {
    color: var(--gold);
    font-size: 1.2rem;
}

.diya-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-saffron);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 25px;
}

.hindi-text {
    font-family: var(--font-hindi);
}

/* ============================================
   BUTTONS - Enhanced
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-saffron);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 119, 0, 0.35);
}

.btn-primary:hover {
    background: var(--primary-saffron-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.45);
    color: white;
}

.btn-secondary {
    background: var(--gradient-gold);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.btn-secondary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    color: var(--text-dark);
}

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

.btn-outline:hover {
    background: var(--primary-saffron);
    color: white;
    transform: translateY(-3px);
}

.btn-white {
    background: white;
    color: var(--primary-saffron);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--warm-cream);
    color: var(--primary-saffron-dark);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ============================================
   HEADER & NAVIGATION - Enhanced
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 241, 229, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-medium);
    background: rgba(248, 241, 229, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary-saffron);
    letter-spacing: 0.5px;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-saffron);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-saffron);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(248, 241, 229, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    box-shadow: var(--shadow-medium);
    z-index: 999;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-nav-menu a:hover {
    color: var(--primary-saffron);
}

/* ============================================
   HERO SECTION - Redesigned
   ============================================ */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 15 L65 30 L80 25 L70 40 L85 50 L68 53 L75 70 L60 60 L45 70 L52 53 L35 50 L50 40 L40 25 L55 30 Z' fill='none' stroke='%23FF9933' stroke-width='0.5' opacity='0.06'/%3E%3Ccircle cx='60' cy='60' r='35' fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.05'/%3E%3C/svg%3E");
    background-size: 250px;
    pointer-events: none;
}

.hero-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-saffron);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 153, 51, 0.2);
}

.hero-badge i {
    color: var(--deep-red);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.hero-title .line1 {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title .line2 {
    display: block;
    background: var(--gradient-saffron);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line3 {
    display: block;
    color: var(--deep-maroon);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(139, 28, 28, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

.hero-image-glow {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: -1;
}

.hero-image-glow-2 {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 180px;
    height: 180px;
    background: var(--gradient-gold);
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.2;
    z-index: -1;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-saffron);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

/* ============================================
   SHLOK SECTION - Scripture Card Style
   ============================================ */
.shlok-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--parchment) 0%, var(--cream) 100%);
    position: relative;
    overflow: hidden;
}

.shlok-section::before,
.shlok-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L55 25 L70 20 L60 35 L75 45 L58 48 L65 65 L50 55 L35 65 L42 48 L25 45 L40 35 L30 20 L45 25 Z' fill='none' stroke='%23D4AF37' stroke-width='1' opacity='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.shlok-section::before {
    top: 20px;
    left: 20px;
}

.shlok-section::after {
    bottom: 20px;
    right: 20px;
    transform: rotate(180deg);
}

.shlok-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 60px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--gold);
    position: relative;
    text-align: center;
}

.shlok-card::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-md);
    pointer-events: none;
    opacity: 0.5;
}

.shlok-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.shlok-header i {
    color: var(--gold);
    font-size: 1.5rem;
}

.shlok-header span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.shlok-sanskrit {
    font-family: var(--font-hindi);
    font-size: 1.6rem;
    color: var(--deep-maroon);
    line-height: 2;
    margin-bottom: 30px;
}

.shlok-divider {
    width: 80px;
    height: 2px;
    background: var(--gradient-saffron);
    margin: 0 auto 25px;
}

.shlok-meaning {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    font-style: italic;
}

.shlok-meaning strong {
    color: var(--primary-saffron);
    font-style: normal;
}

/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ============================================
   UPCOMING LIVE POOJAS
   ============================================ */
.live-poojas-section {
    background: var(--warm-cream);
}

.live-poojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.live-pooja-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.live-pooja-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-saffron);
}

.live-pooja-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-saffron);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.live-pooja-card:hover::before {
    opacity: 1;
}

.live-pooja-date {
    text-align: center;
    min-width: 70px;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 15px;
    border-radius: var(--radius-md);
}

.live-pooja-date-day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-saffron);
    line-height: 1;
}

.live-pooja-date-month {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-top: 5px;
}

.live-pooja-info {
    flex: 1;
}

.live-pooja-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.live-pooja-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.live-pooja-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.live-pooja-status.upcoming {
    background: #E3F2FD;
    color: #1976D2;
}

.live-pooja-status.soon {
    background: #FFF3E0;
    color: #F57C00;
}

/* ============================================
   POOJA CARDS - Premium Design
   ============================================ */
.poojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 35px;
}

.pooja-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid transparent;
}

.pooja-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-saffron);
}

.pooja-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pooja-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pooja-card:hover .pooja-card-image img {
    transform: scale(1.08);
}

.pooja-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-saffron);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pooja-card-content {
    padding: 28px;
}

.pooja-card-category {
    font-size: 0.8rem;
    color: var(--primary-saffron);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 500;
}

.pooja-card-title {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.pooja-card-title-hindi {
    font-family: var(--font-hindi);
    font-size: 1rem;
    color: var(--deep-maroon);
    margin-bottom: 12px;
}

.pooja-card-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.pooja-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pooja-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pooja-card-meta i {
    color: var(--gold);
}

.pooja-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.pooja-card-price {
    display: flex;
    flex-direction: column;
}

.pooja-card-price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pooja-card-price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-saffron);
}

.pooja-card-price-converted {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories-section {
    background: var(--warm-white);
}

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

.category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-saffron);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-saffron);
    box-shadow: var(--shadow-medium);
}

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

.category-icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.3);
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-name-hindi {
    font-family: var(--font-hindi);
    font-size: 0.95rem;
    color: var(--deep-maroon);
    margin-bottom: 10px;
}

.category-count {
    font-size: 0.85rem;
    color: var(--text-light);
    background: var(--cream);
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold);
}

.feature-icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 153, 51, 0.35);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works-section {
    background: var(--warm-white);
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-saffron), var(--gold), var(--primary-saffron));
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 90px;
    height: 90px;
    background: var(--gradient-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    border: 6px solid white;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--cream);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

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

.testimonial-rating {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-saffron);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 15 L65 30 L80 25 L70 40 L85 50 L68 53 L75 70 L60 60 L45 70 L52 53 L35 50 L50 40 L40 25 L55 30 Z' fill='none' stroke='white' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.cta-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-saffron);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo-text {
    color: var(--primary-saffron);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.footer-social a:hover {
    background: var(--primary-saffron);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: var(--gold);
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-saffron);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--primary-saffron);
    margin-top: 3px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: var(--gradient-saffron);
    padding: 160px 0 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 15 L65 30 L80 25 L70 40 L85 50 L68 53 L75 70 L60 60 L45 70 L52 53 L35 50 L50 40 L40 25 L55 30 Z' fill='none' stroke='white' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
    background-size: 200px;
    pointer-events: none;
}

.page-header-title {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-header-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: white;
}

/* ============================================
   POOJA DETAILS PAGE
   ============================================ */
.pooja-details {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

.pooja-details-image {
    position: sticky;
    top: 100px;
}

.pooja-details-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.pooja-details-content h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.pooja-details-hindi {
    font-family: var(--font-hindi);
    font-size: 1.4rem;
    color: var(--deep-maroon);
    margin-bottom: 25px;
}

.pooja-details-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.pooja-details-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.pooja-details-meta-item i {
    color: var(--primary-saffron);
}

.pooja-details-price-box {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 35px;
    border: 1px solid var(--border-color);
}

.pooja-details-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 18px;
}

.pooja-details-price-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-saffron);
}

.pooja-details-price-converted {
    font-size: 1.05rem;
    color: var(--text-light);
}

.pooja-details-section {
    margin-bottom: 35px;
}

.pooja-details-section h3 {
    font-size: 1.3rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
}

.pooja-details-section h3 i {
    color: var(--primary-saffron);
    font-size: 1.1rem;
}

.pooja-details-section p,
.pooja-details-section ul {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.pooja-details-section ul {
    list-style: none;
    padding-left: 0;
}

.pooja-details-section ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.pooja-details-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-saffron);
}

/* ============================================
   BOOKING FORM
   ============================================ */
.booking-section {
    background: var(--cream);
    min-height: 100vh;
    padding-top: 100px;
}

.booking-container {
    max-width: 850px;
    margin: 0 auto;
}

.booking-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
}

.booking-header {
    background: var(--gradient-saffron);
    padding: 35px;
    color: white;
}

.booking-header h2 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.booking-body {
    padding: 45px;
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-label span {
    color: var(--deep-red);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-saffron);
    box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.1);
}

.form-control::placeholder {
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238B4513' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.booking-summary {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 35px;
    border: 1px solid var(--border-color);
}

.booking-summary h4 {
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: var(--text-dark);
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 0.95rem;
}

.booking-summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary-saffron);
}

/* ============================================
   TRACK ORDER
   ============================================ */
.track-order-form {
    max-width: 550px;
    margin: 0 auto 50px;
}

.track-order-input-group {
    display: flex;
    gap: 12px;
}

.track-order-input-group .form-control {
    flex: 1;
}

.order-status-timeline {
    max-width: 750px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 45px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-saffron), var(--gold));
}

.timeline-item {
    position: relative;
    padding-bottom: 35px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -38px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item.active .timeline-dot {
    background: var(--primary-saffron);
    border-color: var(--primary-saffron);
}

.timeline-item.completed .timeline-dot {
    background: var(--primary-saffron);
    border-color: var(--primary-saffron);
}

.timeline-item.completed .timeline-dot::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 12px;
}

.timeline-content {
    background: white;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-soft);
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   ALERTS & MESSAGES
   ============================================ */
.alert {
    padding: 18px 22px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.alert-danger {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

.alert-warning {
    background: #FFF3E0;
    color: #EF6C00;
    border: 1px solid #FFCC80;
}

.alert-info {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #90CAF9;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-success {
    background: #E8F5E9;
    color: #2E7D32;
}

.badge-danger {
    background: #FFEBEE;
    color: #C62828;
}

.badge-warning {
    background: #FFF3E0;
    color: #EF6C00;
}

.badge-info {
    background: #E3F2FD;
    color: #1565C0;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination a {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-soft);
}

.pagination a:hover {
    background: var(--primary-saffron);
    color: white;
}

.pagination span {
    background: var(--gradient-saffron);
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First
   ============================================ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .pooja-details {
        grid-template-columns: 1fr;
    }
    
    .pooja-details-image {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .shlok-card {
        padding: 35px 30px;
    }
    
    .shlok-sanskrit {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title .line1 {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .shlok-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .shlok-sanskrit {
        font-size: 1.1rem;
        line-height: 1.8;
    }
    
    .shlok-section::before,
    .shlok-section::after {
        width: 80px;
        height: 80px;
    }
    
    .poojas-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .steps::before {
        display: none;
    }
    
    .step {
        text-align: left;
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }
    
    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .page-header-title {
        font-size: 2.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-body {
        padding: 25px;
    }
    
    .track-order-input-group {
        flex-direction: column;
    }
    
    .timeline {
        padding-left: 35px;
    }
    
    .timeline-dot {
        left: -30px;
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 25px 20px;
    }
    
    .shlok-sanskrit {
        font-size: 1rem;
    }
    
    .pooja-card-content {
        padding: 20px;
    }
    
    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

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

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Loading spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--cream-dark);
    border-top-color: var(--primary-saffron);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-saffron-dark);
}

/* Lazy loading placeholder */
.lazy-image {
    background: linear-gradient(90deg, var(--cream) 25%, var(--warm-white) 50%, var(--cream) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
