/* ==========================================================================
   JAMAICAN EASTER BUN LANDING PAGE - FULL VIBES EDITION
   ========================================================================== */

/* CSS Variables */
:root {
    /* Jamaican Flag Colors */
    --ja-gold: #FED100;
    --ja-green: #009B3A;
    --ja-black: #000000;

    /* Extended Palette */
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #01334C;
    --gold: #FFD700;
    --gold-dark: #E5C100;
    --green: #00B341;
    --green-dark: #009030;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --dark: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;

    /* Easter Colors */
    --easter-purple: #9B59B6;
    --easter-pink: #FF69B4;
    --easter-blue: #3498DB;
    --easter-mint: #1ABC9C;

    /* Typography */
    --font-display: 'Bangers', cursive;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 40px rgba(255,107,53,0.4);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================================================
   PROMO PAGE WRAPPER - 1024px for PC, responsive for mobile
   ========================================================================== */

.promo-page-wrapper {
    max-width: 1024px;
    margin: 0 auto;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

/* Background behind the wrapper on large screens */
@media (min-width: 1025px) {
    body {
        background: linear-gradient(135deg, #01334C 0%, #1A1A1A 100%);
        min-height: 100vh;
    }

    .promo-page-wrapper {
        box-shadow: 0 0 80px rgba(0, 0, 0, 0.4);
        border-left: 4px solid var(--ja-gold);
        border-right: 4px solid var(--ja-gold);
    }
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ==========================================================================
   FLOATING EASTER EGGS ANIMATION
   ========================================================================== */

.floating-eggs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.egg {
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, var(--easter-purple), var(--easter-pink));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.15;
    animation: floatEgg 15s infinite ease-in-out;
}

.egg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 40%;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.egg-1 { left: 5%; animation-delay: 0s; background: linear-gradient(135deg, var(--ja-gold), #FFB347); }
.egg-2 { left: 20%; animation-delay: -3s; background: linear-gradient(135deg, var(--easter-blue), var(--easter-mint)); }
.egg-3 { left: 40%; animation-delay: -6s; background: linear-gradient(135deg, var(--easter-pink), var(--easter-purple)); }
.egg-4 { left: 60%; animation-delay: -9s; background: linear-gradient(135deg, var(--ja-green), #7ED321); }
.egg-5 { left: 75%; animation-delay: -12s; background: linear-gradient(135deg, var(--primary), var(--gold)); }
.egg-6 { left: 90%; animation-delay: -2s; background: linear-gradient(135deg, var(--easter-mint), var(--easter-blue)); }

@keyframes floatEgg {
    0%, 100% { transform: translateY(100vh) rotate(0deg); }
    50% { transform: translateY(-100px) rotate(180deg); }
}

/* ==========================================================================
   PROMO BANNER
   ========================================================================== */

.promo-banner {
    background: var(--ja-black);
    color: var(--ja-gold);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.banner-scroll {
    display: flex;
    gap: var(--space-lg);
    animation: scrollBanner 20s linear infinite;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.banner-scroll .dot {
    width: 8px;
    height: 8px;
    background: var(--ja-gold);
    border-radius: 50%;
    display: inline-block;
    align-self: center;
}

@keyframes scrollBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.easter-nav {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.pulse-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,107,53,0); }
}

/* ==========================================================================
   HERO SECTION - Image-Centric Design with Easter Bun Colors
   ========================================================================== */

.hero {
    position: relative;
    background: linear-gradient(180deg, #F9A825 0%, #F7931E 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45,27,18,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-main-content {
    position: relative;
    z-index: 10;
}

/* Hero Image - The star of the show */
.hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--space-md) var(--space-md) 0;
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(45,27,18,0.3);
}

/* Floating Action Bar */
.hero-action-bar {
    background: linear-gradient(135deg, var(--secondary) 0%, #012438 100%);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-md) var(--space-md) 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
}

.action-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.action-bar-info {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.action-bar-badge {
    background: var(--ja-gold);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.action-bar-price {
    color: var(--white);
    font-size: 1.1rem;
}

.action-bar-price strong {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ja-gold);
    letter-spacing: 0;
}

.action-bar-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.action-bar-buttons .btn-primary {
    background: linear-gradient(135deg, var(--ja-gold) 0%, #FFB347 100%);
    color: var(--secondary);
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(254,209,0,0.4);
}

.action-bar-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(254,209,0,0.5);
}

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline-dark:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
}

.hero-wave {
    position: relative;
    margin-top: -1px;
    color: var(--cream);
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Responsive Hero Adjustments */
@media (max-width: 768px) {
    .hero-image-wrapper {
        padding: var(--space-sm) var(--space-sm) 0;
    }

    .hero-action-bar {
        margin: var(--space-sm) var(--space-sm) 0;
        padding: var(--space-md);
    }

    .action-bar-content {
        flex-direction: column;
        text-align: center;
    }

    .action-bar-info {
        justify-content: center;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .action-bar-buttons {
        width: 100%;
        justify-content: center;
    }

    .action-bar-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-image-wrapper {
        padding: var(--space-xs) var(--space-xs) 0;
    }

    .hero-image-wrapper img {
        border-radius: var(--radius-md);
    }

    .hero-action-bar {
        margin: var(--space-xs) var(--space-xs) 0;
        padding: var(--space-sm);
        border-radius: var(--radius-md);
    }

    .action-bar-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    .action-bar-price {
        font-size: 1rem;
    }

    .action-bar-price strong {
        font-size: 1.5rem;
    }

    .action-bar-buttons .btn {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.btn-gold {
    background: linear-gradient(135deg, var(--ja-gold) 0%, #FFB347 100%);
    color: var(--ja-black);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254,209,0,0.4);
}

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

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
}

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

.btn-xl {
    padding: 20px 45px;
    font-size: 1.2rem;
}

.btn-full {
    width: 100%;
}

.btn-loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header.light {
    color: var(--white);
}

.section-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-tag.gold {
    background: var(--ja-gold);
    color: var(--ja-black);
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.highlight {
    color: var(--primary);
}

.highlight-gold {
    color: var(--ja-gold);
}

/* ==========================================================================
   VIDEO SECTION
   ========================================================================== */

.video-section {
    padding: var(--space-xxl) 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--ja-gold);
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */

.products-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(180deg, var(--ja-green) 0%, #004D1C 100%);
    position: relative;
    z-index: 10;
}

.products-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.processing-note {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    margin-top: var(--space-sm);
}

/* Featured Product */
.featured-product {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xxl);
    position: relative;
}

.featured-badge-wrap {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8F65 100%);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
    animation: badgePop 2s ease-in-out infinite;
}

@keyframes badgePop {
    0%, 100% { transform: scale(1) rotate(-3deg); }
    50% { transform: scale(1.05) rotate(3deg); }
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.featured-image {
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.image-ribbon {
    position: absolute;
    bottom: 20px;
    left: 0;
    background: var(--ja-gold);
    color: var(--ja-black);
    padding: 10px 30px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.featured-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    color: var(--secondary);
}

.featured-desc {
    color: var(--gray);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
}

.featured-includes {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.featured-includes li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 0;
    font-size: 1rem;
}

.featured-includes li svg {
    width: 24px;
    height: 24px;
    color: var(--ja-green);
    flex-shrink: 0;
}

.featured-includes li.special {
    color: var(--primary);
    font-weight: 600;
}

.featured-includes li.special svg {
    color: var(--primary);
}

.featured-pricing {
    display: flex;
    align-items: flex-end;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.price-compare {
    opacity: 0.6;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-old {
    font-size: 1.5rem;
    text-decoration: line-through;
}

.price-main .price-current {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    color: var(--ja-green);
    letter-spacing: 0;
}

.price-main .price-current sup {
    font-size: 1.2rem;
}

/* Products Grid */
.products-subtitle {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: var(--space-xl);
}

.products-subtitle .line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--ja-gold), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

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

.product-card.popular {
    border: 3px solid var(--ja-gold);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--ja-gold);
    color: var(--ja-black);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 10;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.product-size {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

.product-info {
    padding: var(--space-md);
}

.product-info h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.product-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.product-prices {
    margin-bottom: var(--space-md);
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.95rem;
}

.price-row .strike {
    text-decoration: line-through;
    opacity: 0.6;
}

.price-row.main {
    font-weight: 700;
}

.price-row .amount {
    color: var(--ja-green);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0;
}

/* ==========================================================================
   PAY IT FORWARD SECTION
   ========================================================================== */

.pif-section {
    padding: var(--space-xl) 0;
    background: var(--primary);
    position: relative;
    z-index: 10;
}

.pif-card {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.pif-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pif-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.pif-content {
    flex: 1;
    min-width: 250px;
}

.pif-content h3 {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.pif-content p {
    color: rgba(255,255,255,0.9);
}

.pif-action {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.pif-price {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0;
}

.pif-btn {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* ==========================================================================
   PICKUP SECTION
   ========================================================================== */

.pickup-section {
    padding: var(--space-xxl) 0;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.pickup-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    position: relative;
    transition: all var(--transition-normal);
    border: 3px solid transparent;
}

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

.pickup-card.available {
    border-color: var(--ja-green);
}

.pickup-card.limited {
    border-color: var(--primary);
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
}

.pickup-day {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gray);
    letter-spacing: 2px;
}

.pickup-date {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    letter-spacing: 1px;
    margin: var(--space-xs) 0;
}

.pickup-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.pickup-card.available .status-dot {
    background: var(--ja-green);
}

.pickup-card.available .pickup-status {
    color: var(--ja-green);
}

.pickup-card.limited .status-dot {
    background: var(--primary);
    animation: blink 1s infinite;
}

.pickup-card.limited .pickup-status {
    color: var(--primary);
}

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

.hurry-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.pickup-location {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.location-icon {
    width: 60px;
    height: 60px;
    background: var(--ja-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.location-icon svg {
    width: 30px;
    height: 30px;
    color: var(--secondary);
}

.location-info {
    flex: 1;
    min-width: 200px;
}

.location-info strong {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

.location-info p {
    margin: 4px 0;
}

.pickup-location .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.pickup-location .btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

/* ==========================================================================
   SOCIAL/TESTIMONIALS SECTION
   ========================================================================== */

.social-section {
    padding: var(--space-xxl) 0;
    background: linear-gradient(135deg, var(--ja-gold) 0%, #FFB347 100%);
    position: relative;
    z-index: 10;
}

.social-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.social-header h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--ja-black);
}

.social-header p {
    font-size: 1.2rem;
    color: var(--secondary);
    opacity: 0.8;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: var(--ja-gold);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial p {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: var(--space-sm);
    font-style: italic;
}

.testimonial .author {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
    padding: var(--space-xxl) 0;
    background: var(--ja-black);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(254,209,0,0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 50%, rgba(0,155,58,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: var(--space-sm);
    position: relative;
}

.final-cta > p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    position: relative;
}

.final-cta .btn {
    position: relative;
}

.cta-sub {
    margin-top: var(--space-lg);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.easter-footer {
    background: var(--secondary);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.footer-brand img {
    height: 60px;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    color: var(--ja-gold);
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

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

.footer-contact p {
    opacity: 0.8;
    margin-bottom: var(--space-xs);
}

.footer-contact a {
    color: var(--ja-gold);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--space-md);
    text-align: center;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* ==========================================================================
   ORDER MODAL
   ========================================================================== */

.order-modal,
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
}

.order-modal.active,
.success-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-header {
    text-align: center;
    padding: var(--space-xl) var(--space-lg) var(--space-md);
    background: linear-gradient(135deg, var(--ja-green) 0%, #006B25 100%);
    color: var(--white);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: var(--space-sm);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.modal-product-name {
    font-size: 1rem;
    opacity: 0.9;
}

.modal-price {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--ja-gold);
    margin-top: var(--space-xs);
}

.modal-body {
    padding: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--ja-green);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.qty-btn:hover {
    background: var(--ja-green);
    border-color: var(--ja-green);
    color: var(--white);
}

.quantity-control input {
    width: 60px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.addon-section {
    background: var(--light-gray);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.addon-checkbox input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.addon-checkbox input:checked + .checkmark {
    background: var(--primary);
}

.addon-checkbox input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.addon-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex: 1;
}

.addon-price {
    color: var(--primary);
    font-weight: 700;
}

.addon-desc {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: var(--space-xs);
    padding-left: 36px;
}

.order-summary {
    background: var(--light-gray);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.95rem;
}

.summary-row.tax-row {
    color: #666;
    font-size: 0.9rem;
}

.summary-row.total {
    border-top: 2px solid var(--dark);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-heading {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
    color: var(--secondary);
}

#card-container {
    min-height: 90px;
    margin-bottom: var(--space-md);
}

#payment-status {
    margin-bottom: var(--space-md);
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

#payment-status.error {
    display: block;
    background: #FFE0E0;
    color: #C00;
}

#payment-status.success {
    display: block;
    background: #E0FFE0;
    color: #060;
}

.modal-footer {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.secure-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--gray);
    font-size: 0.85rem;
}

/* Success Modal */
.success-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xxl);
    text-align: center;
    max-width: 400px;
    animation: successPop 0.5s ease;
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--ja-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.success-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 1px;
    color: var(--ja-green);
    margin-bottom: var(--space-xs);
}

.success-content > p {
    color: var(--gray);
    margin-bottom: var(--space-sm);
}

.success-details {
    font-size: 0.95rem;
}

.success-pickup {
    font-weight: 600;
    color: var(--secondary);
}

.success-content .btn {
    margin-top: var(--space-lg);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image img {
        min-height: 300px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pickup-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .pickup-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pif-card {
        flex-direction: column;
        text-align: center;
    }

    .pif-action {
        justify-content: center;
    }

    .pickup-location {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .easter-nav {
        padding: var(--space-xs) var(--space-sm);
    }

    .nav-logo img {
        height: 40px;
    }

    .nav-logo span {
        font-size: 1rem;
    }

    .nav-cta {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    /* Promo Banner */
    .promo-banner {
        padding: 8px 0;
    }

    .banner-scroll {
        font-size: 0.85rem;
        gap: var(--space-sm);
    }

    /* Video Section */
    .video-section {
        padding: var(--space-xl) 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .video-frame {
        border-width: 3px;
    }

    /* Products Section */
    .products-section {
        padding: var(--space-xl) 0;
    }

    .pickup-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .pickup-card {
        padding: var(--space-sm);
    }

    .pickup-day {
        font-size: 1rem;
    }

    .pickup-date {
        font-size: 1.8rem;
    }

    .pickup-status {
        font-size: 0.7rem;
    }

    .hurry-badge {
        padding: 4px 8px;
        font-size: 0.6rem;
        top: -8px;
        right: -5px;
    }

    /* Featured Product */
    .featured-badge {
        font-size: 1rem;
        padding: 8px 14px;
    }

    .featured-info {
        padding: var(--space-md);
    }

    .featured-info h3 {
        font-size: 1.5rem;
    }

    .featured-includes li {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .featured-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .price-main .price-current {
        font-size: 2.2rem;
    }

    /* Products Grid */
    .products-subtitle {
        font-size: 1.2rem;
    }

    .products-subtitle .line {
        width: 40px;
    }

    .product-info h4 {
        font-size: 1.1rem;
    }

    .product-info p {
        font-size: 0.85rem;
    }

    /* Pay It Forward */
    .pif-section {
        padding: var(--space-lg) 0;
    }

    .pif-icon {
        width: 60px;
        height: 60px;
    }

    .pif-icon svg {
        width: 30px;
        height: 30px;
    }

    .pif-content h3 {
        font-size: 1.4rem;
    }

    .pif-price {
        font-size: 1.1rem;
    }

    /* Pickup Location */
    .pickup-location {
        padding: var(--space-md);
        gap: var(--space-md);
    }

    .location-icon {
        width: 50px;
        height: 50px;
    }

    .location-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Social Section */
    .social-header h3 {
        font-size: 1.8rem;
    }

    .testimonials {
        gap: var(--space-md);
    }

    .testimonial {
        padding: var(--space-md);
    }

    .testimonial p {
        font-size: 0.95rem;
    }

    /* Final CTA */
    .final-cta {
        padding: var(--space-xl) 0;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta > p {
        font-size: 1rem;
    }

    .cta-sub {
        font-size: 0.85rem;
    }

    /* Footer */
    .easter-footer {
        padding: var(--space-lg) 0 var(--space-md);
    }

    .footer-content {
        gap: var(--space-lg);
    }

    .footer-brand img {
        height: 50px;
    }

    /* Modal */
    .modal-content {
        margin: var(--space-sm);
        max-height: calc(100vh - 32px);
    }

    .modal-header {
        padding: var(--space-lg) var(--space-md) var(--space-sm);
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: var(--space-md);
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }

    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .quantity-control input {
        width: 50px;
        font-size: 1rem;
    }

    .success-content {
        padding: var(--space-xl);
        margin: var(--space-sm);
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .success-icon svg {
        width: 30px;
        height: 30px;
    }

    .success-content h2 {
        font-size: 1.5rem;
    }
}

/* Extra small screens (320px) */
@media (max-width: 360px) {
    .pickup-grid {
        grid-template-columns: 1fr;
    }

    .featured-info h3 {
        font-size: 1.3rem;
    }

    .price-main .price-current {
        font-size: 1.8rem;
    }

    .btn-xl {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .action-bar-buttons {
        flex-direction: column;
    }

    .action-bar-buttons .btn {
        width: 100%;
    }
}
