/* ===================================
   BARIRA RESTAURANT - MAIN STYLES
   Author: Full Stack Developer
   Year: 2026
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-color: #e31837;
    --primary-dark: #b91329;
    --secondary-color: #2c2c2c;
    --accent-color: #ffc107;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* === RESET & BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

/* === HEADER & NAVIGATION === */
.header {
    background: var(--text-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: bold;
    line-height: 1;
}

.logo p {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 2px;
}

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

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.cart-icon {
    position: relative;
    font-size: 1.3rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--text-white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}


/* =============================================
   NEW HERO SLIDER — Barira Restaurant
   Full-screen slide with animated text,
   food chip strip, scroll cue & smooth transitions
   ============================================= */

/* Google Font already loaded via <link> in HTML */
.hero-slider,
.hero-slider * { font-family: 'Poppins', 'Segoe UI', sans-serif; }

/* ---- Container ---- */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-dark, #b91329) 0%, #6b0716 100%);
}

/* ---- Slides wrapper ---- */
.slides-wrapper { position: relative; width: 100%; height: 100%; }

/* ---- Single Slide ---- */
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s ease, transform 0.85s ease, visibility 0.85s;
    transform: scale(1.04);
}
.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}
.slide.exit-left  { opacity: 0; transform: translateX(-4%) scale(1); z-index: 1; }
.slide.exit-right { opacity: 0; transform: translateX(4%)  scale(1); z-index: 1; }

/* ---- Background Image ---- */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 8s ease;
    will-change: transform;
}
.slide.active .slide-bg { transform: scale(1); }

/* ---- Dark overlay (gradient) — theme-tinted ---- */
.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(185, 19, 41, 0.80) 0%,
        rgba(227, 24, 55, 0.45) 45%,
        rgba(0,0,0,0.22) 100%
    );
    z-index: 1;
}

/* ---- Slide content ---- */
.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 620px;
    padding: 0 20px;
}

/* Animated entrance for active slide children */
.slide.active .slide-badge,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-price,
.slide.active .slide-actions {
    animation: slideUp 0.7s ease both;
}
.slide.active .slide-badge   { animation-delay: 0.1s; }
.slide.active .slide-title   { animation-delay: 0.25s; }
.slide.active .slide-desc    { animation-delay: 0.4s; }
.slide.active .slide-price   { animation-delay: 0.55s; }
.slide.active .slide-actions { animation-delay: 0.7s; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---- Badge ---- */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 24, 55, 0.9);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

/* ---- Title ---- */
.slide-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.slide-title .highlight {
    color: #ffc107;
    display: inline-block;
}

