/* ============================================
   RESET & BASE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E67E22;
    --dark: #2C3E50;
    --cream: #F8F5F0;
    --white: #FFFFFF;
    --light-gray: #E8E4DF;
    --overlay: rgba(44, 62, 80, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 2;
    overflow-x: hidden;
    font-size: 1.125rem;
    font-weight: 300;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 5rem;
    letter-spacing: -0.01em;
}

h2 {
    font-size: 3.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
    font-weight: 400;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 400;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    text-align: center;
    color: var(--dark);
    margin-bottom: 80px;
    letter-spacing: -0.01em;
}

.section-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: all 0.4s ease;
    height: 90px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.nav-cart {
    position: relative;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
    margin-left: 20px;
    transition: color 0.3s ease;
}

.nav-cart:hover {
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.cart-badge:empty {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    margin-left: 20px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: var(--dark);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.nav-menu.mobile-active {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    animation: slideInRight 0.4s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
    /* Fallback gradient */
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero.hero-fallback {
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1s ease;
}

.hero-intro {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.9;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 50px;
    font-size: 5rem;
    line-height: 1.2;
}

/* Hero subtitle removed - keeping it simple and elegant */

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--white);
    border-radius: 50px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.cta-button.orange {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.cta-button.orange:hover {
    background-color: #d66a1a;
    border-color: #d66a1a;
    color: var(--white);
}

/* ============================================
   CLIENT LOGOS SECTION
   ============================================ */

.client-logos {
    padding: 80px 0;
    background-color: var(--white);
}

.logos-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-placeholder {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #999;
    font-weight: 300;
    text-align: center;
}

/* ============================================
   WELCOME SECTION
   ============================================ */

.welcome {
    padding: 140px 0;
    background-color: var(--cream);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-content {
    padding-right: 40px;
}

.welcome-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

.welcome-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.welcome-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 2;
    color: #666;
    font-weight: 300;
}

.welcome-image-wrapper {
    position: relative;
}

.welcome-image {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    /* Fallback gradient */
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
}

.welcome-image-wrapper.image-fallback .welcome-image {
    display: none;
}

.welcome-image-wrapper.image-fallback::after {
    content: 'Professional Food Photography';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
}

/* ============================================
   OCCASIONS SECTION
   ============================================ */

.occasions {
    padding: 120px 0;
    background-color: var(--white);
}

.occasions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.occasion-card {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s ease;
}

.occasion-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    /* Fallback gradient */
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
}

.occasion-card:hover .occasion-image {
    transform: scale(1.05);
}

.occasion-card.image-fallback .occasion-image {
    display: none;
}

.occasion-card.image-fallback::before {
    content: 'Professional Food Photography';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
    z-index: 0;
}

.occasion-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    z-index: 1;
}

.occasion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    z-index: 2;
    color: var(--white);
}

.occasion-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.2;
}

.occasion-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 140px 0;
    background-color: var(--cream);
}

.how-it-works .section-heading {
    margin-bottom: 80px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 80px;
}

.step-card {
    text-align: center;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1;
    color: var(--primary);
}

.step-icon i {
    font-size: 3rem;
    color: var(--primary);
    background: transparent;
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.step-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   MENU SHOWCASE SECTION
   ============================================ */

.menu-showcase {
    padding: 140px 0;
    background-color: var(--white);
}

.menu-showcase .section-label {
    margin-bottom: 20px;
}

.menu-showcase .section-heading {
    margin-bottom: 80px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.menu-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.menu-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    /* Fallback gradient */
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
}

.menu-card.image-fallback .menu-image {
    display: none;
}

.menu-card.image-fallback::before {
    content: 'Professional Food Photography';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
}

.menu-content {
    padding: 35px;
}

.menu-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.menu-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    font-weight: 300;
}

.product-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 15px 0;
}

.product-quantity {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--primary);
    background-color: var(--white);
    color: var(--primary);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 600;
}

