/* ═══════════ RESET & VARIABLES ═══════════ */
:root {
    --color-bg-light: #F7F5F0;
    --color-bg-dark: #1A1A18;
    --color-bg-card: #FFFFFF;
    --color-text-dark: #111111;
    --color-text-light: #F9F9F9;
    --color-accent: #B0A08A;
    --color-accent-warm: #C4956A;
    --color-accent-green: #7A8B6F;
    --color-border: rgba(0,0,0,0.08);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s ease;
    --radius: 16px;
    --radius-sm: 8px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ═══════════ TYPOGRAPHY ═══════════ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.serif-italic { font-style: italic; }
.accent { color: var(--color-accent-warm); }
.mt-2 { margin-top: 20px; }

/* ═══════════ LAYOUT ═══════════ */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.section { padding: 120px 0; }
.text-center { text-align: center; }

/* ═══════════ BUTTONS ═══════════ */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-bg-dark), #2a2a28);
    color: var(--color-text-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-text-dark);
    border: 1.5px solid var(--color-text-dark);
}
.btn-outline:hover {
    background: var(--color-text-dark);
    color: var(--color-text-light);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-text-light);
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.8);
}

.btn-lg { padding: 20px 44px; font-size: 1rem; }
.btn-full { width: 100%; text-align: center; }

/* ═══════════ NAVIGATION ═══════════ */
.main-nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 24px 0;
    z-index: 1000;
    transition: var(--transition-medium);
}

.main-nav.scrolled {
    background: rgba(247, 245, 240, 0.95);
    padding: 14px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}

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

.logo a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text-dark);
    letter-spacing: 0.1em;
}

.menu-links a {
    text-decoration: none;
    color: var(--color-text-dark);
    margin-left: 32px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: var(--transition-fast);
    position: relative;
}

.menu-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background: var(--color-accent);
    transition: var(--transition-fast);
}

.menu-links a:hover::after { width: 100%; }
.menu-links a:hover { color: var(--color-accent); }

.nav-cta {
    display: inline-block;
    padding: 10px 24px;
    background: var(--color-bg-dark);
    color: var(--color-text-light) !important;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}
.nav-cta:hover { background: var(--color-accent-warm); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-toggle {
    position: relative;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition-fast);
}
.cart-toggle:hover { transform: scale(1.15); }

.cart-count {
    position: absolute;
    top: 0; right: -2px;
    width: 20px; height: 20px;
    background: #E74C3C;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
}

/* ═══════════ CART DRAWER ═══════════ */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
    position: fixed;
    top: 0; right: -420px;
    width: 400px; height: 100vh;
    background: var(--color-bg-card);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--color-border);
}
.cart-header h3 {
    font-size: 1.2rem;
    font-family: var(--font-heading);
}
.cart-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition-fast);
    padding: 4px 8px;
}
.cart-close:hover { opacity: 1; }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    opacity: 0.5;
}
.cart-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.cart-empty p { font-size: 1rem; margin-bottom: 4px; }
.cart-empty small { font-size: 0.85rem; }

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}
.cart-item-info strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.cart-item-price {
    font-size: 0.85rem;
    color: var(--color-accent-warm);
    font-weight: 500;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 30px; height: 30px;
    border: 1px solid var(--color-border);
    background: var(--color-bg-light);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.qty-btn:hover { background: var(--color-bg-dark); color: white; }

.qty-value {
    min-width: 24px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.4;
    transition: var(--transition-fast);
    padding: 4px;
}
.remove-btn:hover { opacity: 1; }

.cart-footer {
    padding: 24px 28px;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-light);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
}
.cart-total-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent-warm);
}
.cart-note {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 0.8rem;
    opacity: 0.5;
    color: var(--color-accent-green);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--color-text-dark);
    transition: var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--color-bg-light);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-medium);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

/* ═══════════ SECTION COMMON ═══════════ */
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(176, 160, 138, 0.15);
    color: var(--color-accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-tag.light {
    background: rgba(255,255,255,0.1);
    color: var(--color-accent-warm);
}

.section-header { margin-bottom: 60px; max-width: 600px; }
.section-header.text-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-title { font-size: 3rem; margin-bottom: 16px; line-height: 1.15; }
.section-desc { font-size: 1.1rem; opacity: 0.65; }

/* ═══════════ 1. HERO ═══════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(247,245,240,0.97) 45%, rgba(247,245,240,0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 55%;
    padding-left: 5%;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(196, 149, 106, 0.12);
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-accent-warm);
    margin-bottom: 28px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 480px;
    margin-bottom: 36px;
    opacity: 0.7;
    line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}
.stat { display: flex; flex-direction: column; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent-warm);
}
.stat-label { font-size: 0.8rem; opacity: 0.5; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-image {
    position: absolute;
    top: 0; right: 0;
    width: 50%; height: 100%;
    z-index: 1;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════ 2. BEST SELLERS ═══════════ */
.bestsellers-section { background: var(--color-bg-card); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--color-bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-medium);
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .product-image img { transform: scale(1.08); }

.product-badge {
    position: absolute;
    top: 16px; left: 16px;
    padding: 5px 14px;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
}
.product-badge.hot { background: #E74C3C; }
.product-badge.new { background: var(--color-accent-green); }

.product-info { padding: 24px; }
.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 6px;
    display: block;
}
.product-name {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.product-desc {
    font-size: 0.88rem;
    opacity: 0.6;
    margin-bottom: 20px;
    line-height: 1.6;
}
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-accent-warm);
}

