/* ============================================
   IceWave Ice Cream Shop — Custom Stylesheet
   Premium, modern, responsive design
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
    /* Primary Palette */
    --pink: #FF6B9D;
    --pink-light: #FF8FB8;
    --pink-dark: #E84C7A;
    --sky-blue: #7EC8E3;
    --sky-blue-light: #A5DAEF;
    --cream: #FFF5E6;
    --peach: #FFD4A8;
    --chocolate: #6B3A2A;
    --chocolate-light: #8B5E3C;
    --mint: #98D8C8;
    --lavender: #C3AED6;
    --gold: #FFD700;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #C084FC 50%, #7EC8E3 100%);
    --gradient-hero: linear-gradient(135deg, #FFF0F5 0%, #F0F8FF 30%, #FFF5E6 60%, #FFF0F5 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 245, 230, 0.7));
    --gradient-btn: linear-gradient(135deg, #FF6B9D 0%, #FF8FB8 100%);
    --gradient-btn-hover: linear-gradient(135deg, #E84C7A 0%, #FF6B9D 100%);
    --gradient-section: linear-gradient(180deg, #FFF5F8 0%, #FFFFFF 50%, #F0F8FF 100%);

    /* Light Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FFF5F8;
    --bg-tertiary: #F0F8FF;
    --text-primary: #2D1B2E;
    --text-secondary: #6B5B6E;
    --text-muted: #9B8D9E;
    --border-color: rgba(255, 107, 157, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-sm: 0 2px 12px rgba(255, 107, 157, 0.08);
    --shadow-md: 0 8px 32px rgba(255, 107, 157, 0.12);
    --shadow-lg: 0 16px 64px rgba(255, 107, 157, 0.16);
    --shadow-xl: 0 24px 80px rgba(255, 107, 157, 0.2);
    --footer-bg: #1A0A1E;
    --footer-text: #E8D5EB;
    --navbar-bg: rgba(255, 255, 255, 0.85);

    /* Typography */
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --section-padding: 100px 0;
    --border-radius: 20px;
    --border-radius-lg: 28px;
    --border-radius-sm: 12px;
}

/* Dark Theme */
[data-theme="dark"] {
    --bg-primary: #1A0A1E;
    --bg-secondary: #241428;
    --bg-tertiary: #1E0E22;
    --text-primary: #F5E6F8;
    --text-secondary: #C5A8CB;
    --text-muted: #8B6E90;
    --border-color: rgba(255, 107, 157, 0.2);
    --glass-bg: rgba(30, 14, 34, 0.8);
    --glass-border: rgba(255, 107, 157, 0.15);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.5);
    --gradient-hero: linear-gradient(135deg, #1A0A1E 0%, #241428 30%, #1E0E22 60%, #2D1430 100%);
    --gradient-card: linear-gradient(145deg, rgba(30, 14, 34, 0.9), rgba(36, 20, 40, 0.7));
    --gradient-section: linear-gradient(180deg, #1A0A1E 0%, #241428 50%, #1E0E22 100%);
    --navbar-bg: rgba(26, 10, 30, 0.9);
    --footer-bg: #0D050F;
    --footer-text: #C5A8CB;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color 0.4s ease, color 0.4s ease;
}

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

a {
    text-decoration: none;
    color: var(--pink);
    transition: var(--transition);
}

a:hover {
    color: var(--pink-dark);
}

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

::selection {
    background: var(--pink);
    color: white;
}

.section-padding {
    padding: var(--section-padding);
}

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.ice-cream-loader {
    position: relative;
    width: 80px;
    height: 140px;
    margin: 0 auto 24px;
}

.cone {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 60px solid var(--peach);
    border-radius: 0 0 4px 4px;
}

.cone::after {
    content: '';
    position: absolute;
    top: -55px;
    left: -18px;
    width: 36px;
    height: 50px;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 3px,
        rgba(139, 94, 60, 0.15) 3px,
        rgba(139, 94, 60, 0.15) 6px
    );
}

.scoop {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    animation: scoopBounce 1.5s ease-in-out infinite;
}

.scoop-1 {
    background: var(--pink-light);
    top: 30px;
    animation-delay: 0s;
}

.scoop-2 {
    background: var(--sky-blue-light);
    top: 12px;
    animation-delay: 0.2s;
}

.scoop-3 {
    background: var(--mint);
    top: -6px;
    animation-delay: 0.4s;
}

@keyframes scoopBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--pink);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.preloader-bar {
    width: 180px;
    height: 4px;
    background: rgba(255, 107, 157, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-btn);
    border-radius: 4px;
    animation: preloaderFill 2s ease-in-out forwards;
}

@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ============================================
   SEASONAL POPUP
   ============================================ */
.seasonal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.popup-content {
    position: relative;
    max-width: 400px;
    width: 90%;
    padding: 48px 36px 36px;
    text-align: center;
    animation: popupSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: visible;
}

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

.popup-ribbon {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--gradient-btn);
    color: white;
    padding: 6px 20px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4);
    animation: ribbonPulse 2s infinite;
}

