/* ============================================
   LES PIZZ' DE PAPA - Premium Landing Page
   ============================================ */

/* CSS Variables */
:root {
    /* Brand Colors - extracted from logo */
    --primary: #D35400;
    --primary-light: #E67E22;
    --primary-dark: #A04000;
    --secondary: #F4D03F;
    --secondary-light: #F7DC6F;
    --accent: #6B8E23;
    --accent-light: #8FBC8F;

    /* Neutrals */
    --cream: #FDF6E3;
    --cream-light: #FFFEF8;
    --cream-dark: #F5E6C8;
    --brown: #3E2723;
    --brown-light: #5D4037;
    --brown-medium: #795548;

    /* UI Colors */
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #ADB5BD;
    --gray-600: #6C757D;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(62, 39, 35, 0.08);
    --shadow-md: 0 4px 12px rgba(62, 39, 35, 0.12);
    --shadow-lg: 0 8px 30px rgba(62, 39, 35, 0.15);
    --shadow-xl: 0 20px 60px rgba(62, 39, 35, 0.2);
    --shadow-glow: 0 0 40px rgba(211, 84, 0, 0.3);

    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

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

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--brown);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.3), transparent);
}

.navbar.scrolled {
    background: rgba(253, 246, 227, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

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

.nav-logo-img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
    transition: transform var(--transition-base);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.05);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    /* White text for visibility on hero */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Shadow for legibility */
    position: relative;
    padding: 0.5rem 0;
    transition: color var(--transition-fast);
}

.navbar.scrolled .nav-link {
    color: var(--brown);
    /* Brown text on scrolled background */
    text-shadow: none;
}

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

.nav-link:hover {
    color: var(--secondary);
}

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

.nav-link.nav-cta {
    background: var(--primary);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-base);
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--brown);
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   HERO SECTION - REBORN
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('assets/pizzas/real_chevre_miel.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--space-2xl) var(--space-md);
    text-align: center;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(26, 26, 26, 0.4),
            rgba(62, 39, 35, 0.8));
    z-index: 1;
}

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

.hero-glass-card {
    background: rgba(253, 246, 227, 0.1);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl) var(--space-lg);
    box-shadow: var(--shadow-xl);
    animation: zoomInFade 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes zoomInFade {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-logo-container {
    margin-bottom: var(--space-md);
}

.hero-logo {
    width: 200px;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    margin: 0 auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.4));
    transition: transform var(--transition-slow);
}

.hero-logo:hover {
    transform: scale(1.05);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: var(--space-sm);
}

.text-gradient {
    background: linear-gradient(to right, var(--secondary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-100);
    margin-bottom: var(--space-xl);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(211, 84, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(211, 84, 0, 0.5);
    filter: brightness(1.1);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    filter: blur(10px);
    transition: opacity var(--transition-base);
}

.btn-glow:hover::after {
    opacity: 0.8;
}

.btn-secondary {
    background: rgba(253, 246, 227, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--brown);
    transform: translateY(-3px);
}

/* Hero Decoration */
.hero-decoration {
    position: absolute;
    font-size: 3rem;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    opacity: 0.6;
}

.deco-1 {
    top: 15%;
    left: 10%;
    animation: floating 6s ease-in-out infinite;
}

.deco-2 {
    top: 20%;
    right: 15%;
    animation: floating 8s ease-in-out infinite 1s;
    font-size: 2.5rem;
}

.deco-3 {
    bottom: 20%;
    left: 15%;
    animation: floating 7s ease-in-out infinite 0.5s;
    font-size: 2.5rem;
}

.deco-4 {
    bottom: 15%;
    right: 10%;
    animation: floating 9s ease-in-out infinite 1.5s;
}

@keyframes floating {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -20px) rotate(5deg);
    }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--white);
    font-weight: 500;
}

.scroll-arrow {
    border-color: var(--secondary);
}

/* ============================================
   SECTIONS COMMON STYLES
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--brown);
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--brown-medium);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--space-2xl) 0;
    background: var(--white);
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Grid layout when photo is present */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    text-align: left;
}

