/* ==========================================================================
   GUCHU PUCHU CAFE - CUTE MASCOT THEME STYLESHEET (MOBILE PERFECT)
   ========================================================================== */

:root {
    --primary-color: #ff6b35;
    --primary-hover: #e85d04;
    --secondary-color: #ffb703;
    --accent-green: #2b9348;
    
    /* Cute Pastel Mascot Palette */
    --guchu-white: #ffffff;
    --guchu-pink: #ffc2d1;
    --guchu-blush: #ff85a1;
    --puchu-brown: #a06cd5;
    --puchu-tan: #8d5b4c;
    --puchu-blue: #a2d2ff;
    --pastel-bg: #fff5f7;
    --pastel-card: #ffffff;

    --dark-bg: #1e1e24;
    --light-bg: #fffbf5;
    --card-bg: #ffffff;
    --text-dark: #2b2d42;
    --text-muted: #6c757d;
    --border-color: #ffe5d9;
    --shadow-sm: 0 4px 16px rgba(255, 133, 161, 0.12);
    --shadow-lg: 0 12px 32px rgba(255, 107, 53, 0.15);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background-color: var(--pastel-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

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

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

/* --------------------------------------------------------------------------
   RESPONSIVE GRID UTILITIES
   -------------------------------------------------------------------------- */
.responsive-2col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.responsive-cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.responsive-checkout-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 2rem;
}

.responsive-3col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .responsive-2col-grid,
    .responsive-cart-grid,
    .responsive-checkout-grid,
    .responsive-3col-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }
}

/* --------------------------------------------------------------------------
   CUTE MASCOT BADGES & SPEECH BUBBLES
   -------------------------------------------------------------------------- */
.mascot-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.guchu-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffe5ec;
    color: #ff4d6d;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #ffb3c1;
    max-width: 100%;
    white-space: normal;
}

.puchu-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e7f5ff;
    color: #0077b6;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid #90e0ef;
    max-width: 100%;
    white-space: normal;
}

.speech-bubble {
    position: relative;
    background: white;
    padding: 10px 16px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    font-size: clamp(0.8rem, 2.5vw, 0.95rem);
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    animation: bounceGentle 2s infinite ease-in-out;
    max-width: 100%;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* --------------------------------------------------------------------------
   NAVBAR & HEADER
   -------------------------------------------------------------------------- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(255, 107, 53, 0.08);
    padding: 0.8rem 1rem;
    border-bottom: 2px solid #ffe5d9;
}

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

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    font-weight: 900;
    color: var(--primary-color);
}

.brand-logo img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.brand-logo span.highlight {
    color: var(--puchu-tan);
}

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

.nav-link {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff85a1, #ff6b35);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.6rem 1.3rem;
    font-size: clamp(0.85rem, 2.5vw, 0.95rem);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    max-width: 100%;
    word-break: normal;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff4d6d);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 77, 109, 0.45);
}

.btn-secondary {
    background: var(--secondary-color);
    color: #000;
    font-weight: 800;
}

.btn-secondary:hover {
    background: #e5a500;
    transform: translateY(-2px);
}

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

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

.cart-icon-btn {
    position: relative;
    background: #fff0eb;
    color: var(--primary-color);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

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

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--accent-green);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.mobile-toggle {
    display: none;
    font-size: 1.4rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 4px;
}

/* --------------------------------------------------------------------------
   HERO SECTION WITH MASCOT SHOWCASE
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    padding: 3rem 1rem;
    background: linear-gradient(135deg, #fff5f7 0%, #e8f4f8 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.hero-title span {
    background: linear-gradient(135deg, #ff4d6d, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    max-width: 520px;
}

.hero-btns {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.hero-feat-item i {
    width: 34px;
    height: 34px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
    max-width: 100%;
}

.hero-img-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.18);
    border: 4px solid white;
    transition: var(--transition);
}

.hero-img-card img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floating 3s ease-in-out infinite alternate;
    max-width: 90%;
}

.floating-badge.badge-1 {
    top: 10px;
    left: -10px;
}

.floating-badge.badge-2 {
    bottom: 10px;
    right: -10px;
    animation-delay: 1.5s;
}

/* --------------------------------------------------------------------------
   SPECIAL VIBE & AMBIANCE HIGHLIGHTS
   -------------------------------------------------------------------------- */
.section {
    padding: 3.5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
}

.section-tag {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
    background: #fff0eb;
    padding: 4px 12px;
    border-radius: 20px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    color: var(--dark-bg);
    line-height: 1.25;
}

.section-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.vibe-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.4rem;
    text-align: center;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.vibe-icon {
    width: 65px;
    height: 65px;
    background: #fff0eb;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem auto;
}

.vibe-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.vibe-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   INTERACTIVE MENU SECTION
   -------------------------------------------------------------------------- */