@keyframes ribbonPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.popup-close:hover {
    color: var(--pink);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 12px;
    animation: scoopBounce 2s ease-in-out infinite;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.popup-content .highlight {
    color: var(--pink);
    font-weight: 700;
    font-size: 1.2em;
}

.popup-code {
    background: var(--bg-secondary);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    display: inline-block;
    margin-bottom: 16px !important;
    font-size: 0.95rem;
}

.popup-cta {
    display: inline-block;
}

/* ============================================
   GLASSMORPHISM CARD
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    padding: 32px;
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--gradient-btn);
    color: white;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(255, 107, 157, 0.35);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.btn-primary-custom:hover {
    background: var(--gradient-btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.45);
    color: white;
}

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

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

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--pink);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--pink);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.btn-secondary-custom:hover {
    background: var(--pink);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.35);
}

.btn-lg-custom {
    padding: 16px 40px;
    font-size: 1.1rem;
}

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

.full-width {
    width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 16px 0;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition-slow);
    z-index: 1050;
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* Logo Image Styles */
.navbar-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(107, 58, 42, 0.15));
}

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

[data-theme="dark"] .navbar-logo {
    filter: drop-shadow(0 2px 8px rgba(255, 143, 184, 0.2)) brightness(1.1);
}

.footer-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 12px rgba(255, 143, 184, 0.25)) brightness(1.15);
    transition: var(--transition);
    margin-bottom: 16px;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(255, 143, 184, 0.4)) brightness(1.2);
}

.brand-icon {
    font-size: 1.8rem;
    animation: scoopBounce 3s ease-in-out infinite;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.navbar-toggler {
    border: none;
    padding: 4px;
    background: none;
    outline: none !important;
    box-shadow: none !important;
}

.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
}

.toggler-icon span {
    display: block;
    height: 3px;
    background: var(--pink);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-secondary) !important;
    padding: 8px 16px !important;
    border-radius: 50px;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink) !important;
    background: rgba(255, 107, 157, 0.08);
}

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
}

.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--glass-bg);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.theme-toggle-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
    transform: rotate(30deg);
}

/* Mobile nav */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: var(--border-radius);
        padding: 20px;
        margin-top: 12px;
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-md);
    }
    
    .nav-link {
        padding: 12px 16px !important;
    }
    
    .nav-cta {
        margin-top: 8px;
        text-align: center;
        display: block;
    }
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SECTION TITLE & LABEL
   ============================================ */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.label-line {
    width: 40px;
    height: 2px;
    background: var(--gradient-btn);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Floating CSS Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--pink);
    top: 10%;
    right: -5%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--sky-blue);
    bottom: 20%;
    left: -3%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--peach);
    top: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: var(--mint);
    bottom: 10%;
    right: 20%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.shape-5 {
    width: 80px;
    height: 80px;
    background: var(--lavender);
    top: 50%;
    right: 30%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.shape-6 {
    width: 120px;
    height: 120px;
    background: var(--gold);
    top: 15%;
    left: 40%;
    animation-delay: 5s;
    animation-duration: 13s;
    opacity: 0.1;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -30px) rotate(5deg); }
    50% { transform: translate(-15px, 20px) rotate(-3deg); }
    75% { transform: translate(25px, 10px) rotate(7deg); }
}