.about-content-grid .about-features {
    justify-content: flex-start;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.about-photo:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content-grid .about-features {
        justify-content: center;
    }

    .about-image {
        order: -1;
    }

    .about-photo {
        max-width: 280px;
        height: 280px;
    }
}


.about-description {
    font-size: 1.15rem;
    color: var(--brown-light);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.feature-icon {
    font-size: 2.5rem;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.feature span {
    font-weight: 500;
    color: var(--brown);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
    padding: var(--space-2xl) 0;
    background:
        linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

/* Featured Pizzas with Photos */
/* ============================================
   PIZZA OF THE MOMENT
   ============================================ */
.pizza-moment {
    background: linear-gradient(135deg, #2C3E50 0%, #1A1A1A 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin: 0 auto var(--space-2xl);
    max-width: 900px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pizza-moment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
    pointer-events: none;
}

.moment-content {
    position: relative;
    z-index: 2;
    padding: var(--space-md);
}

.moment-badge {
    display: inline-block;
    background: linear-gradient(to right, #D4AF37, #F1C40F);
    color: var(--black);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }

    to {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.7);
    }
}

.moment-icon {
    font-size: 3rem;
    margin-bottom: var(--space-xs);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
}

.moment-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 2.5rem);
    background: linear-gradient(to right, var(--white), #D4AF37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
}

.moment-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.moment-ingredients {
    list-style: none;
    padding: 0;
    margin: var(--space-md) auto;
    display: inline-block;
    text-align: left;
}

.moment-ingredients li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.moment-ingredients li span {
    font-size: 1.2rem;
}

.moment-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.moment-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: #F1C40F;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.moment-action .add-to-cart-btn {
    position: static;
    transform: none;
    width: 45px;
    height: 45px;
}

.moment-action .add-to-cart-btn:hover {
    transform: scale(1.1);
}

.moment-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.moment-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    border-color: #D4AF37;
}

.cta-arrow {
    font-size: 1.2rem;
    animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.cta-text {
    font-weight: 600;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.moment-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 10rem;
    opacity: 0.05;
    transform: rotate(-15deg);
    pointer-events: none;
}

.featured-pizzas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

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

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

.featured-pizza-card.supreme-card {
    border: 3px solid var(--primary);
}

.featured-pizza-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.featured-pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-tag {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--white);
    color: var(--brown);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-tag.best-seller {
    background: var(--primary);
    color: var(--white);
}

.featured-pizza-content {
    padding: var(--space-md);
    text-align: left;
}

.featured-pizza-content .pizza-header {
    margin-bottom: var(--space-xs);
}

.featured-pizza-content .pizza-name {
    font-size: 1.3rem;
}

.featured-pizza-content .pizza-ingredients {
    margin: 0;
}

/* Menu CTA */
.menu-cta {
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 2px dashed var(--cream-dark);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
}

.menu-category {
    margin-bottom: var(--space-xl);
}

.category-title {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: var(--space-lg);
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.category-icon {
    font-size: 1.5rem;
}

/* Pizza Grid */
.pizza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
}

.pizza-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    text-align: left;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.pizza-img-mini {
    flex: 0 0 70px;
    height: 70px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--cream);
    box-shadow: var(--shadow-sm);
}

.pizza-img-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pizza-content-wrap {
    flex: 1;
}

.pizza-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pizza-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.pizza-card.featured {
    border-color: var(--secondary-light);
}

.pizza-card.featured:hover {
    border-color: var(--secondary);
}

.pizza-card.special {
    border-color: var(--accent-light);
}

.pizza-card.special:hover {
    border-color: var(--accent);
}

.pizza-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}

.pizza-card.kids .pizza-badge {
    background: var(--accent);
}

.pizza-card.supreme .pizza-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.pizza-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
    gap: var(--space-sm);
}

.pizza-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--brown);
}

.pizza-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.pizza-ingredients {
    font-size: 0.95rem;
    color: var(--brown-medium);
    line-height: 1.6;
}

/* Extras Grid */
.menu-category.extras {
    max-width: 700px;
    margin: var(--space-xl) auto 0;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-sm);
}

.extras-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.extras-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.extras-item.dessert {
    border-left: 3px solid var(--secondary);
}

