:root {
    --gold: #C5A054;
    --gold-light: #D4AF63;
    --gold-dark: #A8893E;
    --gold-gradient: linear-gradient(135deg, #D4AF63, #C5A054, #A8893E);
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-card: #141414;
    --dark-bg: #0D0D0D;
    --cream: #FAF5EB;
    --white: #FFFFFF;
    --text-light: #B8B8B8;
    --text-muted: #888888;
    --whatsapp: #25D366;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--black); color: var(--white); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 15px 0; transition: var(--transition); background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(20px);
    padding: 10px 0; box-shadow: 0 2px 30px rgba(197, 160, 84, 0.1);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; transition: var(--transition); }
.navbar.scrolled .nav-logo img { height: 42px; }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-link {
    font-size: 0.85rem; font-weight: 400; letter-spacing: 1px;
    text-transform: uppercase; color: var(--white); position: relative; transition: var(--transition);
}
.nav-link::after {
    content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--gold-gradient); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-toggle span { width: 25px; height: 2px; background: var(--gold); transition: var(--transition); }

/* ==================== HERO ==================== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; background: var(--black); overflow: hidden; padding: 100px 0 60px;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -20%; width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(197, 160, 84, 0.08) 0%, transparent 70%); border-radius: 50%;
}
.hero-content {
    max-width: 1200px; margin: 0 auto; padding: 0 20px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    position: relative; z-index: 2;
}
.hero-subtitle { font-size: 0.85rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 15px; }
.hero-title { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 10px; }
.hero-title span { display: block; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-tagline { font-family: var(--font-heading); font-size: 1.3rem; font-style: italic; color: var(--gold-light); margin-bottom: 25px; letter-spacing: 2px; }
.hero-description { font-size: 1rem; line-height: 1.8; color: var(--text-light); margin-bottom: 35px; max-width: 500px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary { background: var(--gold-gradient); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(197, 160, 84, 0.3); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-full { width: 100%; justify-content: center; }
.hero-image { display: flex; justify-content: center; }
.hero-image-frame { position: relative; width: 420px; height: 560px; overflow: hidden; }
.hero-image-frame::before {
    content: ''; position: absolute; top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 1px solid rgba(197, 160, 84, 0.3); z-index: 1; pointer-events: none;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
/* Hero Quick Nav Cards */
.hero-nav-cards {
    display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap;
}
.hero-nav-card {
    display: flex; align-items: center; gap: 8px; padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(197, 160, 84, 0.25);
    color: var(--text-light); font-size: 0.85rem; transition: var(--transition); cursor: pointer;
}
.hero-nav-card i {
    font-size: 1rem; color: var(--gold);
}
.hero-nav-card span {
    font-weight: 500; letter-spacing: 0.5px;
}
.hero-nav-card:hover {
    background: rgba(197, 160, 84, 0.1); border-color: var(--gold); color: var(--gold-light);
    transform: translateY(-2px);
}
.hero-nav-card.featured {
    border-color: var(--gold); background: rgba(197, 160, 84, 0.08);
}
.hero-nav-card.featured i { color: var(--gold-light); }
.hero-nav-card.featured:hover { background: var(--gold); color: var(--black); }
.hero-nav-card.featured:hover i { color: var(--black); }
.hero-nav-card.aag {
    border-color: rgba(37, 211, 102, 0.3);
}
.hero-nav-card.aag i {
    color: var(--whatsapp);
}
.hero-nav-card.aag:hover {
    background: rgba(37, 211, 102, 0.1); border-color: var(--whatsapp); color: var(--whatsapp);
}

.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll a { color: var(--gold); font-size: 1.2rem; animation: bounce 2s infinite; }
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header.light .section-subtitle, .section-header.light .section-title { color: var(--white); }
.section-subtitle { font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 700; }
.section-title span { background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.title-line { width: 60px; height: 2px; background: var(--gold-gradient); margin: 15px auto 0; }
.section-description { font-size: 1rem; color: var(--text-light); max-width: 600px; margin: 20px auto 0; line-height: 1.7; }

/* ==================== ABOUT ==================== */
.about { padding: 100px 0; background: var(--black-light); }
.about-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 60px; }
.about-card {
    background: var(--black-card); padding: 40px 30px; border: 1px solid rgba(197, 160, 84, 0.1);
    transition: var(--transition); text-align: center;
}
.about-card:hover { border-color: rgba(197, 160, 84, 0.3); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.about-icon {
    width: 70px; height: 70px; margin: 0 auto 25px; display: flex; align-items: center;
    justify-content: center; border: 1px solid var(--gold); border-radius: 50%;
}
.about-icon i { font-size: 1.5rem; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.about-card h3 { font-family: var(--font-heading); font-size: 1.4rem; margin-bottom: 15px; color: var(--gold-light); }
.about-card p { font-size: 0.9rem; line-height: 1.7; color: var(--text-light); }

/* How to Order */
.how-to-order {
    background: var(--black-card); border: 1px solid rgba(37, 211, 102, 0.2);
    padding: 40px; text-align: center;
}
.how-to-order h3 {
    font-family: var(--font-heading); font-size: 1.5rem; color: var(--whatsapp);
    margin-bottom: 30px;
}
.how-to-order h3 i { margin-right: 10px; }
.order-steps { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.step { text-align: center; max-width: 200px; }
.step-num {
    width: 50px; height: 50px; border-radius: 50%; background: var(--gold-gradient);
    color: var(--black); font-size: 1.3rem; font-weight: 700; display: flex;
    align-items: center; justify-content: center; margin: 0 auto 15px;
}
.step p { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

/* ==================== FEATURED SECTION ==================== */
.featured-section { padding: 100px 0; background: var(--black); }
.featured-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; gap: 15px;
}
.featured-card {
    position: relative; overflow: hidden; cursor: pointer;
}
.featured-card.large {
    grid-column: 1 / 3; grid-row: 1 / 3;
}
.featured-card img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    transition: transform 0.6s ease; display: block;
}
.featured-card:hover img { transform: scale(1.05); }
.featured-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    opacity: 0; transition: var(--transition);
}
.featured-card:hover .featured-overlay { opacity: 1; }
.featured-badge {
    position: absolute; top: 15px; left: 15px; padding: 5px 14px;
    background: var(--gold-gradient); color: var(--black); font-size: 0.7rem;
    font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    opacity: 1;
}
.featured-card .featured-badge { opacity: 1; }
.featured-overlay h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--gold-light); margin-bottom: 5px; }
.featured-overlay p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.4; }
.featured-overlay .btn-order { align-self: flex-start; }