.menu-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-box input {
    width: 100%;
    padding: 0.7rem 1rem 0.7rem 2.6rem;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.cat-btn {
    white-space: nowrap;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    border: 2px solid #eee;
    background: #f8f9fa;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.cat-btn:hover, .cat-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #ff4d6d);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(255, 77, 109, 0.25);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.food-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid #f5e6e8;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.food-img-container {
    position: relative;
    height: 180px;
    background: #f8f8f8;
    overflow: hidden;
}

.food-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.veg-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: 1.5px solid var(--accent-green);
    padding: 2px 7px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--accent-green);
}

.veg-dot {
    width: 7px;
    height: 7px;
    background: var(--accent-green);
    border-radius: 50%;
}

.badge-tag {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--secondary-color);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

.food-body {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.food-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 0.4rem;
}

.food-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    line-height: 1.4;
    flex: 1;
}

.food-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 0.7rem;
    border-top: 1px dashed #eee;
}

.food-price {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.add-cart-btn {
    background: #fff0eb;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}

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

/* --------------------------------------------------------------------------
   CART DRAWER & MODAL
   -------------------------------------------------------------------------- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 2001;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 1rem 1.2rem;
    background: var(--pastel-bg);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
}

.close-cart-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.cart-items-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.2rem;
}

.cart-item-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.7rem 0;
    border-bottom: 1px solid #f5f5f5;
}

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

.cart-item-name {
    font-weight: 700;
    font-size: 0.88rem;
}

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

.qty-control {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.qty-btn {
    background: none;
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 800;
    color: var(--primary-color);
}

.qty-val {
    font-size: 0.82rem;
    font-weight: 800;
}

.cart-footer {
    padding: 1.2rem;
    background: white;
    border-top: 1px solid #eee;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.03);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 0.4rem;
}

.cart-total-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--dark-bg);
    margin: 0.7rem 0 1rem 0;
}

/* --------------------------------------------------------------------------
   TABLE BOOKING FORM & CARDS
   -------------------------------------------------------------------------- */
.booking-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1050px;
    margin: 0 auto;
    border: 2px solid var(--border-color);
}

.booking-info-panel {
    background: linear-gradient(135deg, #1e1e24 0%, #2b2d42 100%);
    color: white;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booking-info-panel h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.zone-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.zone-card {
    border: 2px solid #eee;
    border-radius: var(--radius-md);
    padding: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.zone-card:hover, .zone-card.selected {
    border-color: var(--primary-color);
    background: #fff0eb;
}

.zone-card i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.zone-card h5 {
    font-size: 0.8rem;
    font-weight: 800;
}

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

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 2px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

/* --------------------------------------------------------------------------
   ORDER STATUS STEPPER
   -------------------------------------------------------------------------- */
.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 2rem 0;
}

.stepper-wrapper::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: #e0e0e0;
    z-index: 1;
}

.stepper-progress {
    position: absolute;
    top: 22px;
    left: 30px;
    height: 4px;
    background: var(--accent-green);
    z-index: 1;
    transition: width 0.5s ease;
}

.step-item {
    position: relative;
    z-index: 2;
    text-align: center;
    background: var(--light-bg);
    padding: 0 5px;
}

.step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.4rem auto;
    font-size: 1.1rem;
    font-weight: 800;
    transition: var(--transition);
}

.step-item.active .step-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.2);
}

.step-item.completed .step-icon {
    background: var(--accent-green);
    color: white;
}

.step-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   TOAST NOTIFICATION
   -------------------------------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.toast {
    background: var(--dark-bg);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: fadeInUp 0.3s ease;
    pointer-events: auto;
    max-width: 100%;
}

.toast i {
    color: var(--secondary-color);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
footer {
    background: var(--dark-bg);
    color: #cbd5e1;
    padding: 3rem 1rem 1.5rem 1rem;
    margin-top: 3.5rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 5px;
    border-radius: 2px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.5;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 0.8rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #94a3b8;
}

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

@keyframes pulseGlow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@keyframes floating {
    from { transform: translateY(0px); }
    to { transform: translateY(-8px); }
}

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

/* --------------------------------------------------------------------------
   MOBILE & TABLET RESPONSIVE FIXES
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-subtitle {
        margin: 0 auto 1.8rem auto;
    }
    .hero-btns {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
    }
    .booking-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    .nav-menu.active {
        left: 0;
    }
    .mobile-toggle {
        display: block;
    }
    .hero-section {
        padding: 2.5rem 0.8rem;
    }
    .stepper-wrapper {
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-start;
    }
    .stepper-wrapper::before,
    .stepper-progress {
        display: none;
    }
    .step-item {
        display: flex;
        align-items: center;
        gap: 12px;
        text-align: left;
        padding: 0;
    }
    .step-icon {
        margin: 0;
    }
    .floating-badge {
        position: static;
        margin: 10px auto;
        display: inline-flex;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1.1rem;
    }
    .brand-logo img {
        width: 32px;
        height: 32px;
    }
    .hero-btns .btn {
        width: 100%;
    }
    .zone-selector-grid {
        grid-template-columns: 1fr 1fr;
    }
    .food-grid {
        grid-template-columns: 1fr;
    }
}
