:root {
    --primary: #FF5E00;
    --secondary: #4A2C2A;
    --accent: #FFD500;
    --light: #FFF9F2;
    --dark: #2C1810;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* --- Navbar --- */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    transition: all 0.4s ease;
}

#navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 10px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
}

#navbar.scrolled .logo-container {
    color: var(--secondary);
}

.nav-logo {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: 0.3s;
}

#navbar.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-cta {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    color: white !important;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

#navbar.scrolled .menu-btn {
    color: var(--secondary);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('Cookie packed.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-logo {
    width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 10px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

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

.btn.secondary {
    background: var(--white);
    color: var(--secondary);
}

.btn:hover {
    transform: translateY(-3px);
}

/* --- Sections --- */
.section {
    padding: 80px 0;
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.center {
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0 var(--primary);
}

/* --- Products --- */
.category-label {
    background: var(--secondary);
    color: white;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 5px;
    margin: 40px 0 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.p-info {
    padding: 20px;
    text-align: center;
}

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

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bundle-card {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

.bundle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.bundle-card.highlight {
    border: 2px solid var(--primary);
}

/* --- Testimonials --- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.testimonial-grid img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* --- Enhanced Multi-Order Form --- */
.order-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
}

.order-header {
    text-align: center;
    margin-bottom: 40px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.product-selector-box {
    background: #fffcf8;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #ffe8d6;
    margin-bottom: 20px;
}

.add-group {
    display: flex;
    gap: 10px;
}

.add-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
}

.order-list {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid #eee;
    font-size: 0.95rem;
}

.remove-item {
    color: #ff4444;
    cursor: pointer;
    font-size: 1.1rem;
    padding-left: 15px;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    background: #fdfdfd;
    transition: 0.3s;
}

.cost-summary {
    background: #fff8f4;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 25px;
    border: 1px dashed var(--primary);
}

.cost-item.total {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
}

.cost-item.total span:last-child {
    color: var(--primary);
}

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 60px;
    margin-bottom: 15px;
}

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-social .icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    font-size: 1.5rem;
}

.footer-social a {
    color: var(--primary);
}

.bottom-bar {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #777;
}

/* --- Mobile --- */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--secondary) !important;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .order-wrapper {
        padding: 30px 20px;
    }
}