﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0d0d0d;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

/* SkyIT Bar */
.skyit-edge {
    background: #000;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    border-bottom: 1px solid #2a2a2a;
}

    .skyit-edge a {
        color: #ff4444;
        text-decoration: none;
        margin-left: 15px;
    }

/* Live Banner */
.live-banner {
    background: linear-gradient(90deg, #ff4444, #ff6b6b, #ff4444);
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

#app {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header */
.header-wok {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #2a2a2a;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-wok h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.8rem;
    letter-spacing: 4px;
    color: #ffffff;
}

.logo-wok span {
    color: #ff4444;
}

.logo-wok p {
    font-size: 0.7rem;
    color: #888;
    letter-spacing: 4px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.order-btn {
    background: #ff4444;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

.cart-wok {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
}

.cart-badge-wok {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #ff4444;
    color: white;
    font-size: 0.7rem;
    padding: 3px 7px;
    border-radius: 20px;
}

/* Navigation */
.nav-wok {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
}

    .nav-wok a {
        text-decoration: none;
        color: #888;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

        .nav-wok a.active {
            color: #ff4444;
        }

/* Hero */
.hero-wok {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    margin: 30px 0;
}

.hero-left {
    background: linear-gradient(135deg, #1a1a1a, #111);
    border-radius: 30px;
    padding: 50px 40px;
    border: 1px solid #2a2a2a;
}

    .hero-left .label {
        color: #ff4444;
        font-size: 0.9rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .hero-left h2 {
        font-family: 'Bebas Neue', cursive;
        font-size: 4rem;
        line-height: 1;
        margin-bottom: 20px;
    }

        .hero-left h2 span {
            color: #ff4444;
        }

.hero-right {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #2a2a2a;
}

.delivery-time {
    font-size: 2rem;
    font-family: 'Bebas Neue', cursive;
    color: #ff4444;
}

/* Category Pills */
.category-pills {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 24px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 40px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

    .pill:hover {
        border-color: #ff4444;
    }

    .pill.active {
        background: #ff4444;
        color: white;
        border-color: #ff4444;
    }

/* Section Header */
.section-header-wok {
    display: flex;
    justify-content: space-between;
    margin: 50px 0 25px;
}

    .section-header-wok h3 {
        font-family: 'Bebas Neue', cursive;
        font-size: 2rem;
        letter-spacing: 2px;
    }

        .section-header-wok h3 i {
            color: #ff4444;
            margin-right: 10px;
        }

/* Menu Grid */
.menu-grid-wok {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.menu-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

    .menu-card:hover {
        border-color: #ff4444;
        transform: translateY(-5px);
    }

.menu-img {
    aspect-ratio: 1;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.spicy-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4444;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 700;
}

.menu-info {
    padding: 20px;
}

.menu-name {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.menu-desc {
    color: #aaa;
    font-size: 0.8rem;
    margin: 8px 0 12px;
}

.menu-price {
    color: #ff4444;
    font-size: 1.3rem;
    font-weight: 700;
}

.add-wok {
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: transparent;
    border: 1px solid #ff4444;
    color: #ff4444;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
}

    .add-wok:hover {
        background: #ff4444;
        color: white;
    }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 50px 0;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
}

    .feature-card i {
        font-size: 2.5rem;
        color: #ff4444;
        margin-bottom: 15px;
    }

    .feature-card h4 {
        font-family: 'Bebas Neue', cursive;
        letter-spacing: 1px;
    }

/* Instagram Feed */
.insta-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.insta-item {
    aspect-ratio: 1;
    background: #1a1a1a;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 1px solid #2a2a2a;
    cursor: pointer;
}

/* Footer */
.footer-wok {
    background: #0a0a0a;
    margin-top: 60px;
    padding: 50px 5%;
    border-top: 1px solid #2a2a2a;
}

.footer-grid-wok {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-col-wok h4 {
    color: #ff4444;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

.footer-col-wok ul {
    list-style: none;
}

.footer-col-wok li {
    margin: 12px 0;
}

.footer-col-wok a {
    color: #888;
    text-decoration: none;
}

.sms-signup {
    display: flex;
    margin-top: 20px;
}

    .sms-signup input {
        flex: 1;
        padding: 14px;
        background: #1a1a1a;
        border: 1px solid #333;
        color: white;
        border-radius: 8px 0 0 8px;
        outline: none;
    }

    .sms-signup button {
        background: #ff4444;
        color: white;
        border: none;
        padding: 0 25px;
        border-radius: 0 8px 8px 0;
        font-weight: 700;
        cursor: pointer;
    }

.footer-bottom-wok {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    color: #888;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-wok {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insta-feed {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid-wok {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .nav-wok {
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid-wok {
        grid-template-columns: 1fr;
    }

    .hero-left h2 {
        font-size: 2.8rem;
    }

    .menu-grid-wok {
        grid-template-columns: 1fr;
    }
}