/* ==================== IMAGE LOADING ==================== */
.product-image, .featured-card {
    background: var(--black-card);
}
.product-image img, .featured-card img {
    background: linear-gradient(110deg, #1a1a1a 8%, #222 18%, #1a1a1a 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
}
.product-image img[src], .featured-card img[src] {
    animation: none; background: none;
}
@keyframes shimmer {
    to { background-position-x: -200%; }
}

/* ==================== PRODUCT SECTIONS ==================== */
.product-section { padding: 100px 0; background: var(--black); }
.product-section.alt-bg { background: var(--black-light); }

/* Category Tabs */
.category-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
    padding: 10px 25px; background: transparent; border: 1px solid rgba(197, 160, 84, 0.3);
    color: var(--text-light); font-family: var(--font-body); font-size: 0.85rem;
    cursor: pointer; transition: var(--transition); letter-spacing: 1px;
}
.tab-btn:hover, .tab-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* Product Grid */
.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.product-card {
    background: var(--black-card); border: 1px solid rgba(197, 160, 84, 0.08);
    overflow: hidden; transition: var(--transition);
}
.product-card.hidden { display: none; }
.product-card:hover { border-color: rgba(197, 160, 84, 0.3); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }

/* Product Actions Overlay */
.product-actions {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(100%); transition: var(--transition);
    display: flex; justify-content: center;
}
.product-card:hover .product-actions { transform: translateY(0); }
.btn-order {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 25px;
    background: var(--whatsapp); color: white; font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
    border: none; cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-order:hover { background: #1fba59; transform: scale(1.05); box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
.btn-order i { font-size: 1rem; }

.product-info { padding: 18px 15px; }
.product-info h4 { font-family: var(--font-heading); font-size: 1rem; color: var(--gold-light); margin-bottom: 5px; line-height: 1.3; }
.product-info p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* Kids Coming Soon */
.kids-coming-soon {
    margin-top: 40px; padding: 60px 40px; background: var(--black-card);
    border: 1px dashed rgba(197, 160, 84, 0.3); text-align: center;
}
.coming-soon-content i { font-size: 3rem; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; }
.coming-soon-content h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-light); margin-bottom: 10px; }
.coming-soon-content p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 25px; }

