/* --- RESET & VARIABLES --- */
:root {
    --red: #D90429;
    --yellow: #FFC300;
    --black: #0d0d0d;
    --dark-gray: #1a1a1a;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--red);
}

.logo-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red);
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(217, 4, 41, 0.3);
}

.logo-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(217, 4, 41, 0.6);
}

.logo-text {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ccc;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--yellow);
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 8px 20px;
    background: var(--white);
    color: var(--black);
    font-weight: bold;
    border-radius: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

.nav-cta:hover {
    background: var(--yellow);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-link {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--yellow);
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 80px 20px;
    background-color: #050505;
    color: #666;
    font-size: 0.9rem;
}

.footer-logo {
    font-size: 3rem;
    color: white;
    font-family: 'Anton';
    margin-bottom: 20px;
    display: block;
}

.footer-tel {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-tel:hover {
    color: var(--red) !important;
    text-shadow: 0 0 10px rgba(217, 4, 41, 0.4);
}

/* --- COMMON PAGE HEADER (Menu & Contact) --- */
.page-header {
    height: 40vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 40px;
    margin-top: 70px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.page-header.menu-header {
    background-image: url('menu.webp');
}

.page-header.contact-header {
    height: 50vh;
    align-items: center;
    background-image: url('conta.webp');
}

.page-title {
    font-size: 5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    z-index: 2;
}

/* --- INDEX PAGE STYLES --- */
.hero {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    scale: 1.2;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 10vw;
    line-height: 0.9;
    margin-bottom: 20px;
    transform: translateY(50px);
    opacity: 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--yellow);
    opacity: 0;
    margin-bottom: 15px;
    display: block;
}

.hero-cta {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--red);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(20px);
    border: 2px solid var(--red);
}

.hero-cta:hover {
    background: transparent;
    color: var(--red);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.8), 0 0 40px rgba(217, 4, 41, 0.6);
}

.marquee-container {
    background: var(--red);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    transform: rotate(-1deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.marquee-content {
    display: inline-block;
}

.marquee-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 30px;
    color: white;
    text-transform: uppercase;
}

.about-section {
    padding: 120px 10%;
    background-color: var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--white);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 20px;
}

.about-highlight {
    color: var(--red);
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-img {
    width: 100%;
    height: 500px;
    background: url('unnamed (1).webp') center/cover no-repeat;
    border-radius: 5px;
    filter: grayscale(100%);
    transition: 0.5s;
}

.about-img:hover {
    filter: grayscale(0%);
}

.menu-preview {
    padding: 100px 5%;
    background: #111;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    color: white;
}

.section-header p {
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.menu-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.menu-card {
    background: #1a1a1a;
    border-bottom: 4px solid var(--red);
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-img-box {
    height: 250px;
    width: 100%;
    overflow: hidden;
}

.menu-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.menu-card:hover .menu-img-box img {
    transform: scale(1.1);
}

.menu-info {
    padding: 25px;
}

.menu-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-family: 'Oswald';
}

.menu-price {
    color: var(--yellow);
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.menu-desc {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.5;
}

.view-all-container {
    text-align: center;
    margin-top: 60px;
    width: 100%;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--red);
    color: var(--white);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: 0.3s;
}

.view-all-btn:hover {
    background: var(--red);
    color: white;
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.8), 0 0 40px rgba(217, 4, 41, 0.6);
}

.reviews-section {
    padding: 100px 0;
    background: var(--dark-gray);
    overflow: hidden;
}

.review-track-wrapper {
    width: 100%;
    overflow-x: hidden;
}

.review-track {
    display: flex;
    gap: 30px;
    padding-left: 5%;
    width: max-content;
}

.review-card {
    background: #222;
    padding: 40px;
    min-width: 350px;
    border-left: 4px solid var(--red);
}

.stars {
    color: var(--yellow);
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.5;
    font-style: italic;
    color: #ddd;
}

.reviewer-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: 'Oswald';
}

.reviewer {
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    color: var(--white);
}