/* Floating Emojis */
.floating-emoji {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: floatEmoji 6s ease-in-out infinite;
}

.emoji-1 { top: 15%; right: 15%; animation-delay: 0s; }
.emoji-2 { bottom: 25%; left: 10%; animation-delay: 1.5s; }
.emoji-3 { top: 40%; right: 35%; animation-delay: 3s; }
.emoji-4 { bottom: 15%; right: 10%; animation-delay: 4.5s; }

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(15deg); }
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--pink);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pink);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

/* Hero CSS Ice Cream Art */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 40px;
}

.hero-ice-cream-art {
    position: relative;
    width: 280px;
    height: 400px;
    margin: 0 auto;
    animation: heroFloat 4s ease-in-out infinite;
}

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

.art-circle {
    position: absolute;
    border-radius: 50%;
    box-shadow: inset -8px -8px 20px rgba(0,0,0,0.1), 0 8px 32px rgba(0,0,0,0.1);
}

.circle-1 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #FFB6C1 0%, #FF6B9D 100%);
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.circle-2 {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #FFF8DC 0%, #FFD700 100%);
    top: 10px;
    left: 30%;
    transform: translateX(-50%);
    z-index: 2;
}

.circle-3 {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, #B2F5EA 0%, #98D8C8 100%);
    top: 10px;
    left: 70%;
    transform: translateX(-50%);
    z-index: 2;
}

.art-cone {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-top: 180px solid var(--peach);
    z-index: 1;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.1));
}

.art-cone::after {
    content: '';
    position: absolute;
    top: -175px;
    left: -55px;
    width: 110px;
    height: 170px;
    background: repeating-linear-gradient(
        55deg,
        transparent,
        transparent 8px,
        rgba(139, 94, 60, 0.08) 8px,
        rgba(139, 94, 60, 0.08) 16px
    );
}

.art-drip {
    position: absolute;
    width: 20px;
    height: 30px;
    background: #FF6B9D;
    border-radius: 0 0 50% 50%;
    animation: dripAnim 3s ease-in-out infinite;
}

.drip-1 {
    top: 115px;
    left: 90px;
    animation-delay: 0s;
}

.drip-2 {
    top: 110px;
    right: 85px;
    background: #98D8C8;
    animation-delay: 1.5s;
}

@keyframes dripAnim {
    0%, 100% {
        height: 25px;
        opacity: 1;
    }
    50% {
        height: 40px;
        opacity: 0.8;
    }
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleAnim 2s ease-in-out infinite;
}

.sparkle-1 { top: -10px; left: 30px; animation-delay: 0s; }
.sparkle-2 { top: 30px; right: 10px; animation-delay: 0.6s; }
.sparkle-3 { top: -20px; right: 40px; animation-delay: 1.2s; }

@keyframes sparkleAnim {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.4; transform: scale(0.6) rotate(180deg); }
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--bg-primary);
}

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

.about-image-card {
    overflow: hidden;
    padding: 0;
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition-slow);
}

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

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--pink);
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-floating-circle {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-btn);
    opacity: 0.2;
    z-index: -1;
    animation: floatShape 6s ease-in-out infinite;
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.feature-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    background: var(--gradient-section);
}

.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: var(--glass-bg);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.filter-btn.active {
    background: var(--gradient-btn);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* Menu Card with Flip Effect */
.menu-card {
    perspective: 1000px;
    height: 420px;
    transition: var(--transition);
}

.menu-card.hidden {
    display: none;
}

.menu-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.menu-card:hover .menu-card-inner {
    transform: rotateY(180deg);
}

.menu-card-front,
.menu-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.menu-card-front {
    display: flex;
    flex-direction: column;
}

.menu-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
    background: var(--gradient-card);
}