/* ==================== AAG KITCHEN ==================== */
.aag-kitchen { padding: 100px 0; background: var(--dark-bg); position: relative; }
.aag-kitchen::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.aag-content { display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; margin-bottom: 50px; }
.aag-logo { display: flex; justify-content: center; }
.aag-logo img { max-width: 300px; border-radius: 50%; border: 2px solid rgba(197, 160, 84, 0.3); }
.aag-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.aag-info-card { background: var(--black-card); padding: 30px 25px; border: 1px solid rgba(197, 160, 84, 0.1); transition: var(--transition); }
.aag-info-card:hover { border-color: rgba(197, 160, 84, 0.3); }
.aag-info-card i { font-size: 1.8rem; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 15px; }
.aag-info-card h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold-light); margin-bottom: 10px; }
.aag-info-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.aag-info-card a { color: var(--gold); transition: var(--transition); }
.aag-info-card a:hover { color: var(--gold-light); }
.aag-food-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.food-item { overflow: hidden; border: 1px solid rgba(197, 160, 84, 0.15); }
.food-item img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.5s ease; }
.food-item:hover img { transform: scale(1.05); }

/* ==================== CONTACT ==================== */
.contact { padding: 100px 0; background: var(--black); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
    display: flex; align-items: center; gap: 20px; padding: 20px 25px;
    background: var(--black-card); border: 1px solid rgba(197, 160, 84, 0.1); transition: var(--transition);
}
.contact-card:hover { border-color: rgba(197, 160, 84, 0.3); }
.contact-icon {
    width: 50px; height: 50px; min-width: 50px; display: flex; align-items: center;
    justify-content: center; border: 1px solid var(--gold); border-radius: 50%;
}
.contact-icon i { font-size: 1rem; background: var(--gold-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-card h4 { font-family: var(--font-heading); font-size: 0.95rem; color: var(--gold-light); margin-bottom: 5px; }
.contact-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
.contact-card a { color: var(--text-light); transition: var(--transition); }
.contact-card a:hover { color: var(--gold); }
.contact-form-wrapper { background: var(--black-card); border: 1px solid rgba(197, 160, 84, 0.1); padding: 40px; }
.contact-form h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--gold-light); margin-bottom: 25px; }
.form-group { margin-bottom: 15px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(197, 160, 84, 0.15); color: var(--white);
    font-family: var(--font-body); font-size: 0.9rem; transition: var(--transition);
    outline: none; border-radius: 0; -webkit-appearance: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black-card); color: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: rgba(197, 160, 84, 0.05); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ==================== FOOTER ==================== */
