:root {
    --accent: #e89318;
    --accent-hover: #c47a10;
    --accent-light: #f0d6a8;
    --bg-body: #faf8f5;
    --bg-card: #fff;
    --bg-section: rgba(250, 248, 245, 0.92);
    --bg-section-solid: #fff;
    --text-primary: #2d2d2d;
    --text-secondary: #666;
    --text-muted: #777;
    --text-light: #aaa;
    --border: #eee;
    --shadow: rgba(0,0,0,0.06);
}

body.dark-mode {
    --bg-body: #1a1a1a;
    --bg-card: #2a2a2a;
    --bg-section: rgba(30, 30, 30, 0.95);
    --bg-section-solid: #222;
    --text-primary: #e8e8e8;
    --text-secondary: #aaa;
    --text-muted: #888;
    --text-light: #666;
    --border: #333;
    --shadow: rgba(0,0,0,0.2);
}

body.dark-mode .navbar { background: rgba(10, 10, 10, 0.98); }
body.dark-mode .info-card,
body.dark-mode .review-card,
body.dark-mode .location-card,
body.dark-mode .menu-category,
body.dark-mode .faq-item,
body.dark-mode .rating-platform { background: #2a2a2a; border-color: #333; }
body.dark-mode .gallery-item.img-placeholder,
body.dark-mode .paella-image.img-placeholder,
body.dark-mode .about-image.img-placeholder { background: #2a2a2a; border-color: #444; }
body.dark-mode .gallery-item img,
body.dark-mode .about-image img,
body.dark-mode .paella-image img { filter: brightness(0.9); }
body.dark-mode .mobile-menu { background: rgba(10,10,10,0.98); }
body.dark-mode .mobile-menu a { color: #e8e8e8; border-color: #333; }
body.dark-mode .footer { background: #0a0a0a; }
body.dark-mode .info-badge { background: #1a3a1a; color: #8bc8a0; }
body.dark-mode .hero-overlay { background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%); }
body.dark-mode .section-chip { background: #3a3020; color: #d4a050; }
body.dark-mode .review-footer { border-color: #333; }
body.dark-mode .cookie-consent { background: #222; border-color: #333; color: #e8e8e8; }

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background: var(--bg-body);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

.bg-layer {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('assets/fondopag1.png') center/cover no-repeat;
    z-index: -2;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 600; }

/* Scroll offset for fixed navbar */
section[id] { scroll-margin-top: 80px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-chip {
    display: inline-block;
    background: #f0e6d3;
    color: #8b6f47;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-title { font-size: 2.8rem; color: var(--text-primary); margin-bottom: 0.8rem; line-height: 1.2; }
.section-desc { color: var(--text-muted); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232,147,24,0.3);
}
.btn-alt { background: transparent; border: 2px solid rgba(255,255,255,0.6); }
.btn-alt:hover { background: rgba(255,255,255,0.1); border-color: #fff; box-shadow: none; }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center; height: 64px;
}
.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; font-weight: 600;
    color: var(--accent-light); text-decoration: none; letter-spacing: 0.5px;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-light); }
.nav-right { display: flex; align-items: center; gap: 0.8rem; }
.nav-phone { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-light); text-decoration: none; font-weight: 600; font-size: 0.9rem; white-space: nowrap; }

/* Theme Toggle */
.theme-toggle {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--accent-light); transition: all 0.3s;
}
.theme-toggle:hover { background: rgba(255,255,255,0.2); }
.theme-toggle .sun { display: none; }
body.dark-mode .theme-toggle .moon { display: none; }
body.dark-mode .theme-toggle .sun { display: block; }

/* Hamburger */
.hamburger {
    display: none;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    width: 38px; height: 38px;
    align-items: center; justify-content: center;
    cursor: pointer; color: var(--accent-light);
    transition: background 0.3s;
}
.hamburger:hover { background: rgba(255,255,255,0.2); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed; top: 64px; left: 0; width: 100%;
    background: rgba(26,26,26,0.98);
    z-index: 999;
    flex-direction: column;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
}
.mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: background 0.3s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.05); }

/* Hero */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: url('assets/platopollopatatas.JPG') center/cover no-repeat;
    padding: 100px 24px 60px;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 750px; }
.hero-badge { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.hero-rating {
    background: rgba(255,255,255,0.15); backdrop-filter: blur(5px);
    padding: 6px 16px; border-radius: 20px; color: #ffb347;
    font-weight: 700; font-size: 0.95rem; border: 1px solid rgba(255,255,255,0.1);
}
.hero-reviews, .hero-price {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(5px);
    padding: 6px 16px; border-radius: 20px;
    color: rgba(255,255,255,0.85); font-size: 0.85rem; font-weight: 500; border: 1px solid rgba(255,255,255,0.08);
}
.hero-content h1 { font-size: 4.2rem; color: #fff; margin-bottom: 0.3rem; letter-spacing: 1px; }
.hero-tagline { font-size: 1.2rem; color: var(--accent-light); font-weight: 500; margin-bottom: 1.2rem; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 600px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-info-bar { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.hero-info-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.hero-info-item svg { flex-shrink: 0; }

/* Info Cards */
.info-cards-section { padding: 60px 0; background: rgba(255,255,255,0.85); }
.info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.info-card {
    background: var(--bg-card); padding: 2rem; border-radius: 12px; text-align: center;
    box-shadow: 0 2px 15px var(--shadow); border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px var(--shadow); }
.info-card-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.info-card h3 { font-size: 1.1rem; color: var(--text-primary); margin-bottom: 0.5rem; }
.info-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }
.info-badge { display: inline-block; margin-top: 0.8rem; padding: 3px 12px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; transition: all 0.3s; }
.info-note { display: block; margin-top: 0.5rem; color: var(--text-light); font-size: 0.75rem; }
.info-card-link { display: inline-block; margin-top: 0.8rem; color: var(--accent); font-size: 0.8rem; text-decoration: none; font-weight: 600; }
.info-card-link:hover { text-decoration: underline; }

/* About Section */
.about-section { padding: 80px 0; background: var(--bg-section-solid); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image img,
.about-image.img-placeholder {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
}
.about-image.img-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: #f0ebe6; border: 2px dashed #ccc; color: #aaa; font-size: 0.9rem;
}
.about-content h2 { font-size: 2.4rem; color: var(--text-primary); margin-bottom: 1.5rem; line-height: 1.3; }
.about-content p { color: var(--text-secondary); margin-bottom: 1.2rem; font-size: 1.05rem; line-height: 1.7; }
.about-content .btn-primary { margin-top: 0.5rem; }

/* Gallery */
.gallery-section { padding: 80px 0; background: var(--bg-section); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item.img-placeholder { width: 100%; aspect-ratio: 4/3; border-radius: 12px; display: flex; align-items: center; justify-content: center; background: #f0ebe6; border: 2px dashed #ccc; color: #aaa; font-size: 0.85rem; box-shadow: 0 4px 15px var(--shadow); }

.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s;
}

.gallery-item img:hover { transform: scale(1.03); }

/* Menu Section */
.menu-section { padding: 80px 0; background: var(--bg-section); }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-category {
    background: var(--bg-card);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border);
    transition: background 0.3s;
}

.menu-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--accent);
    letter-spacing: 1px;
}

.menu-category ul {
    list-style: none;
    padding: 0;
}

.menu-category li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 4px 0;
    line-height: 1.5;
}

.menu-note {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
    font-style: italic;
}

.menu-postres { margin-top: 0.8rem !important; }

.menu-extras { grid-column: span 1; }

/* Paella Section */
.paella-section { padding: 80px 0; background: var(--bg-section-solid); }
.paella-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.paella-content h2 { font-size: 2.4rem; color: var(--text-primary); margin-bottom: 1.5rem; line-height: 1.3; }
.paella-content p { color: var(--text-secondary); margin-bottom: 1.2rem; font-size: 1.05rem; line-height: 1.7; }
.paella-content strong { color: var(--accent); }
.paella-image img,
.paella-image.img-placeholder {
    width: 100%;
    min-height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 40px var(--shadow);
}
.paella-image.img-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: #f0ebe6; border: 2px dashed #ccc; color: #aaa; font-size: 0.9rem;
}