.menu-card-back h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.menu-card-back p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.card-back-details {
    list-style: none;
    margin-bottom: 20px;
    text-align: left;
}

.card-back-details li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.menu-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.menu-card:hover .menu-card-front .menu-img-wrap img {
    transform: scale(1.1);
}

.menu-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    z-index: 2;
}

.badge-popular { background: var(--pink); }
.badge-bestseller { background: var(--gold); color: #333; }
.badge-new { background: var(--mint); color: #333; }
.badge-vegan { background: #4CAF50; }

.menu-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.menu-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
    margin: 0;
}

.menu-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pink);
}

.add-to-cart-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-btn);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.3);
    flex-shrink: 0;
}

.add-to-cart-btn:hover {
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.45);
}

.add-to-cart-btn.full-width {
    width: 100%;
    height: auto;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
}

.add-to-cart-btn.full-width:hover {
    transform: scale(1.02) rotate(0);
}

/* ============================================
   FEATURED SECTION
   ============================================ */
.featured-section {
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.featured-swiper {
    padding: 20px 10px 60px;
}

.featured-card {
    padding: 0;
    overflow: hidden;
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-8px);
}

.featured-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.featured-card:hover .featured-img-wrap img {
    transform: scale(1.08);
}

.featured-overlay-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-info {
    padding: 24px;
}

.featured-info h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.featured-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.featured-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
}

/* Swiper Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--pink) !important;
    width: 44px !important;
    height: 44px !important;
    background: var(--glass-bg);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem !important;
    font-weight: 700;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--pink);
    color: white !important;
}

.swiper-pagination-bullet {
    background: var(--pink) !important;
    opacity: 0.3 !important;
    width: 10px !important;
    height: 10px !important;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 28px !important;
    border-radius: 5px !important;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    background: var(--gradient-section);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 107, 157, 0.8), rgba(192, 132, 252, 0.4));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    gap: 8px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 1.5rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    text-align: center;
    animation: popupSlideIn 0.4s ease;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius);
    margin: 0 auto;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.lightbox-close:hover {
    color: var(--pink);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.lightbox-nav:hover {
    background: var(--pink);
    border-color: var(--pink);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

.lightbox-caption {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--bg-primary);
    position: relative;
}

.testimonials-swiper {
    padding: 20px 10px 60px;
}

.testimonial-card {
    text-align: center;
    padding: 40px 32px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 20px;
    font-size: 6rem;
    color: var(--pink);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0 2px;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   FLAVOR BUILDER SECTION
   ============================================ */
.flavor-builder-section {
    background: var(--gradient-section);
}

.builder-panel {
    padding: 32px;
}

.builder-step {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.builder-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.builder-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.builder-step-title small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.builder-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.builder-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    cursor: pointer;
    transition: var(--transition);
    min-width: 100px;
    text-align: center;
    font-family: var(--font-body);
}