.btn-add {
    padding: 10px 20px;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    letter-spacing: 0.03em;
}
.btn-add:hover { background: var(--color-accent-warm); }
.btn-add.added { background: var(--color-accent-green); }

/* ═══════════ 3. BRAND STORY ═══════════ */
.dark-theme {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.about-container {
    display: flex;
    gap: 80px;
    align-items: center;
}
.about-text { flex: 1; }
.about-image { flex: 1; height: 75vh; border-radius: var(--radius); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.light-text { color: var(--color-accent-warm); margin-bottom: 16px; }

.about-quote {
    font-size: 2.2rem;
    line-height: 1.35;
    margin-bottom: 28px;
    color: rgba(255,255,255,0.9);
}
.about-desc {
    font-size: 1.05rem;
    opacity: 0.7;
    line-height: 1.8;
    max-width: 500px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}
.feature-icon { font-size: 1.3rem; }

/* ═══════════ 4. TESTIMONIALS ═══════════ */
.testimonials-section { background: var(--color-bg-light); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-bg-card);
    padding: 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition-medium);
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.stars {
    color: #F5A623;
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-warm));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}
.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; opacity: 0.5; }

/* ═══════════ 5. MENU CATEGORIES ═══════════ */
.menu-section { background: var(--color-bg-card); }

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.menu-category-card {
    display: flex;
    background: var(--color-bg-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition-medium);
    cursor: pointer;
}
.menu-category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.menu-cat-image {
    width: 200px;
    min-height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}
.menu-cat-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-category-card:hover .menu-cat-image img { transform: scale(1.1); }

.menu-cat-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.menu-cat-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.menu-cat-info p {
    font-size: 0.9rem;
    opacity: 0.6;
    line-height: 1.6;
    margin-bottom: 14px;
}
.menu-cat-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent-warm);
}

/* ═══════════ 6. ORDER CTA ═══════════ */
.order-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A18 0%, #2a2520 50%, #1A1A18 100%);
    position: relative;
    overflow: hidden;
}
.order-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(196,149,106,0.08) 0%, transparent 50%);
}

.order-content { position: relative; z-index: 2; }
.order-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-text-light);
}
.order-desc {
    font-size: 1.15rem;
    opacity: 0.7;
    max-width: 550px;
    margin: 0 auto 40px;
    color: var(--color-text-light);
}

.order-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.order-feature {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}
.order-icon { font-size: 1.4rem; }

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.order-note {
    font-size: 0.85rem;
    opacity: 0.4;
    color: var(--color-text-light);
}

/* ═══════════ 7. CONTACT ═══════════ */
.contact-section { background: var(--color-bg-light); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.stores-wrapper { display: flex; flex-direction: column; gap: 24px; }

.store-card {
    background: var(--color-bg-card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition-fast);
}
.store-card:hover { box-shadow: var(--shadow-hover); }

.store-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(176,160,138,0.15);
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 14px;
}

.store-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.store-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 8px;
}

.store-card a {
    color: var(--color-accent-warm);
    text-decoration: none;
    font-weight: 500;
}
.store-card a:hover { text-decoration: underline; }

.contact-form-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.form-desc {
    font-size: 0.95rem;
    opacity: 0.6;
    margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; gap: 14px; }
.form-row input { flex: 1; }

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-card);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.contact-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 40px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-accent-warm);
    box-shadow: 0 0 0 3px rgba(196,149,106,0.1);
}

.contact-form button { border: none; cursor: pointer; }

/* ═══════════ 8. FOOTER ═══════════ */
.footer {
    padding: 80px 0 30px;
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: var(--color-text-light);
}
.footer-slogan {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 6px;
}
.footer-tagline {
    font-size: 0.85rem;
    opacity: 0.35;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-column h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    opacity: 0.4;
    color: var(--color-text-light);
}

.link-column p, .link-column a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}
.link-column a:hover { color: var(--color-accent-warm); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.35;
}

/* ═══════════ ANIMATIONS ═══════════ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}
.fade-in {
    opacity: 0;
    transition: var(--transition-slow);
}
.fade-up.visible, .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-content { width: 60%; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { flex-direction: column; }
    .about-image { width: 100%; height: 50vh; }
    .menu-grid { grid-template-columns: 1fr; }
    .order-title { font-size: 2.8rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 48px; }
    .footer-links { gap: 48px; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .menu-links, .nav-cta { display: none; }
    .cart-drawer { width: 100%; right: -100%; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    .hero {
        flex-direction: column;
        padding-top: 100px;
        min-height: auto;
    }
    .hero-overlay { background: rgba(247,245,240,0.92); }
    .hero-content { width: 100%; padding: 0 5%; }
    .hero-title { font-size: 2.8rem; }
    .hero-image { position: relative; width: 100%; height: 50vh; }
    .hero-stats { gap: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; }

    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .product-image { height: 220px; }

    .section-title { font-size: 2.2rem; }
    .about-quote { font-size: 1.6rem; }

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

    .menu-category-card { flex-direction: column; }
    .menu-cat-image { width: 100%; min-height: 180px; }

    .order-title { font-size: 2.2rem; }
    .order-features { flex-direction: column; align-items: center; gap: 16px; }
    .order-buttons { flex-direction: column; align-items: center; }
    .order-buttons .btn { width: 100%; text-align: center; }

    .form-row { flex-direction: column; }

    .footer-links { flex-direction: column; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 16px; }
}