.extras-name {
    font-weight: 600;
    color: var(--brown);
}

.extras-details {
    font-size: 0.85rem;
    color: var(--gray-600);
    flex: 1;
    padding: 0 var(--space-sm);
}

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

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    padding: var(--space-2xl) 0;
    background: var(--white);
    text-align: center;
    overflow: hidden;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--brown-medium);
}

/* Marquee Container */
.testimonials-marquee-container {
    padding: var(--space-lg) 0;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-track {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    /* Force single line */
    gap: var(--space-lg);
    width: max-content;
    animation: marquee 40s linear infinite;
    /* Adjusted speed */
    padding-left: var(--space-md);
}

.testimonials-track:hover {
    animation-play-state: paused;
}

/* Ensure no other rule overrides this */
@media (max-width: 768px) {
    .testimonials-track {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: 0 0 350px;
    /* scroll-snap-align: center; - Removed */
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--cream) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: left;
    border: 2px solid var(--cream-dark);
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.testimonial-card.featured {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.05) 0%, var(--cream-light) 100%);
}

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

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--brown);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--cream-dark);
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--brown);
    font-size: 0.95rem;
}

.author-source {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.testimonials-nav {
    display: none;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--cream-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.nav-dot:hover,
.nav-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.google-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--space-lg);
    padding: 0.8rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--cream-dark);
    border-radius: var(--radius-xl);
    color: var(--brown);
    font-weight: 500;
    transition: all var(--transition-base);
}

.google-reviews-link:hover {
    border-color: #4285F4;
    color: #4285F4;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.google-reviews-link svg {
    fill: #4285F4;
}

/* ============================================
   TRUST BADGES SECTION
   ============================================ */
.trust-badges {
    padding: var(--space-xl) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-md);
}

.badge-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.badge-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.badge-title {
    font-weight: 600;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   LOCATIONS SECTION
   ============================================ */
.locations {
    padding: var(--space-2xl) 0;
    background: var(--white);
    text-align: center;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: var(--space-lg);
    /* Add padding to the card itself */
}

.location-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* Even softer shadow */
    border-color: rgba(211, 84, 0, 0.3);
}

.location-days {
    background: transparent;
    /* Remove header background */
    padding: 0;
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    position: static;
    overflow: visible;
}

/* Texture effect for header */
.location-days::before {
    display: none;
    /* Remove texture */
}

.day {
    background: var(--primary-light);
    /* Lighter, fresher color */
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: none;
    z-index: 1;
}

.location-info {
    padding: 0;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    /* Remove gradient */
}

.location-icon {
    font-size: 1.8rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
    background: rgba(211, 84, 0, 0.08);
    /* Soft primary background */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-base);
}

.location-card:hover .location-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.location-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.location-address {
    font-size: 1rem;
    color: var(--gray-600);
    /* Softer gray */
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

.location-hours {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gray-100);
    /* Very light gray bg */
    color: var(--brown);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: none;
    border: none;
    transition: all var(--transition-base);
}

.location-card:hover .location-hours {
    transform: none;
    /* Simplification */
    background: var(--cream-dark);
    color: var(--brown);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: var(--space-2xl) 0;
    background:
        linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
    text-align: center;
}

.contact .section-tag {
    color: var(--secondary);
}

.contact .section-title {
    color: var(--white);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.contact-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.contact-phone:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.phone-icon {
    font-size: 2rem;
}

.phone-info {
    text-align: left;
}

.phone-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}

.phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.social-links {
    margin-top: var(--space-xl);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    transition: all var(--transition-base);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #1559B2 100%);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: var(--space-xl) 0;
}

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

.footer-logo-img {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
}

.footer-info {
    text-align: center;
}

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: all var(--transition-base);
}

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

.footer-social svg {
    width: 20px;
    height: 20px;
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-xl);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: var(--space-sm) 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    /* Featured pizzas mobile */
    .featured-pizzas {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .featured-pizza-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .featured-pizza-image {
        height: 180px;
    }

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

    .about-features {
        gap: var(--space-xl);
    }

    /* Testimonials mobile */
    .testimonials-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .testimonial-card {
        flex: 0 0 min(350px, 90vw);
    }

    /* Trust badges mobile */
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }

    .badge-icon {
        font-size: 2rem;
    }

    .badge-title {
        font-size: 0.9rem;
    }

    /* Menu CTA mobile */
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

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

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

    .location-card {
        margin: 0 auto;
        max-width: 350px;
    }

    .contact-phone {
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg);
    }

    .phone-info {
        text-align: center;
    }

    .phone-number {
        font-size: 1.3rem;
    }
}