.footer { padding: 60px 0 0; background: var(--black-light); border-top: 1px solid rgba(197, 160, 84, 0.15); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 15px; }
.footer-brand p { font-size: 0.95rem; color: var(--gold-light); font-family: var(--font-heading); font-style: italic; margin-bottom: 10px; }
.footer-desc { font-size: 0.85rem !important; color: var(--text-light) !important; font-family: var(--font-body) !important; font-style: normal !important; line-height: 1.6; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold-light); margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--text-light); transition: var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.footer-contact a { color: var(--text-light); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }
.footer-contact i { color: var(--gold); font-size: 0.85rem; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(197, 160, 84, 0.3); color: var(--gold); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(197, 160, 84, 0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 1px; }

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed; inset: 0; z-index: 2000; display: none;
    align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-backdrop {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-close {
    position: absolute; top: 20px; right: 25px; z-index: 10;
    background: none; border: none; color: var(--white); font-size: 1.5rem;
    cursor: pointer; width: 45px; height: 45px; display: flex; align-items: center;
    justify-content: center; transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 50%;
}
.lightbox-close:hover { background: rgba(255,255,255,0.1); color: var(--gold); border-color: var(--gold); }

.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.15);
    color: var(--white); font-size: 1.2rem; cursor: pointer;
    width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); border-radius: 50%;
}
.lightbox-nav:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-content {
    position: relative; z-index: 5; max-width: 90vw; max-height: 85vh;
    display: flex; flex-direction: column; align-items: center;
    animation: zoomIn 0.25s ease;
}
@keyframes zoomIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
#lightbox-img {
    max-width: 90vw; max-height: 70vh; object-fit: contain;
    border: 1px solid rgba(197, 160, 84, 0.2);
}
.lightbox-info {
    background: var(--black-card); border: 1px solid rgba(197, 160, 84, 0.15);
    border-top: none; padding: 18px 25px; width: 100%;
    display: flex; align-items: center; gap: 15px;
}
.lightbox-info h3 {
    font-family: var(--font-heading); font-size: 1.1rem; color: var(--gold-light);
    flex: 1; line-height: 1.3;
}
.lightbox-info p {
    font-size: 0.8rem; color: var(--text-muted); flex: 1; line-height: 1.4;
}
.lightbox-order {
    display: inline-flex; align-items: center; gap: 8px; padding: 12px 25px;
    background: var(--whatsapp); color: white; font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    white-space: nowrap; transition: var(--transition); flex-shrink: 0;
}
.lightbox-order:hover { background: #1fba59; transform: scale(1.05); box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); }
.lightbox-order i { font-size: 1.1rem; }

.lightbox-counter {
    position: absolute; bottom: 15px; left: 50%; transform: translateX(-50%);
    z-index: 10; font-size: 0.8rem; color: var(--text-muted); letter-spacing: 2px;
}

/* Make product images show pointer */
.product-card .product-image,
.featured-card { cursor: pointer; }
.featured-card .btn-order { position: relative; z-index: 5; }

@media (max-width: 768px) {
    .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    #lightbox-img { max-height: 55vh; }
    .lightbox-info { flex-direction: column; align-items: flex-start; gap: 8px; padding: 15px; }
    .lightbox-info p { display: none; }
    .lightbox-order { width: 100%; justify-content: center; padding: 14px 20px; }
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center;
    justify-content: center; color: white; font-size: 1.8rem;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-image-frame { width: 350px; height: 470px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
        background: rgba(10, 10, 10, 0.98); flex-direction: column;
        justify-content: center; align-items: center; gap: 25px; transition: var(--transition);
        backdrop-filter: blur(20px);
    }
    .nav-menu.active { right: 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-title { font-size: 3rem; }
    .hero-description { margin: 0 auto 35px; }
    .hero-buttons { justify-content: center; }
    .hero-nav-cards { justify-content: center; }
    .hero-image-frame { width: 300px; height: 400px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .order-steps { gap: 25px; }
    .section-title { font-size: 2.2rem; }
    .featured-grid { grid-template-columns: 1fr 1fr; }
    .featured-card.large { grid-column: 1 / -1; grid-row: auto; max-height: 400px; }
    .featured-overlay { opacity: 1; }
    .product-actions { transform: translateY(0); }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .aag-content { grid-template-columns: 1fr; text-align: center; }
    .aag-logo img { max-width: 200px; }
    .aag-info-grid { grid-template-columns: 1fr; }
    .aag-food-gallery { grid-template-columns: 1fr; }
    .food-item img { height: 300px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px 20px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-contact p { justify-content: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-image-frame { width: 260px; height: 350px; }
    .btn { padding: 12px 20px; font-size: 0.75rem; }
    .section-title { font-size: 1.8rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-info { padding: 12px 10px; }
    .product-info h4 { font-size: 0.85rem; }
    .product-info p { font-size: 0.75rem; }
    .category-tabs { gap: 8px; }
    .tab-btn { padding: 8px 15px; font-size: 0.75rem; }
    .btn-order { padding: 10px 15px; font-size: 0.7rem; }
}