/* Order Form */
.order-section { padding: 80px 0; background: var(--bg-section-solid); }
.order-form { max-width: 600px; margin: 0 auto; background: var(--bg-card); padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 4px 20px var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 8px;
    font-family: 'Inter', sans-serif; font-size: 0.95rem;
    color: var(--text-primary); background: var(--bg-body); transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.order-form .btn-primary { width: 100%; justify-content: center; margin-top: 0.5rem; }
body.dark-mode .form-group input, body.dark-mode .form-group select, body.dark-mode .form-group textarea { background: #222; border-color: #444; color: #e8e8e8; }

/* Reviews Section */
.reviews-section { padding: 80px 0; background: var(--bg-section-solid); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.review-card { background: var(--bg-card); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); display: flex; flex-direction: column; transition: background 0.3s; }
.review-platform { font-size: 0.75rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.review-stars { color: #ffa601; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-card p { color: var(--text-secondary); font-style: italic; font-size: 0.95rem; line-height: 1.6; flex-grow: 1; margin-bottom: 1rem; }
.review-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); }
.review-author { font-weight: 600; color: var(--text-primary); font-size: 0.9rem; }
.review-date { color: var(--text-light); font-size: 0.8rem; }
.reviews-more { text-align: center; margin-top: 2rem; }

/* FAQ Section */
.faq-section { padding: 80px 0; background: var(--bg-section); }
.faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.8rem; }
.faq-item { background: var(--bg-card); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; transition: background 0.3s; }
.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 1.5rem; background: none; border: none;
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
    color: var(--text-primary); cursor: pointer; text-align: left; transition: color 0.3s;
}
.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.2rem; }