.qty-btn:hover:not(:disabled) {
    background-color: var(--primary);
    color: var(--white);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: 1px solid #E8E4DF;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary);
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px 30px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.add-to-cart-btn:hover {
    background-color: #d66a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.menu-cta {
    text-align: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 140px 0;
    background-color: var(--cream);
}

.contact .section-heading {
    margin-bottom: 60px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s ease;
    line-height: 1.5;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-button {
    width: 100%;
    padding: 18px 45px;
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #d66a1a;
    border-color: #d66a1a;
    transform: translateY(-2px);
}

.form-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.5s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-top: 25px;
    line-height: 1.6;
    font-weight: 300;
}

.contact-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Image fallback styling handled in individual sections above */

/* ============================================
   OUR STORY SECTION
   ============================================ */

.our-story {
    padding: 140px 0;
    background-color: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-wrapper {
    position: relative;
}

.story-image {
    width: 100%;
    height: 600px;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    /* Fallback gradient */
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
}

.story-image-wrapper.image-fallback .story-image {
    display: none;
}

.story-image-wrapper.image-fallback::after {
    content: 'Professional Food Photography';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F8F5F0 0%, #E8E4DF 100%);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
}

.story-content {
    padding-left: 40px;
}

.story-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}

.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 2;
    color: #666;
    font-weight: 300;
    margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    font-weight: 500;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 300;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.footer-social {
    text-align: center;
    margin-bottom: 40px;
}

.footer-social a {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
    color: var(--white);
    font-weight: 300;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .welcome-content {
        padding-right: 0;
    }

    .welcome-image {
        height: 500px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-content {
        padding-left: 0;
    }

    .story-image {
        height: 500px;
    }

    .occasions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .occasions,
    .how-it-works,
    .menu-showcase,
    .contact,
    .welcome {
        padding: 100px 0;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.mobile-active {
        display: flex;
    }

    .hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 25px;
    }


    .hero-intro {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .welcome-content h2 {
        font-size: 2.5rem;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .welcome-image {
        height: 400px;
    }

    .story-image {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .occasions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .occasion-card {
        height: 450px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-heading {
        font-size: 2.25rem;
        margin-bottom: 50px;
    }

    .section-subheading {
        font-size: 1rem;
        margin-bottom: 60px;
    }

    .occasions,
    .how-it-works,
    .menu-showcase,
    .contact,
    .welcome {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .section-subheading {
        font-size: 0.95rem;
        margin-bottom: 50px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }


    .hero-intro {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 0.9rem;
    }

    .welcome-content h2 {
        font-size: 2rem;
    }

    .welcome-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .welcome-image {
        height: 350px;
    }

    .story-image {
        height: 350px;
    }

    .story-content h2 {
        font-size: 2.5rem;
    }

    .story-text {
        font-size: 1.1rem;
    }

    .occasion-content h3 {
        font-size: 1.8rem;
    }

    .occasion-content p {
        font-size: 0.95rem;
    }

    .step-card h3 {
        font-size: 1.2rem;
    }

    .step-card p {
        font-size: 0.95rem;
    }

    .menu-content h3 {
        font-size: 1.5rem;
    }

    .menu-content p {
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }

    .occasions,
    .how-it-works,
    .menu-showcase,
    .contact,
    .welcome {
        padding: 60px 0;
    }
}

/* ============================================
   CART SIDEBAR
   ============================================ */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid #E8E4DF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background-color: var(--white);
    z-index: 1;
}

.cart-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
    margin: 0;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.cart-close:hover {
    color: var(--primary);
}

.cart-items {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #E8E4DF;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 5px;
}

.cart-item-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.cart-item-qty .qty-btn {
    width: 30px;
    height: 30px;
    font-size: 1rem;
}

.cart-item-qty .qty-input {
    width: 45px;
    height: 30px;
    font-size: 0.9rem;
}

.cart-item-subtotal {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 1rem;
    padding: 5px;
    transition: color 0.3s ease;
}

.cart-item-remove:hover {
    color: #e74c3c;
}

.cart-empty {
    text-align: center;
    padding: 60px 30px;
}

.cart-empty-icon {
    font-size: 4rem;
    color: #E8E4DF;
    margin-bottom: 20px;
}

.cart-empty h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.cart-empty p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 25px;
}

.cart-summary {
    padding: 20px 30px;
    border-top: 1px solid #E8E4DF;
    background-color: #FAF9F6;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #666;
}

.cart-summary-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E8E4DF;
}

.cart-summary-row.total .summary-value {
    color: var(--primary);
}

.cart-actions {
    padding: 30px;
    border-top: 1px solid #E8E4DF;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-order-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-order-btn:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.continue-shopping-btn {
    width: 100%;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--dark);
    border: 2px solid #E8E4DF;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 15px 25px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.3s ease, slideOutRight 0.3s ease 2.7s;
    min-width: 250px;
}

.toast.success {
    background-color: #25D366;
}

.toast.error {
    background-color: #e74c3c;
}

.toast.info {
    background-color: #3498db;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* ============================================
   CART RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100vw;
        right: -100vw;
    }

    .cart-sidebar.active {
        right: 0;
    }

    .product-quantity {
        flex-direction: column;
        width: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }

    .toast-container {
        right: 10px;
        top: 80px;
    }

    .toast {
        min-width: 200px;
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}
