:root {
    --primary: #FF5E00;
    /* Vibrant orange from logo flames */
    --secondary: #4A2C2A;
    /* Deep cocoa brown from logo text */
    --accent: #FFD500;
    /* Yellow from logo */
    --light: #FFF9F2;
    --dark: #2C1810;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
    font-size: 1.2rem;
}

#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;
    font-size: 0.9rem;
    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('background\ 2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-logo {
    width: 200px;
    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);
    opacity: 0.9;
}

/* --- Sections --- */
.section {
    padding: 100px 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: 20px 20px 0 var(--primary);
}

.features {
    list-style: none;
    margin-top: 20px;
}

.features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.features i {
    color: 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:hover {
    transform: translateY(-10px);
}

.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);
}

.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(250px, 1fr));
    gap: 20px;
}

.testimonial-grid img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* --- Order --- */
.order-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}

.order-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input label {
    font-weight: 600;
    white-space: nowrap;
}

.total-display {
    text-align: right;
    font-weight: 700;
}

#totalCost {
    color: var(--primary);
    font-size: 1.4rem;
    margin-left: 5px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
}

textarea {
    height: 100px;
    margin-bottom: 15px;
}

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #1eb956;
    transform: scale(1.01);
}

/* --- Footer --- */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 80px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.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: #888;
}

/* --- Responsive --- */
@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;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--secondary) !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}