.stats-section {
    padding: 80px 5%;
    background: linear-gradient(to right, #111, #0a0a0a);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item h3 {
    font-size: 4rem;
    color: var(--red);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-item p {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    color: #888;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Fixed Delivery Section - Changed Pink to Red/Charcoal */
.delivery-section {
    padding: 100px 20px;
    background: var(--dark-gray);
    border-top: 4px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0% 100%);
    margin-top: -2px;
    z-index: 5;
}

.delivery-content {
    max-width: 800px;
    color: white;
}

.delivery-content h2 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    color: var(--yellow);
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.panda-btn,
.call-btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
}

.panda-btn {
    background: var(--red);
    color: white;
    box-shadow: 0 10px 20px rgba(217, 4, 41, 0.2);
}

.call-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.panda-btn:hover,
.call-btn:hover {
    transform: scale(1.05);
}

.panda-btn:hover {
    box-shadow: 0 10px 25px rgba(217, 4, 41, 0.4);
}

/* --- MENU PAGE STYLES --- */
.section-title-center {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-title-center p {
    color: #ccc;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 3px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.section-title-center h2 {
    font-size: 4.5rem;
    color: var(--yellow);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 195, 0, 0.3);
}

.best-sellers {
    padding: 80px 5%;
    background: #111;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-card-tilt {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border-bottom: 4px solid var(--red);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.5rem;
    font-family: 'Oswald';
    margin-bottom: 5px;
}

.card-price {
    color: var(--yellow);
    font-family: 'Oswald';
    font-size: 1.2rem;
    display: block;
    margin-bottom: 10px;
}

.card-desc {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red);
    color: white;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.full-menu-section {
    padding: 80px 5%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-category {
    margin-bottom: 150px;
}

.text-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.text-cat-header h3 {
    font-size: 2.5rem;
    color: var(--white);
    white-space: nowrap;
}

.text-cat-line {
    width: 100%;
    height: 2px;
    background: #333;
}

.menu-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 83px;
    row-gap: 35px;
}

.text-item {
    display: flex;
    flex-direction: column;
}

.item-top-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
}

.item-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: white;
    padding-right: 10px;
    background: var(--black);
    position: relative;
    z-index: 2;
}

.item-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--yellow);
    position: relative;
    z-index: 2;
}

.dots {
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 2px dotted #333;
    z-index: 1;
}

.menu-note-box {
    text-align: center;
    border: 1px solid var(--yellow);
    padding: 20px;
    margin: 60px 0;
    background: rgba(255, 195, 0, 0.05);
}

.menu-note-text {
    color: var(--yellow);
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
}

.cta-banner {
    width: 100%;
    background: var(--red);
    padding: 80px 20px;
    text-align: center;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.cta-text {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1;
}

.cta-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.cta-btn {
    background: white;
    color: var(--red);
    padding: 15px 40px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    font-family: 'Oswald';
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: var(--black);
    color: white;
    transform: scale(1.05);
}

/* --- CONTACT PAGE STYLES --- */
.contact-section {
    padding: 80px 5%;
    background: var(--black);
}

.contact-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-card {
    background: #151515;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    border-top: 5px solid var(--red);
    transition: transform 0.3s;
    flex: 1 1 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    background: #1a1a1a;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--white);
}

.card-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--yellow);
    font-family: 'Oswald';
}

.card-text {
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 300px;
}

.card-btn {
    display: inline-block;
    padding: 15px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: auto;
}

.btn-order {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
    text-align: center;
}

.btn-order:hover {
    background: var(--yellow) !important;
    border-color: var(--yellow) !important;
    color: var(--black) !important;
    box-shadow: 0 4px 20px rgba(255, 195, 0, 0.5);
    transform: translateY(-2px);
}

.btn-review:hover {
    background: #4285F4;
    border-color: #4285F4;
}

.btn-insta:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.btn-tiktok:hover {
    background: #25F4EE;
    border-color: #25F4EE;
    color: #000;
}

/* --- LOCATION TOGGLE --- */
.location-toggle {
    text-align: center;
    margin: 60px 0;
    padding: 30px;
    background: linear-gradient(to right, rgba(217, 4, 41, 0.1), transparent);
    border-radius: 8px;
    position: relative;
}

.location-toggle h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--yellow);
}

.toggle-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.toggle-btn {
    padding: 12px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toggle-btn.active {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(217, 4, 41, 0.5);
    transform: scale(1.05);
}

.toggle-btn:hover {
    border-color: var(--red);
    transform: scale(1.05);
}

/* Phone Modal Styles */
.phone-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease-in;
}

.phone-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--red);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--white);
    margin: 0;
}

.close-modal {
    font-size: 2rem;
    cursor: pointer;
    color: var(--white);
    background: none;
    border: none;
    padding: 0;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--red);
}

.branch-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.branch-item {
    background: #111;
    padding: 20px;
    border-left: 4px solid var(--red);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.branch-item:hover {
    background: #1a1a1a;
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(217, 4, 41, 0.3);
}

.branch-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--yellow);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.phone-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    color: #ddd;
}

.phone-option i {
    color: var(--red);
    min-width: 20px;
}

.phone-option a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.phone-option a:hover {
    color: var(--yellow);
}

.map-section {
    display: flex;
    flex-wrap: wrap;
    background: #111;
    margin-top: 50px;
}

.map-info {
    flex: 1;
    padding: 80px 5%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-frame {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    filter: grayscale(100%) invert(92%) contrast(83%);
    transition: filter 0.5s ease;
}

.map-frame:hover {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

.info-row {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: 'Oswald';
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--white);
}

.info-content p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.5;
}

