/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Montserrat:ital,wght@0,400;0,700;0,900;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg: #050506;
    --panel: #0B0B10;
    --text: #FFFFFF;
    --muted: #C7C7C7;
    --accent: #D92985;
    --accent-hover: #b81f6c;
    --accent2: #FF4FB3;
    --line: rgba(217, 41, 133, 0.35);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --bg-overlay: rgba(5, 5, 6, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(217, 41, 133, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(217, 41, 133, 0.06) 0%, transparent 40%);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    width: 100%;
}

a {
    color: var(--accent2);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-shadow: 0 0 10px var(--accent);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 1rem;
}

h1.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(217, 41, 133, 0.5);
    margin-bottom: 0.5rem;
}

h2.section-title {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 8px rgba(255, 79, 179, 0.3);
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 4px;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}

.text-accent {
    color: var(--accent2);
    text-shadow: 0 0 15px rgba(255, 79, 179, 0.6);
}

.text-muted {
    color: var(--muted);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.w-100 {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px rgba(217, 41, 133, 0.5);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 25px rgba(255, 79, 179, 0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--accent2);
    border: 2px solid var(--accent);
    box-shadow: inset 0 0 10px rgba(217, 41, 133, 0.2), 0 0 10px rgba(217, 41, 133, 0.2);
}

.btn-outline:hover {
    background: rgba(217, 41, 133, 0.1);
    box-shadow: inset 0 0 20px rgba(217, 41, 133, 0.4), 0 0 20px rgba(217, 41, 133, 0.4);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-xs {
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
}

.neon-click:active {
    transform: scale(0.96) !important;
    box-shadow: 0 0 5px var(--accent) !important;
}

/* Header & Drawer */
header {
    background: rgba(11, 11, 16, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #fff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.location-chip {
    background: rgba(217, 41, 133, 0.1);
    border: 1px solid var(--accent);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 0 12px rgba(217, 41, 133, 0.2);
    color: #fff;
}

.change-loc-btn {
    background: none;
    border: none;
    color: var(--muted);
    text-decoration: underline;
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: color 0.3s;
}

.change-loc-btn:hover {
    color: var(--accent2);
}

#menu-toggle {
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s;
}

#menu-toggle:hover {
    color: var(--accent2);
    text-shadow: 0 0 12px var(--accent);
    transform: scale(1.1);
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 6, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: var(--panel);
    border-left: 1px solid var(--accent);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8), -5px 0 15px rgba(217, 41, 133, 0.2);
    z-index: 1002;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.nav-drawer.open {
    right: 0;
}

.drawer-links {
    list-style: none;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.drawer-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff;
}

.drawer-links a:focus {
    outline: 2px solid var(--accent2);
    outline-offset: 4px;
}

.drawer-links a:hover {
    color: var(--accent2);
    border-bottom-color: var(--line);
    padding-left: 10px;
    background: linear-gradient(90deg, rgba(217, 41, 133, 0.1) 0%, transparent 100%);
}

/* Landing / Index */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1rem;
    background: url('../assets/img/background.png') center/cover no-repeat;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 6, 0.3) 0%, var(--bg) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.hero-logo {
    width: 180px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(217, 41, 133, 0.8));
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background: linear-gradient(145deg, var(--panel) 0%, #050506 100%);
    border: 1px solid var(--line);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex: 1 1 280px;
    max-width: 320px;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 160, 210, 0.1), transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.location-card:hover {
    border-color: var(--accent2);
    box-shadow: 0 10px 40px rgba(217, 41, 133, 0.4);
    transform: translateY(-8px);
}

.location-card:hover::before {
    left: 150%;
}

.location-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(217, 41, 133, 0.6);
    transition: transform 0.3s;
}

.location-card:hover i {
    transform: scale(1.1);
}

.location-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.promo-banner {
    background: var(--accent);
    color: #fff;
    padding: env(safe-area-inset-top, 0.8rem) 1rem 0.8rem 1rem;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 3px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(217, 41, 133, 0.6);
    position: relative;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    min-height: 40px;
}



.banner-track {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    will-change: transform;
    min-width: 100%;
}

.banner-track span {
    margin: 0 3rem;
    font-weight: 700;
}