/* Utilities for animation delays */
.pizza-card:nth-child(1) {
    transition-delay: 0s;
}

.pizza-card:nth-child(2) {
    transition-delay: 0.1s;
}

.pizza-card:nth-child(3) {
    transition-delay: 0.2s;
}

.pizza-card:nth-child(4) {
    transition-delay: 0.3s;
}

.pizza-card:nth-child(5) {
    transition-delay: 0.4s;
}

.pizza-card:nth-child(6) {
    transition-delay: 0.5s;
}

/* ============================================
   PIZZA INGREDIENTS TOGGLE
   ============================================ */
.pizza-ingredients {
    opacity: 1;
    margin-top: var(--space-xs);
    font-size: 0.9rem;
    color: var(--gray-600);
}

.pizza-header {
    position: relative;
    padding-right: 3.5rem;
    /* Extra space for the cart button */
}

.add-to-cart-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow-sm);
    padding: 0;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-md);
}

.add-to-cart-btn.added {
    background: #22c55e;
    /* Success Green */
    animation: pulse-success 0.5s ease;
}

@keyframes pulse-success {
    0% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.2);
    }

    100% {
        transform: translateY(-50%) scale(1);
    }
}

/* Toast Notification */
.toast-container {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    pointer-events: none;
}

.toast {
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slide-up-fade 2s forwards;
}

@keyframes slide-up-fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    15% {
        opacity: 1;
        transform: translateY(0);
    }

    85% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.cart-icon {
    width: 18px;
    height: 18px;
}

/* ============================================
   ORDER SYSTEM (MODAL & FAB)
   ============================================ */
.floating-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 900;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(211, 84, 0, 0.4);
    cursor: pointer;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: bounceIn 1s ease-out 1s backwards;
}

.floating-order-btn:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--primary-light);
    box-shadow: 0 15px 40px rgba(211, 84, 0, 0.6);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

/* Modal Overlay */
.order-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: var(--space-md);
}

.order-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Content */
.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(50px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.order-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-600);
    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-header {
    padding: var(--space-lg) var(--space-lg) var(--space-md);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
    flex-shrink: 0;
}

.modal-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Scrollable Form Area */
.order-form {
    padding: var(--space-md) var(--space-lg);
    overflow-y: auto;
    flex: 1;
}

.order-items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--space-lg);
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed var(--gray-200);
}

.item-info h4 {
    font-size: 1rem;
    color: var(--brown);
    margin-bottom: 0.2rem;
}

.item-info .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.item-qty {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gray-100);
    padding: 0.2rem 0.5rem;
    border-radius: 20px;
}

.qty-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--brown);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.1s;
}

.qty-btn:active {
    transform: scale(0.9);
}

.qty-val {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Form Details */
.order-details {
    background: var(--gray-100);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--white);
}

/* Footer & Summary */
.order-summary {
    position: sticky;
    bottom: 0;
    background: var(--white);
    padding-top: var(--space-md);
    border-top: 1px solid var(--gray-200);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: var(--space-md);
}

.total-row span:last-child {
    color: var(--primary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.disclaimer {
    margin-top: 0.8rem;
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
}

@media (max-width: 768px) {
    .modal-content {
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }
}

/* ============================================
   STATUS & CART BADGE IMPROVEMENTS
   ============================================ */
.status-indicator-container {
    margin: var(--space-md) 0 var(--space-xl);
    display: flex;
    justify-content: center;
}

.status-badge {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.status-badge.open {
    background: #27AE60;
    color: white;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.4);
}

.status-badge.closed {
    background: #E74C3C;
    color: white;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
}

.floating-order-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -15px;
    right: -10px;
    background: var(--secondary);
    color: var(--brown);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    animation: bounce 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}