.builder-option:hover {
    border-color: var(--pink-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.builder-option.selected {
    border-color: var(--pink);
    background: rgba(255, 107, 157, 0.08);
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.2);
}

.option-emoji {
    font-size: 1.6rem;
}

.option-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.option-price {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Builder Preview */
.builder-preview {
    position: sticky;
    top: 100px;
}

.preview-title {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.preview-visual {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
}

.preview-cone-art {
    text-align: center;
    position: relative;
}

.preview-base {
    font-size: 3rem;
    margin-top: 8px;
}

.preview-scoops {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.preview-scoop {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: inset -4px -4px 10px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.1);
    animation: scoopBounce 1.5s ease-in-out infinite;
}

.preview-toppings {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.preview-topping {
    font-size: 1.3rem;
    animation: floatEmoji 3s ease-in-out infinite;
}

.preview-summary {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.summary-label {
    color: var(--text-muted);
    font-weight: 500;
}

.summary-value {
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0 0;
    border-top: 2px solid var(--border-color);
    margin-top: 8px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.total-price {
    color: var(--pink);
    font-size: 1.5rem;
}

.builder-order-btn {
    margin-top: 8px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--bg-primary);
}

.contact-info-panel {
    height: 100%;
}

.contact-info-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 107, 157, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
    background: var(--gradient-btn);
    color: white;
    transform: scale(1.1);
}

.contact-info-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-info-item a {
    color: var(--text-secondary);
}

.contact-info-item a:hover {
    color: var(--pink);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.contact-map {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 12px;
}

/* Contact Form */
.contact-form-panel {
    height: 100%;
}

.contact-form-panel h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

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

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #E74C3C;
    margin-top: 4px;
    min-height: 18px;
}

.form-input.error {
    border-color: #E74C3C;
}

.form-input.success {
    border-color: #27AE60;
}

.form-status {
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-align: center;
}

.form-status.status-success {
    background: rgba(39, 174, 96, 0.1);
    color: #27AE60;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.form-status.status-error {
    background: rgba(231, 76, 60, 0.1);
    color: #E74C3C;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-main {
    background: var(--footer-bg);
    padding: 60px 0 40px;
}

.footer-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-brand .brand-text {
    font-size: 1.4rem;
    color: white;
}

.footer-brand p {
    color: var(--footer-text);
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.7;
}

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

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-btn);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(255, 107, 157, 0.4);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-btn);
    border-radius: 2px;
}

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

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

.footer-links a {
    color: var(--footer-text);
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--pink-light);
    padding-left: 6px;
}

.footer-newsletter p {
    color: var(--footer-text);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-input-wrap {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input-wrap input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    background: transparent;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrap button {
    padding: 14px 20px;
    background: var(--gradient-btn);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.newsletter-input-wrap button:hover {
    background: var(--gradient-btn-hover);
    padding: 14px 24px;
}

.newsletter-status {
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
}

.newsletter-status.success { color: #27AE60; }
.newsletter-status.error { color: #E74C3C; }

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--footer-text);
    opacity: 0.6;
    margin: 0;
}

/* ============================================
   FLOATING CART BADGE
   ============================================ */
.floating-cart {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-btn);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 6px 24px rgba(255, 107, 157, 0.4);
    transition: var(--transition);
    animation: scoopBounce 3s ease-in-out infinite;
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(255, 107, 157, 0.5);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--chocolate);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    color: var(--pink);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-btn);
    color: white;
    transform: translateY(-4px);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Cart add animation */
@keyframes cartPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.cart-pop {
    animation: cartPop 0.4s ease;
}

/* Toast notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
    z-index: 99999;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}

.toast-notification .toast-icon {
    font-size: 1.2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-badge {
        display: block;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-badge {
        bottom: -10px;
        right: 10px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }
    
    .gallery-item-tall {
        grid-row: span 1;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card {
        height: 400px;
    }
    
    .builder-options {
        gap: 8px;
    }
    
    .builder-option {
        min-width: 80px;
        padding: 10px 12px;
    }
    
    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
    
    .lightbox-prev { left: 5px; }
    .lightbox-next { right: 5px; }
    
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .gallery-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .menu-card {
        height: 380px;
    }
    
    .btn-lg-custom {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .popup-content {
        padding: 36px 24px 28px;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 38px;
    }
}

/* ============================================
   NEW UI ENHANCEMENTS (AUTH, SEARCH)
   ============================================ */
.nav-action-btn {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.25rem;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    transition: var(--transition);
}
.nav-action-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(255, 107, 107, 0.4);
}

.search-wrap {
    max-width: 500px;
    margin: 0 auto;
}
.search-box {
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 0.5rem 1rem;
}
.search-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}
.form-control-custom {
    border: none;
    background: transparent;
    color: var(--text-color);
    width: 100%;
}
.form-control-custom:focus {
    outline: none;
    box-shadow: none;
}

.custom-modal .modal-content {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.custom-pills .nav-link {
    color: var(--text-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
}
.custom-pills .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .navbar, .floating-cart, .back-to-top, .seasonal-popup, #preloader, .footer-wave {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