@keyframes marquee {
    0% {
        transform: translate3d(100vw, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Main Content Wrapper */
main {
    flex: 1;
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Menu Page */
.menu-header {
    text-align: center;
    margin-bottom: 4rem;
}

.chips-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.chip {
    background: rgba(217, 41, 133, 0.08);
    border: 1px solid var(--line);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.chip:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(217, 41, 133, 0.4);
    transform: translateY(-2px);
}

.chip i {
    color: var(--accent2);
    margin-right: 8px;
    font-size: 1.1rem;
}

.accordion-section {
    margin-bottom: 1.5rem;
    background: var(--panel);
    border: 1px solid rgba(217, 41, 133, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.accordion-header {
    width: 100%;
    padding: 1.8rem;
    background: rgba(5, 5, 6, 0.3);
    border: none;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(217, 41, 133, 0.05);
}

.accordion-header i {
    margin-right: 12px;
}

.accordion-header .count {
    color: var(--muted);
    font-size: 1rem;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-header .fa-chevron-down {
    transition: transform 0.4s ease;
    color: var(--accent2);
    font-size: 1.2rem;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    background: var(--panel);
}

.accordion-content.open {
    max-height: 3000px;
    border-top: 1px solid var(--line);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.menu-card {
    background: #0d0d14;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.menu-card:hover {
    border-color: var(--line);
    box-shadow: 0 8px 25px rgba(217, 41, 133, 0.25);
    transform: translateY(-5px);
}

.menu-card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid rgba(217, 41, 133, 0.3);
    position: relative;
}

.menu-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, #0d0d14, transparent);
}

.menu-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.menu-card-body h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.8rem;
}

.menu-card-body p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent2);
    font-weight: 900;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 6, 0.95);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1rem;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--panel);
    border: 1px solid var(--accent);
    border-radius: 12px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 40px rgba(217, 41, 133, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-overlay.open .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--line);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.modal-close:hover {
    background: var(--accent);
    color: #fff;
    transform: rotate(90deg);
}

.modal-img {
    height: 280px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: 2px solid var(--accent);
}

.modal-body {
    padding: 2.5rem;
    text-align: center;
}

.modal-title {
    font-size: 1.8rem;
}

.modal-desc {
    color: var(--muted);
    margin: 1.2rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1.8rem;
    display: block;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* FoodTruck / Reservas / Generics */
.card-panel {
    background: linear-gradient(135deg, var(--panel) 0%, #08080C 100%);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    position: relative;
}

.card-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.poster-banner {
    background: linear-gradient(135deg, var(--accent) 0%, #4a0024 100%);
    padding: 3rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
    margin: -3rem -3rem 3rem -3rem;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.8rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #eee;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(217, 41, 133, 0.3);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-body);
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent2);
    box-shadow: 0 0 15px rgba(217, 41, 133, 0.4);
    background: rgba(0, 0, 0, 0.6);
}

input[type="date"],
input[type="time"] {
    min-height: 50px;
    color: #fff;
}

.form-control option {
    background: var(--panel);
    color: #fff;
}

.toast-success {
    background: rgba(217, 41, 133, 0.05);
    border: 1px solid var(--accent);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(217, 41, 133, 0.2);
}

.toast-success i {
    font-size: 3.5rem;
    color: var(--accent2);
    margin-bottom: 1.5rem;
}

@keyframes shine {
    0% {
        text-shadow: 0 0 10px var(--accent);
    }

    50% {
        text-shadow: 0 0 30px var(--accent2), 0 0 10px #fff;
    }

    100% {
        text-shadow: 0 0 10px var(--accent);
    }
}

.shine-anim {
    animation: shine 2s infinite;
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid rgba(217, 41, 133, 0.2);
    padding: 1.2rem 0;
}

.faq-item summary {
    font-family: var(--font-heading);
    cursor: pointer;
    color: var(--text);
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.faq-item summary:hover {
    color: var(--accent2);
}

.faq-item summary::marker {
    content: '';
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item details[open] summary::before {
    transform: rotate(90deg);
}

.faq-item p {
    margin-top: 1rem;
    padding-left: 1.5rem;
    color: var(--muted);
    line-height: 1.6;
}

/* Promotions Page */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.promo-card {
    background: linear-gradient(135deg, var(--panel) 0%, #08080C 100%);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.promo-card:hover {
    border-color: var(--accent2);
    box-shadow: 0 10px 40px rgba(217, 41, 133, 0.3);
    transform: translateY(-5px);
}

.promo-card-header {
    background: rgba(217, 41, 133, 0.08);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.promo-card-title {
    font-size: 1.3rem;
    color: #fff;
    margin: 0;
    letter-spacing: 1px;
    word-break: break-word;
    overflow-wrap: break-word;
}

.promo-day-badge {
    background: var(--accent);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(217, 41, 133, 0.5);
    white-space: nowrap;
    flex-shrink: 0;
}

.promo-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.promo-availability i {
    color: var(--accent2);
    flex-shrink: 0;
}

.promo-description {
    color: var(--muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.promo-supplements {
    background: rgba(217, 41, 133, 0.05);
    border: 1px solid rgba(217, 41, 133, 0.2);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
}

.promo-supplements h4,
.promo-conditions h4 {
    font-size: 0.8rem;
    color: var(--muted);
    letter-spacing: 1.5px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promo-supplements h4 i {
    color: var(--accent2);
}

.promo-supplements ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.promo-supplements ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.promo-supplements ul li:last-child {
    border-bottom: none;
}

.promo-supplement-price {
    color: var(--accent2);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
}

.promo-conditions {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-conditions h4 i {
    color: var(--accent);
}

.promo-conditions ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.promo-conditions ul li {
    color: var(--muted);
    font-size: 0.85rem;
    padding: 0.2rem 0 0.2rem 1.1rem;
    position: relative;
    line-height: 1.5;
}

.promo-conditions ul li::before {
    content: '-';
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0.2rem;
}

@media (max-width: 768px) {
    .promos-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .promo-card-header {
        padding: 1rem 1.2rem;
    }

    .promo-card-title {
        font-size: 1.1rem;
        letter-spacing: 0.5px;
    }

    .promo-card-body {
        padding: 1.2rem;
    }

    .promo-description {
        font-size: 0.9rem;
    }

    .promo-availability {
        font-size: 0.85rem;
    }
}

/* Footer */
footer {
    background: #000;
    border-top: 2px solid var(--line);
    padding: 3rem 1.5rem;
    text-align: center;
    margin-top: auto;
}

.social-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    font-size: 1.5rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--panel);
    transition: all 0.3s;
}

.social-links a:hover {
    color: #fff;
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
    transform: translateY(-3px);
}

/* Utils */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-section {
        justify-content: flex-start;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    h1.hero-title {
        font-size: 2.8rem;
    }

    .header-container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .menu-grid {
        padding: 0.5rem;
        gap: 0.5rem;
        grid-template-columns: 1fr 1fr;
    }

    .menu-card-img {
        height: 140px;
    }

    .menu-card-body {
        padding: 0.8rem;
    }

    .menu-card-body h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .menu-card-body p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .menu-card-footer {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .price {
        font-size: 1.1rem;
    }

    .btn-sm {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .header-actions .location-chip {
        padding: 0;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        justify-content: center;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .header-actions .location-chip span {
        display: none;
    }

    .header-actions .location-chip>i.fa-store {
        display: none;
    }

    .change-loc-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin: 0;
        padding: 0;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(217, 41, 133, 0.1);
        border: 1px solid var(--accent);
        color: #fff;
        box-shadow: 0 0 12px rgba(217, 41, 133, 0.2);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-panel {
        padding: 2rem 1.5rem;
    }

    .poster-banner {
        padding: 2rem 1rem;
        margin: -2rem -1.5rem 2rem -1.5rem;
    }

    .accordion-header {
        padding: 1.2rem;
        font-size: 1.1rem;
    }
}
/* Mobile Background Opacity Adjustments */
@media (max-width: 768px) {
    .body-bg-dark {
        background: linear-gradient(rgba(5, 5, 6, 0.3), rgba(5, 5, 6, 0.3)), url('../assets/img/fondo-index.png') center/cover no-repeat fixed !important;
    }

    .hero-section::before {
        background-color: rgba(5, 5, 6, 0.3) !important;
    }
}

/* Centralized Background Class */
.body-bg-dark {
    background: linear-gradient(var(--bg-overlay), var(--bg-overlay)), url('../assets/img/fondo-index.png') center/cover no-repeat fixed;
    background-color: var(--bg);
}
