/* ==========================================
   ACIFRUTT - Modern Design 2025
   Fresh, vibrant, and stylish
   ========================================== */

:root {
    /* Tropical Color Palette */
    --color-primary: #FF6B35;
    --color-secondary: #FFD23F;
    --color-accent: #EE4266;
    --color-green: #06A77D;
    --color-purple: #9D4EDD;

    /* Neutrals */
    --color-dark: #1A1A2E;
    --color-gray: #6C757D;
    --color-light: #F8F9FA;
    --color-white: #FFFFFF;

    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    --gradient-tropical: linear-gradient(135deg, #06A77D 0%, #23d5ab 100%);
    --gradient-pink: linear-gradient(135deg, #EE4266 0%, #FF6B9D 100%);
    --gradient-mesh:
        radial-gradient(at 40% 20%, rgba(255, 107, 53, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(255, 210, 63, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(238, 66, 102, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(6, 167, 125, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(157, 78, 221, 0.1) 0px, transparent 50%);

    /* Spacing (8px grid) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 96px;

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);

    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background: var(--color-light);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

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

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */

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

/* ==========================================
   HEADER - Glassmorphism Style
   ========================================== */

.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: var(--space-sm) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header.header-hidden {
    transform: translateY(-100%);
}

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

.logo {
    display: flex;
    flex-direction: column;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    transition: transform var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo picture {
    display: block;
    height: 70px;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.brand-name {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-aci {
    color: var(--color-accent);
}

.brand-frutt {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 12px;
    color: var(--color-gray);
    font-weight: 500;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-dark);
    transition: all var(--transition-fast);
    position: relative;
    padding: 8px 16px;
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--color-primary);
    background: rgba(255, 107, 53, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-sunset);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 60%;
}

/* ==========================================
   HERO SECTION - Modern & Dynamic
   ========================================== */

.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: var(--space-md);
    border-radius: var(--radius-xl);
    background: var(--gradient-sunset);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 210, 63, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(238, 66, 102, 0.15) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--space-xl);
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.cta-button:active {
    transform: translateY(-2px) scale(1);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Hero Floating Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-emoji {
    position: absolute;
    font-size: 60px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: floatEmoji 8s ease-in-out infinite;
}

.float-emoji:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    font-size: 50px;
}

.float-emoji:nth-child(2) {
    top: 65%;
    left: 85%;
    animation-delay: 2s;
    font-size: 55px;
}

.float-emoji:nth-child(3) {
    top: 75%;
    left: 15%;
    animation-delay: 4s;
    font-size: 45px;
}

.float-emoji:nth-child(4) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
    font-size: 52px;
}

@keyframes floatEmoji {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.9;
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-25px) rotate(-3deg) scale(1);
        opacity: 1;
    }
    75% {
        transform: translateY(-10px) rotate(3deg) scale(1.02);
    }
}

/* ==========================================
   MENU SECTION
   ========================================== */

.menu-section {
    padding: var(--space-3xl) 0;
    position: relative;
}

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

.section-badge {
    display: inline-block;
    background: var(--gradient-sunset);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--space-sm);
    letter-spacing: -1px;
}

.section-title span {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================
   MENU GRID - Modern Cards
   ========================================== */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

/* ==========================================
   MENU CARD - Glassmorphism Style
   ========================================== */

.menu-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

.menu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-sunset);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.menu-card:hover::before {
    opacity: 1;
}

.menu-card.featured {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 245, 0.95) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.menu-card.featured::before {
    opacity: 1;
}

.menu-card.large {
    grid-column: span 1;
}

/* Card Icon */
.card-icon {
    font-size: 64px;
    text-align: center;
    padding: var(--space-lg) var(--space-sm) var(--space-sm);
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-sunset);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
}

/* Card Content */
.card-content {
    padding: 0 var(--space-md) var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.card-description {
    font-size: 14px;
    color: var(--color-gray);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.card-description.price-range {
    font-weight: 700;
    color: var(--color-green);
    font-size: 16px;
}

/* Size Options - Modern Style */
.size-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.size-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    flex-wrap: wrap;
    cursor: pointer;
    border: 1px solid transparent;
}

.size-option:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateX(4px);
}

.size-option.special {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 210, 63, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.size-label {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 14px;
}

.size-detail {
    font-size: 12px;
    color: var(--color-gray);
    width: 100%;
    margin-top: 4px;
    line-height: 1.4;
}

.price {
    font-size: 18px;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Explomix Specific Styles */
.explomix-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.price-section {
    background: rgba(248, 249, 250, 0.8);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-fast);
}

.price-section:hover {
    background: rgba(255, 107, 53, 0.05);
}

.price-large {
    display: block;
    font-size: 26px;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
}

.option-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.option-item {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.6;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.option-item:hover {
    background: white;
    transform: translateX(4px);
}

.option-item strong {
    color: var(--color-dark);
}

/* Add Button - Modern Style */
.add-btn {
    background: var(--gradient-sunset);
    color: var(--color-white);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    transition: all var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.add-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;
}

.add-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    transform: translateY(-3px);
}

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

.add-btn:active {
    transform: translateY(-1px);
}

/* ==========================================
   ABOUT SECTION - Modern Design
   ========================================== */

.about-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--space-3xl) var(--space-xl);
    border-radius: var(--radius-xl);
    margin: var(--space-xl) var(--space-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--gradient-sunset);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-content .section-title {
    font-size: 36px;
    margin-bottom: var(--space-md);
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: var(--space-md);
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   FOOTER - Modern & Clean
   ========================================== */

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-xl) 0;
    margin-top: var(--space-2xl);
    position: relative;
    overflow: hidden;
}

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

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

.footer p {
    opacity: 0.7;
    font-size: 14px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.social-link:hover {
    background: var(--gradient-sunset);
    transform: translateY(-3px);
}

/* ==========================================
   SHOPPING CART - Modern Style
   ========================================== */

.cart-button {
    position: relative;
    background: var(--gradient-sunset);
    color: var(--color-white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hide floating cart on desktop */
.cart-button-floating {
    display: none;
}

.cart-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.cart-count {
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    padding: 2px 10px;
    font-size: 12px;
    margin-left: 6px;
    font-weight: 800;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-sunset);
    color: var(--color-white);
}

.cart-header h3 {
    font-size: 22px;
    font-weight: 800;
}

.cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
}

.cart-empty {
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
    color: var(--color-gray);
}

.cart-empty p:first-child {
    font-size: 72px;
    margin-bottom: var(--space-sm);
    opacity: 0.5;
}

.cart-item {
    background: var(--color-light);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
    transition: all var(--transition-fast);
}

.cart-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

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

.cart-item-name {
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 4px;
    font-size: 15px;
}

.cart-item-size {
    font-size: 13px;
    color: var(--color-gray);
    margin-bottom: 6px;
}

.cart-item-price {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 16px;
}

.cart-item-remove {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    width: 28px;
    height: 28px;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(238, 66, 102, 0.4);
}

.cart-footer {
    border-top: 1px solid var(--color-light);
    padding: var(--space-lg);
    background: var(--color-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    font-size: 18px;
    font-weight: 700;
}

.cart-total-price {
    font-size: 32px;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cart-checkout {
    width: 100%;
    background: var(--color-green);
    color: var(--color-white);
    border: none;
    padding: 18px var(--space-md);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-bounce);
    box-shadow: 0 4px 15px rgba(6, 167, 125, 0.3);
}

.cart-checkout:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 167, 125, 0.4);
}

.cart-checkout:disabled {
    background: var(--color-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

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

@media (max-width: 1024px) {
    .header .container {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero {
        margin: var(--space-sm);
        min-height: 350px;
        border-radius: var(--radius-lg);
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .menu-card.large {
        grid-column: span 1;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .social-links {
        width: 100%;
    }

    .float-emoji {
        font-size: 40px;
    }

    .brand-name {
        font-size: 26px;
    }

    .logo-link {
        gap: var(--space-xs);
    }

    .about-section {
        margin: var(--space-md);
        padding: var(--space-xl) var(--space-md);
    }

    /* Hide cart button from nav on mobile */
    .nav .cart-button {
        display: none;
    }

    /* Floating cart button on mobile */
    .cart-button-floating {
        display: flex;
        position: fixed;
        bottom: 24px;
        right: 24px;
        z-index: 97;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 6px 24px rgba(255, 107, 53, 0.4);
        animation: floatButton 3s ease-in-out infinite;
    }

    .cart-button-floating .cart-count {
        position: absolute;
        top: -4px;
        right: -4px;
        margin: 0;
        min-width: 22px;
        height: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

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

@media (max-width: 480px) {
    .hero {
        padding: var(--space-md);
        min-height: 300px;
    }

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

    .hero-title {
        font-size: 28px;
    }

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

    .cta-button {
        padding: 14px 28px;
        font-size: 14px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-description {
        font-size: 13px;
    }

    .logo-link {
        flex-direction: column;
        gap: 4px;
    }

    .logo picture {
        height: 76px;
    }

    .logo-img {
        height: 76px;
    }

    .brand-name {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* ==========================================
   ANIMATIONS & EFFECTS
   ========================================== */

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.menu-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.menu-card:nth-child(1) { animation-delay: 0.05s; }
.menu-card:nth-child(2) { animation-delay: 0.1s; }
.menu-card:nth-child(3) { animation-delay: 0.15s; }
.menu-card:nth-child(4) { animation-delay: 0.2s; }
.menu-card:nth-child(5) { animation-delay: 0.25s; }
.menu-card:nth-child(6) { animation-delay: 0.3s; }
.menu-card:nth-child(7) { animation-delay: 0.35s; }
.menu-card:nth-child(8) { animation-delay: 0.4s; }
.menu-card:nth-child(9) { animation-delay: 0.45s; }
.menu-card:nth-child(10) { animation-delay: 0.5s; }
.menu-card:nth-child(11) { animation-delay: 0.55s; }

.hero-content {
    animation: scaleIn 0.8s ease-out;
}

.hero-badge {
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-title {
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.hero-subtitle {
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.cta-button {
    animation: fadeInUp 0.6s ease-out 0.5s backwards;
}

/* Smooth scroll indicator */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Selection color */
::selection {
    background: rgba(255, 107, 53, 0.3);
    color: var(--color-dark);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-sunset);
    border-radius: var(--radius-full);
}

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