:root {
    --color-cream: #FFFDD0;
    --color-gold: #C5A059;
    --color-chocolate: #3E2723;
    --color-white: #FFFFFF;
    --color-bg: #e8e4d8;
    /* Slightly darker cream for the "gutter" background */
    --color-text: #2C1810;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --container-width: 1100px;
}

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

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
    /* Page gutter */
    overflow-x: hidden;
}

h1,
h2,
h3,
.nav-logo {
    font-family: 'Playfair Display', serif;
}

/* Base Layout */
.page-wrapper {
    max-width: 1200px;
    /* Boxed layout width */
    margin: 40px auto;
    background-color: var(--color-white);
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
    min-height: calc(100vh - 80px);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    padding: 0.4rem 0;
    /* Reduced from 1rem */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.nav-logo img {
    height: 200px;
    /* Increased by another 50% approx from 135px */
    width: auto;
    transition: var(--transition);
}

.nav-logo:hover img {
    transform: scale(1.05);
}

/* Navigation toggle button */
.menu-toggle {
    display: none !important;
    font-size: 1.8rem;
    color: var(--color-chocolate);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1100;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    transition: var(--transition);
    align-items: center;
}

.nav-links .btn-order {
    display: none;
    /* Hide inside burger menu by default (Desktop) */
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--color-gold);
}

.btn-order {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* Hero Section */
.hero {
    height: 70vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-cream-rolls.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.hero .container {
    padding: 0 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 1.2rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-chocolate);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 10px auto 0;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-soft);
    border-color: var(--color-cream);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-slider {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.product-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-chocolate);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border: none;
    font-size: 0.8rem;
}

.slider-arrow:hover {
    background: var(--color-gold);
    color: white;
}

.arrow-prev {
    left: 10px;
}

.arrow-next {
    right: 10px;
}

.product-info {
    padding: 2.5rem;
}

.product-price {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

/* Footer */
footer {
    background: var(--color-chocolate);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}

/* Forms */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #eee;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

/* Mobile Responsiveness Improvements */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .about-grid {
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    .page-wrapper {
        margin: 0;
        border-radius: 0;
        max-width: 100%;
        box-shadow: none;
    }

    nav .container {
        justify-content: flex-start;
        gap: 20px;
    }

    .menu-toggle {
        display: block !important;
        order: -1;
        /* Place to left of logo */
    }

    .nav-logo img {
        height: 80px;
        /* Adjust for mobile */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .btn-order {
        display: inline-block;
        /* Show only inside burger menu on mobile */
        margin-top: 1.5rem;
        width: 160px;
    }

    nav>.container>.btn-order {
        display: none !important;
        /* Hide the desktop standalone button */
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    /* Dim background when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 1040;
    }

    .nav-overlay.active {
        display: block;
    }

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

    .hero {
        height: 60vh;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .nav-logo img {
        height: 70px;
        /* Slightly larger for easier brand recognition on mobile */
    }

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

    .contact-container {
        padding: 1.25rem;
    }

    .btn-order {
        width: auto;
        min-width: 150px;
        /* Reduced from 180px for better fit */
        font-size: 0.8rem;
        /* Slightly smaller text */
        padding: 0.5rem 0.8rem;
        /* Tighter padding */
        text-align: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        align-items: center;
    }

    .hero-btns .btn-order {
        margin-left: 0 !important;
        width: 160px;
        /* Narrower button stack */
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    padding: 15px 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    display: none !important;
    /* Strictly hidden on Desktop */
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float span {
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: flex !important;
        /* Force show on Mobile */
        bottom: 20px;
        right: 20px;
        padding: 12px 18px;
        font-size: 22px;
    }

    .whatsapp-float span {
        display: none;
    }
}