/* --- ADDRESS AUTOCOMPLETE & LOCATION --- */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #222;
    border: 1px solid #444;
    border-radius: 0 0 8px 8px;
    margin-top: -5px; 
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.autocomplete-list li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-size: 0.9rem;
    transition: 0.2s;
}

.autocomplete-list li:last-child {
    border-bottom: none;
}

.autocomplete-list li:hover {
    background: #333;
    color: var(--white);
}

.current-loc-btn {
    width: 100%;
    padding: 10px;
    background: #222;
    color: var(--yellow);
    border: 1px solid #444;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: 0.2s;
}

.current-loc-btn:hover {
    background: #333;
    border-color: var(--yellow);
    color: white;
}

.current-loc-btn:disabled {
    color: #555;
    border-color: #333;
    cursor: not-allowed;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-section {
        grid-template-columns: 1fr;
        padding: 80px 5%;
    }

    .about-img {
        height: 300px;
        order: -1;
    }

    .about-text h2 {
        font-size: 3rem;
    }
}

/* --- LOADER --- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 2;
}

.spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid transparent;
    border-top: 3px solid var(--red);
    border-right: 3px solid var(--yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- COMPLAINT FORM --- */
.complaint-form {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid var(--red);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: #0d0d0d;
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
}

.error-msg {
    color: var(--red);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* --- SWIPER CUSTOMIZATION --- */
.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--yellow);
    opacity: 1;
}

.review-track-wrapper {
    padding-bottom: 40px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 15vw;
    }

    .delivery-content h2 {
        font-size: 3rem;
    }

    .review-card {
        min-width: 300px;
    }

    .delivery-section {
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0% 100%);
    }

    .menu-flex-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-card {
        width: 100%;
        max-width: 100%;
    }

    .page-title {
        font-size: 3rem;
    }

    .menu-list-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title-center h2 {
        font-size: 2.5rem;
    }

    .cta-text {
        font-size: 2rem;
    }

    .map-section {
        flex-direction: column;
    }

    .contact-flex-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 100%;
        max-width: 100%;
    }

    .toggle-buttons {
        flex-direction: column;
    }

    .toggle-btn {
        width: 100%;
    }

    .modal-content {
        padding: 30px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* --- DEALS CARDS DESIGN --- */
.deals-cards-wrapper {
    max-width: 1600px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.deals-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.deal-card {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 30px 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 2px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 260px;
    max-width: 300px;
}

.deal-card:hover {
    transform: translateY(-10px);
    border-color: var(--red);
    box-shadow: 0 15px 40px rgba(217, 4, 41, 0.25);
}

.deal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-subtitle {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 25px;
    line-height: 1.4;
}

.deal-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--red);
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(217, 4, 41, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.deal-price-box {
    display: flex;
    align-items: flex-end;
    margin-bottom: 25px;
    color: white;
}

.deal-currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 5px;
    color: #ccc;
    line-height: 1.2;
}

.deal-price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--white);
    font-family: 'Anton', sans-serif;
    letter-spacing: 1px;
}

.deal-divider {
    height: 1px;
    background: #333;
    margin: 0 0 25px 0;
    width: 100%;
}

.deal-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.deal-features li {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #ddd;
    font-weight: 400;
}

.deal-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    margin-right: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 3px;
    flex-shrink: 0;
}

.deal-order-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: #fff;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
}

.deal-order-btn:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 195, 0, 0.4);
}

.deals-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.deals-section-header h3 {
    font-size: clamp(1.8rem, 7vw, 3.5rem);
    color: white;
    text-shadow: 0 4px 15px rgba(229, 9, 20, 0.5);
}

/* --- CART UI --- */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--red);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s;
    border: none;
}
.floating-cart-btn:hover {
    transform: scale(1.1);
    background: var(--yellow);
    color: var(--black);
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #111;
    z-index: 1001;
    box-shadow: -5px 0 30px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: white;
    font-family: 'Inter', sans-serif;
}
.cart-sidebar.open {
    right: 0;
}
.cart-header {
    padding: 20px;
    background: #1a1a1a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
}
.cart-header h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--yellow);
    margin: 0;
    letter-spacing: 1px;
}
.close-cart {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}
.close-cart:hover {
    color: var(--red);
}
.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cart-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #333;
}
.cart-item-info {
    flex-grow: 1;
}
.cart-item-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.95rem;
}
.cart-item-price {
    color: var(--yellow);
    font-weight: bold;
    font-size: 0.9rem;
}
.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #222;
    padding: 5px 10px;
    border-radius: 20px;
}
.qty-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.qty-btn:hover {
    color: var(--red);
}
.cart-footer {
    padding: 20px;
    background: #1a1a1a;
    border-top: 1px solid #333;
}
.cart-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}
.cart-input {
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    outline: none;
    resize: none;
}
.cart-input:focus {
    border-color: var(--yellow);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.cart-total-label {
    font-size: 1.2rem;
    font-weight: bold;
}
.cart-total-value {
    font-size: 1.5rem;
    font-family: 'Anton', sans-serif;
    color: var(--yellow);
    letter-spacing: 1px;
}
.delivery-note {
    font-size: 0.8rem;
    color: #888;
    text-align: center;
    margin-bottom: 15px;
}
.whatsapp-checkout-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.whatsapp-checkout-btn:hover {
    background: #1ebc5a;
}
.add-to-cart-btn {
    background: var(--red);
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-left: 10px;
    transition: transform 0.2s, background 0.2s;
}
.add-to-cart-btn:hover {
    transform: scale(1.1);
    background: var(--yellow);
    color: var(--black);
}
.item-price-wrapper {
    display: flex;
    align-items: center;
    background: var(--black);
    position: relative;
    z-index: 2;
    padding-left: 10px;
}
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}
.cart-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