/* ---- Description ---- */
.slide-desc {
    font-size: clamp(0.92rem, 1.4vw, 1.05rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 520px;
}

/* ---- Price tag ---- */
.slide-price {
    display: inline-block;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}
.slide-price strong {
    color: #ffc107;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ---- CTA Buttons ---- */
.slide-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.03em;
    white-space: nowrap;
}
.hero-btn--primary {
    background: var(--primary-color, #e31837);
    color: #fff;
    border: 2px solid var(--primary-color, #e31837);
    box-shadow: 0 6px 24px rgba(227,24,55,0.45);
}
.hero-btn--primary:hover {
    background: var(--primary-dark, #b91329);
    border-color: var(--primary-dark, #b91329);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(227,24,55,0.55);
}
.hero-btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
}
.hero-btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

/* ---- Navigation Arrows ---- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.slider-arrow:hover {
    background: var(--primary-color, #e31837);
    border-color: var(--primary-color, #e31837);
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow--prev { left: 28px; }
.slider-arrow--next { right: 28px; }

/* ---- Slide Dots ---- */
.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 8%;
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}
.dot.active {
    background: var(--primary-color, #e31837);
    border-color: var(--primary-color, #e31837);
    width: 28px;
    border-radius: 5px;
}

/* ---- Food Chip Strip ---- */
.hero-food-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    z-index: 10;
    overflow: hidden;
}
.food-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: background 0.3s ease;
    flex: 1;
    justify-content: center;
    min-width: 0;
}
.food-chip:last-child { border-right: none; }
.food-chip:hover { background: rgba(227,24,55,0.18); }

.food-chip img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(227,24,55,0.6);
    flex-shrink: 0;
}
.food-chip span {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}

/* ---- Scroll Cue ---- */
.scroll-cue {
    position: absolute;
    right: 36px;
    bottom: 80px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.55;
    transition: opacity 0.3s;
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue span {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
.scroll-cue-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    50.1%{ transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- Navbar transparent over hero ---- */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
}
.header.scrolled .nav-menu a { color: var(--text-dark); }
.header.scrolled .logo h1    { color: var(--primary-color); }
.header.scrolled .logo p     { color: var(--text-light); }

/* Transparent state — white text */
.header:not(.scrolled) .nav-menu a       { color: rgba(255,255,255,0.9); }
.header:not(.scrolled) .nav-menu a:hover,
.header:not(.scrolled) .nav-menu a.active { color: #ffc107; }
.header:not(.scrolled) .logo h1           { color: #fff; }
.header:not(.scrolled) .logo p            { color: rgba(255,255,255,0.7); }
.header:not(.scrolled) .mobile-menu-toggle span { background: #fff; }

/* When scrolled: full nav colour */
.header.scrolled .nav-menu a::after { background: var(--primary-color); }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
    .slide-content {
        left: 5%;
        max-width: 90%;
    }
    .slider-arrow--prev { left: 14px; }
    .slider-arrow--next { right: 14px; }
    .scroll-cue { display: none; }
    .food-chip span { display: none; }
    .food-chip { padding: 12px 16px; }
}

@media (max-width: 768px) {
    .hero-slider { min-height: 100svh; height: 100svh; }
    .slide-content { left: 0; padding: 0 24px; max-width: 100%; }
    .slide-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
    .hero-btn { padding: 12px 22px; font-size: 0.88rem; }
    .slider-dots { bottom: 78px; left: 24px; }
    .slider-arrow { width: 40px; height: 40px; font-size: 1rem; }
    .food-chip img { width: 34px; height: 34px; }
}

@media (max-width: 480px) {
    .food-chip { padding: 10px 10px; gap: 6px; }
    .food-chip img { width: 30px; height: 30px; }
    .slide-actions { flex-direction: column; align-items: flex-start; }
    .hero-btn { width: 100%; justify-content: center; }
}
/* === FEATURES SECTION === */
.features {
    padding: 80px 0;
    background: var(--text-white);
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--bg-light);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* === POPULAR ITEMS SECTION === */
.popular-items {
    padding: 80px 0;
    background: var(--bg-light);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.item-card {
    background: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.item-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.item-content {
    padding: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 10px;
}

.item-content h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.item-badge {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
}

.item-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.item-price-section {
    margin-bottom: 15px;
}

.item-sizes {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.size-option {
    flex: 1;
    padding: 8px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.size-option:hover,
.size-option.active {
    border-color: var(--primary-color);
    background: rgba(227, 24, 55, 0.1);
}

.size-label {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

.size-price {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 1rem;
}

.item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.item-footer {
    display: flex;
    gap: 10px;
}

.add-to-cart-btn {
    flex: 1;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

/* === WHY CHOOSE US === */
.why-choose {
    padding: 80px 0;
    background: var(--text-white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.why-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.why-choose-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 8rem;
    opacity: 0.9;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--text-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

/* === FOOTER === */
.footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--border-radius);
}

.newsletter-form button {
    padding: 10px 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* === SHOPPING CART SIDEBAR === */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100vh;
    background: var(--text-white);
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 2000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin: 0;
}

.close-cart {
    font-size: 2rem;
    color: var(--text-white);
    cursor: pointer;
    background: none;
    border: none;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-size {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 25px;
    height: 25px;
    background: var(--bg-light);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.remove-item {
    margin-left: auto;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-footer {
    padding: 20px;
    border-top: 2px solid var(--border-color);
    background: var(--bg-light);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.cart-overlay.active {
    display: block;
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 80px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* === MENU PAGE === */
.menu-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.menu-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--text-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.menu-search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 50px;
}

.menu-search input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 1rem;
    transition: var(--transition);
}

.menu-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.menu-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.menu-category {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.category-header i {
    margin-right: 10px;
    color: var(--primary-color);
}

.category-header p {
    color: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* === ABOUT PAGE === */
.about-story {
    padding: 80px 0;
    background: var(--text-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.about-img {
    height: 500px;
}

.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.mv-card {
    background: var(--text-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.what-we-offer {
    padding: 80px 0;
    background: var(--text-white);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.offer-item {
    text-align: center;
    padding: 30px 20px;
}

.offer-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.offer-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.offer-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--text-white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.member-desc {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === CONTACT PAGE === */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--text-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

.method-details h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.method-details p {
    color: var(--text-light);
    margin-bottom: 3px;
}

.method-details a {
    color: var(--primary-color);
    font-weight: 500;
}

.method-details a:hover {
    text-decoration: underline;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.social-connect {
    padding: 30px;
    background: var(--text-white);
    border-radius: var(--border-radius);
}

.social-connect h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn.facebook {
    background: #1877f2;
    color: var(--text-white);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--text-white);
}

.social-btn.whatsapp {
    background: #25d366;
    color: var(--text-white);
}

.social-btn.twitter {
    background: #1da1f2;
    color: var(--text-white);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--text-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: var(--border-radius);
    color: #155724;
    margin-top: 20px;
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.quick-order-section {
    padding: 80px 0;
    background: var(--text-white);
}

.quick-order-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.quick-order-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quick-order-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

.or-divider {
    margin: 25px 0;
    color: var(--text-light);
    font-weight: 500;
}

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 5rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.faq-section {
    padding: 80px 0;
    background: var(--text-white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(227, 24, 55, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* === RESPONSIVE STYLES === */

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .why-choose-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .why-choose-image,
    .about-image {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 400px;
        border-top: 2px solid var(--primary-color);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
    }

    /* ── Fix: force dark text when mobile dropdown is open,
       regardless of whether header is transparent or scrolled ── */
    .header:not(.scrolled) .nav-menu.active a,
    .header.scrolled       .nav-menu.active a {
        color: var(--text-dark) !important;
    }
    .header:not(.scrolled) .nav-menu.active a:hover,
    .header:not(.scrolled) .nav-menu.active a.active,
    .header.scrolled       .nav-menu.active a:hover,
    .header.scrolled       .nav-menu.active a.active {
        color: var(--primary-color) !important;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .features-grid,
    .items-grid,
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.active {
        right: 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .item-content h3 {
        font-size: 1.1rem;
    }
    
    .why-choose-text h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cart-sidebar,
    .cart-overlay,
    .mobile-menu-toggle,
    .btn,
    .hero-buttons,
    .cta-section,
    .social-links {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .page-header {
        background: none;
        color: black;
    }
}