/* Location Section */
.location-section { padding: 80px 0; background: var(--bg-section); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.location-map iframe { width: 100%; border-radius: 12px; box-shadow: 0 4px 20px var(--shadow); }
.location-card { display: flex; gap: 1rem; align-items: flex-start; padding: 1.2rem; background: var(--bg-card); border-radius: 10px; margin-bottom: 1rem; border: 1px solid var(--border); transition: box-shadow 0.3s, background 0.3s; }
.location-card:hover { box-shadow: 0 4px 15px var(--shadow); }
.location-card-icon { flex-shrink: 0; display: flex; align-items: center; margin-top: 2px; }
.location-card h3 { font-size: 1rem; color: var(--text-primary); margin-bottom: 0.3rem; }
.location-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.5; }
.location-card a { color: var(--accent); text-decoration: none; font-weight: 600; }
.location-card a:hover { text-decoration: underline; }
.location-direct-link { display: inline-block; margin-top: 0.3rem; color: var(--accent); font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.location-direct-link:hover { text-decoration: underline; }

/* Footer */
.footer { padding: 60px 0 0; background: #1a1a1a; color: #aaa; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand h3 { font-size: 1.5rem; color: var(--accent-light); margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 300px; margin-bottom: 1.2rem; }
.footer-social { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.footer-social a { color: #aaa; transition: color 0.3s; }
.footer-social a:hover { color: var(--accent-light); }
.social-placeholder { font-size: 0.75rem; color: #666; font-style: italic; }
.footer-contact h4, .footer-links h4 { font-size: 1rem; color: #fff; margin-bottom: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 6px; }
.footer-contact a { color: var(--accent-light); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; padding: 1.5rem 0; font-size: 0.85rem; color: #666; }

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #1a1a1a;
    z-index: 998;
    padding: 8px 12px;
    justify-content: space-around;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-cta-btn {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    text-decoration: none; font-size: 0.7rem; font-weight: 600; padding: 4px 8px;
    border-radius: 8px; transition: background 0.3s;
}
.mobile-cta-call { color: #4ade80; }
.mobile-cta-wa { color: #25d366; }
.mobile-cta-menu { color: var(--accent); }

/* Cookie Consent */
.cookie-consent {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #fff; color: #333;
    padding: 16px 24px;
    display: flex; align-items: center; justify-content: center; gap: 1.5rem;
    z-index: 9999;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    transform: translateY(100%);
    transition: transform 0.4s;
    flex-wrap: wrap;
}
.cookie-consent.show { transform: translateY(0); }
.cookie-consent p { font-size: 0.85rem; max-width: 500px; }
.cookie-consent a { color: var(--accent); }
.cookie-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
    padding: 8px 20px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
    border: none; cursor: pointer; transition: all 0.3s;
}
.cookie-btn-accept { background: var(--accent); color: #fff; }
.cookie-btn-accept:hover { background: var(--accent-hover); }
.cookie-btn-reject { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.cookie-btn-reject:hover { background: var(--bg-body); }

/* Share FAB */
.share-fab {
    position: fixed; bottom: 80px; right: 20px;
    width: 50px; height: 50px;
    background: var(--accent); color: #fff;
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(232,147,24,0.3);
    z-index: 999;
    transition: all 0.3s;
}
.share-fab:hover { background: var(--accent-hover); transform: scale(1.1); }

/* Scroll to top */
.scroll-top {
    position: fixed; bottom: 80px; right: 80px;
    width: 46px; height: 46px;
    background: var(--accent); color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(232,147,24,0.3);
    z-index: 999;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--accent-hover); transform: translateY(-3px); }

/* Toast */
.toast {
    position: fixed; bottom: 140px; left: 50%; transform: translateX(-50%) translateY(20px);
    background: #1a1a1a; color: #fff;
    padding: 12px 24px; border-radius: 8px;
    font-size: 0.9rem; font-weight: 500;
    opacity: 0; visibility: hidden;
    transition: all 0.4s;
    z-index: 9999;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 968px) {
    .info-cards { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .paella-grid, .location-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-image img,
    .about-image.img-placeholder { min-height: 250px; }
    .paella-image img,
    .paella-image.img-placeholder { min-height: 250px; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 450px; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .section-title { font-size: 2.2rem; }
    .hero-content h1 { font-size: 3rem; }
    .about-section, .gallery-section, .menu-section, .paella-section,
    .order-section, .reviews-section, .faq-section, .location-section { padding: 50px 0; }
    .info-cards-section { padding: 40px 0; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
    .nav-right { gap: 0.5rem; }
    .nav-phone span { display: none; }
    .menu-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero { min-height: 90vh; padding: 80px 16px 40px; }
    .hero-desc { font-size: 1rem; }
    .hero-badge { align-items: center; }
    .hero-info-bar { flex-direction: column; align-items: center; gap: 0.6rem; }
    .mobile-cta { display: flex; }
    body { padding-bottom: 64px; }
    .share-fab { bottom: 76px; right: 16px; width: 46px; height: 46px; }
    .scroll-top { bottom: 76px; right: 72px; }
    .gallery-grid { gap: 1rem; }
    .gallery-item.img-placeholder { aspect-ratio: 1; }
    .cookie-consent { flex-direction: column; text-align: center; gap: 0.8rem; padding: 12px 16px; }
}

@media (max-width: 500px) {
    .info-cards { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content h1 { font-size: 2rem; }
    .hero-tagline { font-size: 1rem; }
    .hero { min-height: 85vh; padding: 80px 12px 30px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; max-width: 260px; text-align: center; justify-content: center; }
    .hero-info-item { font-size: 0.8rem; }
    .section-title { font-size: 1.8rem; }
    .section-desc { font-size: 0.95rem; }
    .about-content h2, .paella-content h2 { font-size: 1.8rem; }
    .about-section, .gallery-section, .menu-section, .paella-section,
    .order-section, .reviews-section, .faq-section, .location-section { padding: 40px 0; }
    .info-cards-section { padding: 30px 0; }
    .review-card { padding: 1.5rem; }
    .faq-question { padding: 1rem 1.2rem; font-size: 0.9rem; }
    .faq-answer { font-size: 0.9rem; }
    .order-form { padding: 1.2rem; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .footer-main { gap: 1.5rem; }
    .footer { padding: 40px 0 0; }
    .gallery-item.img-placeholder { aspect-ratio: 1; }
    .menu-grid { grid-template-columns: 1fr; gap: 1rem; }
}