/* --- MAP UI --- */
.pin-location-btn {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #222;
    color: white;
    border: 1px solid #444;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s, border-color 0.3s;
}

.pin-location-btn:hover {
    background: #333;
    border-color: var(--yellow);
}

.map-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.map-modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.map-modal-content {
    width: 90%;
    max-width: 500px;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.map-modal-header {
    padding: 15px 20px;
    background: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.map-modal-header h3 {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.close-map-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.close-map-btn:hover {
    color: var(--red);
}

#deliveryMap {
    width: 100%;
    height: 350px;
    background: #333;
}

.map-modal-footer {
    padding: 15px 20px;
    background: #222;
}

.confirm-location-btn {
    width: 100%;
    padding: 12px;
    background: var(--yellow);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.confirm-location-btn:hover {
    background: white;
}

/* --- CUSTOM ALERT UI --- */
.custom-alert-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.custom-alert-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.custom-alert-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 1px solid #333;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.custom-alert-overlay.show .custom-alert-box {
    transform: scale(1);
}

.custom-alert-icon {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 15px;
}

#customAlertTitle {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

#customAlertMessage {
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.custom-alert-btn {
    background: var(--red);
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-alert-btn:hover {
    background: #ff3333;
}

/* --- COMPLAINTS SECTION --- */
.complaints-section {
    background: #111;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #333;
}

.complaints-box {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #333;
}

.complaints-icon {
    font-size: 3rem;
    color: var(--red);
    margin-bottom: 15px;
}

.complaints-text h2 {
    color: white;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.complaints-text p {
    color: #aaa;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.complaint-btn {
    display: inline-block;
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 12px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, background 0.3s;
}

.complaint-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}


/* Fix background mismatch for item-price-wrapper inside menu-card */
.menu-card .item-price-wrapper {
    background: transparent;
    padding-left: 0;
}


/* --- TOAST NOTIFICATIONS --- */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: #111;
    color: white;
    border-left: 4px solid var(--yellow);
    padding: 15px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    color: var(--yellow);
    font-size: 1.2rem;
}


/* --- BACK TO TOP BUTTON --- */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--red);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: var(--yellow);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 195, 0, 0.4);
}

.text-highlight-red {
    color: var(--red);
    letter-spacing: 2px;
    font-weight: bold;
}

.text-red { color: var(--red); }

/* --- SEARCH & FILTER SECTION --- */
.search-filter-section {
    padding: 10px 5% 20px 5%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 70px; /* Offset for navbar */
    z-index: 99;
    background: var(--black);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.search-container input {
    width: 100%;
    padding: 15px 45px 15px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.1rem;
    outline: none;
    transition: 0.3s;
}

.search-container input:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.1);
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

/* Highlight matching text */
mark {
    background-color: var(--yellow);
    color: var(--black);
    border-radius: 3px;
    padding: 0 2px;
}

/* Success animation for cart button */
.add-to-cart-btn.success-anim {
    background: #28a745;
    color: white;
    transform: scale(1.1);
}

#menuSearch {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 30px;
    border: 2px solid #333;
    background: #1a1a1a;
    color: var(--white);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

#menuSearch:focus {
    border-color: var(--yellow);
    box-shadow: 0 4px 20px rgba(255, 195, 0, 0.2);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.2rem;
    transition: 0.3s ease;
}

#menuSearch:focus + .search-icon {
    color: var(--yellow);
}

.category-filters-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
}

.category-filters-container::-webkit-scrollbar {
    height: 6px;
}

.category-filters-container::-webkit-scrollbar-thumb {
    background: var(--red);
    border-radius: 10px;
}

.category-filters {
    display: flex;
    gap: 15px;
    width: max-content;
    margin: 0 auto;
}

.filter-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid #333;
    background: #111;
    color: #ccc;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(217, 4, 41, 0.4);
}
