:root {
    --primary: #FF4500;
    --primary-hover: #e63e00;
    --secondary: #FFBF00;
    --dark: #1a1a1a;
    --light: #fdfdfd;
    --gray: #666;
    --soft-bg: #fff9f0;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Banner */
.top-banner {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.top-banner .highlight-red {
    color: #ff4d4d;
    font-weight: 700;
    margin-left: 5px;
}

/* Delivery Banner */
.delivery-banner {
    background: #25D366; /* WhatsApp Green */
    color: white;
    text-align: center;
    padding: 0.6rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.1);
}

.delivery-banner .highlight-green {
    color: #fff;
    background: rgba(0,0,0,0.15);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Header & Nav */
.main-header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}




/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--soft-bg) 0%, #fff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--primary);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}



.hero-image {
    position: relative;
}

.image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width: 100%;
    display: block;
    transform: scale(1.02);
    transition: 0.5s;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #fdfdfd;
}

.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 1.5rem;
    background: #fff0eb;
    padding: 0.8rem;
    border-radius: 12px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
.main-footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.main-footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}