
/* ---- START: Self-hosted Fonts ---- */

/* dancing-script-700 - latin */
@font-face {
  font-display: swap; /* Check for this */
  font-family: 'Dancing Script';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/dancing-script-v29-latin-700.woff2') format('woff2'); /* Modern Browsers */
}

/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check for this */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('/fonts/poppins-v24-latin-300.woff2') format('woff2'); /* Modern Browsers */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check for this */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2'); /* Modern Browsers */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check for this */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/poppins-v24-latin-500.woff2') format('woff2'); /* Modern Browsers */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check for this */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('/fonts/poppins-v24-latin-600.woff2') format('woff2'); /* Modern Browsers */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check for this */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2'); /* Modern Browsers */
}
/* poppins-700 - latin */

/* ---- END: Self-hosted Fonts ---- */


/* Your existing CSS rules start here... */
:root {
    --sky-blue: #4682B4;
    /* ...etc */
}

/* ... rest of your style.css ... */
:root {
    /* --- FIX: Changed --sky-blue to the darker shade for accessibility --- */
    --sky-blue: #4682B4;
    --dark-sky-blue: #4682B4;
    --red: #DC143C;
    --dark-red: #B22222;
    --black: #000000;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

* {
    box-sizing: border-box;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red);
    animation: pulse 2s infinite;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sky-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-links a:hover:before {
    width: 100%;
}

.nav-order-button a {
    background: var(--red);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.nav-order-button a:hover {
    background: var(--dark-red);
    color: var(--white);
}
.nav-order-button a:before {
    display: none;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

/* Mobile Floating Navigation */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    padding: 10px 0;
    display: none;
    z-index: 1001;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--sky-blue);
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 0;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
    text-decoration: none;
    color: var(--black);
    border-radius: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    flex: 1;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    background: var(--sky-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-nav-icon {
    font-size: 1.6rem;
    margin-bottom: 2px;
}

/* --- NEW --- SVG icons in mobile nav */
.mobile-nav-icon svg {
    height: 1.6rem;
    width: 1.6rem;
}


/* Hero Section */
.hero {
    color: var(--white);
    text-align: center;
    padding: 75px 0 50px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    height: 50vh;
    min-height: 300px;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background: #000; /* Fallback color */
}

/* --- NEW RULE: Styles the <picture> <img> tag --- */
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(70, 130, 180, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--white);
    transform: scale(1.2);
    border-color: var(--red);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 4;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow.prev {
    left: 30px;
}

.hero-arrow.next {
    right: 30px;
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.cta-button:hover:before {
    left: 100%;
}

/* Features Section (index.html) */
.features {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--sky-blue);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.1), transparent);
    transition: left 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--sky-blue);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
}

.feature-card:hover:before {
    left: 100%;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--red);
}

/* Why Us & About Section (index.html) */
.why-us, .about {
    padding: 80px 0;
    background: var(--white);
}

.why-us-content, .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.3);
}

.about-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--red);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.why-us-text h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.why-us-list {
    list-style: none;
    padding: 0;
}

.why-us-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.why-us-list li:hover {
    transform: translateX(10px);
    color: var(--red);
}

.why-us-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sky-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.why-us-image {
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(135, 206, 235, 0.3);
}

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.menu-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.menu-category:hover {
    transform: translateY(-5px);
    border-color: var(--sky-blue);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.2);
}

.menu-category h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: var(--red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.menu-item:hover {
    padding-left: 10px;
    background: rgba(135, 206, 235, 0.05);
    border-radius: 8px;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-weight: 600;
    color: var(--black);
}

.menu-item-price {
    color: var(--red);
    font-weight: bold;
    font-size: 1.1rem;
}

.view-more-btn {
    background: var(--sky-blue);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    font-size: 0.9rem;
}

.view-more-btn:hover {
    background: var(--dark-sky-blue);
    transform: translateY(-2px);
}

.menu-items-hidden {
    display: none;
}

.menu-items-expanded {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

/* Testimonials (index.html) */
.testimonials {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.testimonial:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.05), transparent);
    transition: left 0.6s;
}

.testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--red);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.1);
}

.testimonial:hover:before {
    left: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--black);
}

.testimonial-author {
    font-weight: bold;
    color: var(--red);
    font-family: 'Dancing Script', cursive;
    font-size: 1.2rem;
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

/* CTA Banner Section (index.html) */
.cta-banner {
    padding: 60px 20px;
    background: #2c3e50;
    color: white;
    text-align: center;
}

.cta-banner .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-banner p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section (index.html) */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: stretch;
}

.contact-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--red);
}

.contact-item {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item strong {
    display: inline;
    margin-bottom: 0;
    color: var(--black);
    font-weight: 600;
}

/* --- NEW --- Styles for SVG icons in contact list */
.contact-item svg {
    margin-right: 12px;
    color: var(--sky-blue);
    width: 20px;
    height: 1.2rem;
    text-align: center;
    padding-top: 5px;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.contact-item .fa-solid, .contact-item .fa-brands {
    margin-right: 12px;
    color: var(--sky-blue);
    width: 20px;
    text-align: center;
    font-size: 1.2rem;
    padding-top: 5px;
}
.contact-item a {
    color: #A11A1A; /* Darker, accessible red */
    text-decoration: underline;
    transition: color 0.3s;
}
.contact-item a:hover {
    color: var(--red);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    text-align: left;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--sky-blue);
}

.footer-section a {
    color: var(--sky-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* --- NEW --- Styles for SVG icons in footer */
.footer-section svg {
    height: 1.2rem;
    width: 1.2rem;
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    margin-top: 2rem;
    color: #ccc;
    text-align: center;
}

.footer-bottom p a {
    color: var(--sky-blue);
    text-decoration: underline;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--sky-blue);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    z-index: 10001;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    color: var(--red);
    font-family: 'Dancing Script', cursive;
    font-size: 1.4rem;
}

.cookie-text p {
    margin: 0;
    color: var(--black);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--sky-blue);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: var(--dark-sky-blue);
    transform: translateY(-2px);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.cookie-btn.decline:hover {
    background: var(--black);
    color: var(--white);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
}

.cookie-btn.settings:hover {
    background: var(--sky-blue);
    color: var(--white);
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10002;
    backdrop-filter: blur(5px);
}

.cookie-settings-modal {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-settings-overlay.show .cookie-settings-modal {
    transform: scale(1);
    opacity: 1;
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.cookie-settings-header h3 {
    margin: 0;
    color: var(--red);
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: var(--light-gray);
    color: var(--red);
}

.cookie-settings-content {
    padding: 20px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h4 {
    margin: 0;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-category p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Cookie Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ccc;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-slider {
    background: var(--sky-blue);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-slider.essential {
    background: var(--sky-blue);
    opacity: 0.7;
}

.cookie-slider.essential:before {
    transform: translateX(26px);
}

.cookie-settings-footer {
    padding: 20px;
    border-top: 2px solid var(--light-gray);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn.save {
    background: var(--sky-blue);
    color: var(--white);
}

.cookie-btn.save:hover {
    background: var(--dark-sky-blue);
}

.cookie-btn.cancel {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.cookie-btn.cancel:hover {
    background: var(--black);
    color: var(--white);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        padding: 15px;
    }
    
    .cookie-text {
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
        padding: 10px 12px;
    }
    
    .cookie-settings-modal {
        width: 95%;
        margin: 20px;
    }
    
    .cookie-settings-header {
        padding: 15px;
    }
    
    .cookie-settings-content {
        padding: 15px;
    }
    
    .cookie-settings-footer {
        padding: 15px;
        flex-direction: column;
    }
    
    .cookie-btn.save,
    .cookie-btn.cancel {
        width: 100%;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-text h4 {
        font-size: 1.2rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-btn {
        font-size: 0.8rem;
        padding: 8px 10px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Order Popup Styles */
.order-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.order-popup {
    background: var(--white);
    width: 100%;
    height: 100%;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.order-popup.show {
    transform: scale(1);
    opacity: 1;
}

.popup-header {
    background: var(--sky-blue);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.popup-header h3 {
    margin: 0;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 600;
}

.popup-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.popup-content {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.popup-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: var(--white);
}

.popup-footer {
    background: var(--light-gray);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid var(--sky-blue);
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 10px;
}

.popup-footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.popup-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    background: var(--white);
    border: 2px solid var(--sky-blue);
    transition: all 0.3s ease;
}

.popup-phone:hover {
    background: var(--sky-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.popup-backup-text {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 992px) {
     .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .popup-header {
        padding: 12px 15px;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
    
    .popup-close {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .popup-footer {
        padding: 12px 15px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .popup-footer-info {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .popup-phone {
        justify-content: center;
        padding: 12px 20px;
        font-size: 1.1rem;
    }
    
    .popup-backup-text {
        font-size: 0.8rem;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .popup-header {
        padding: 10px 12px;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .popup-footer {
        padding: 10px 12px;
    }
    
    .popup-phone {
        padding: 10px 15px;
        font-size: 1rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-radius: 0 0 15px 15px;
    }
    
    .nav-links.active {
        display: flex;
        animation: fadeInUp 0.3s ease-out;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero {
        height: auto;
        min-height: 250px;
        padding: 60px 20px 40px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-arrow {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .hero-arrow.prev {
        left: 15px;
    }
    
    .hero-arrow.next {
        right: 15px;
    }
    
    .hero-navigation {
        bottom: 20px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .features, .why-us, .menu, .testimonials, .contact, .about {
        padding: 60px 20px;
    }
    
    .cta-banner {
        padding: 60px 20px;
    }
    
    .why-us-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-us-image {
        order: -1;
    }

    .about-image {
        order: -1;
    }

    .about-text {
        text-align: center;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    body {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 15px 30px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features, .why-us, .menu, .testimonials, .contact, .about {
        padding: 50px 15px;
    }

    .cta-banner {
        padding: 50px 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .mobile-nav-item {
        padding: 10px 8px;
    }
    
    .mobile-nav-icon {
        font-size: 1rem;
    }
    
    /* --- NEW --- SVG icons in mobile nav (mobile) */
    .mobile-nav-icon svg {
        height: 1rem;
        width: 1rem;
    }
}