/* ==========================================================================
   TATLIDİL ETLİEKMEK (1959) - MASTER STYLE SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #b31917;
    --primary-dark: #8c100f;
    --primary-light: #fef2f2;
    --primary-gradient: linear-gradient(135deg, #b31917 0%, #d32f2f 100%);
    --gold: #d4af37;
    --gold-light: #fdf6e7;
    --gold-dark: #b89324;
    --dark: #141416;
    --dark-surface: #1e1f24;
    --dark-card: #25272e;
    --body-bg: #faf7f2;
    --card-bg: #ffffff;
    --text-dark: #1f2937;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #ede8df;
    --border-dark: #2e3039;
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
    --shadow-red: 0 8px 25px rgba(179, 25, 23, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

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

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.top-bar {
    background-color: #0f1012;
    color: #e2e8f0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-branches {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar-branch-link {
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.top-bar-branch-link:hover {
    color: var(--gold);
}

.top-bar-branch-link svg {
    color: var(--primary);
    width: 14px;
    height: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-weight: 600;
}

.top-phone-link:hover {
    color: var(--gold);
}

.top-socials {
    display: flex;
    gap: 12px;
}

.top-social-icon {
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    transition: var(--transition);
}

.top-social-icon:hover {
    color: #fff;
    background: var(--primary);
    transform: translateY(-2px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.brand-logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo img {
    height: 60px;
    max-height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo:hover img {
    transform: scale(1.02);
}

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

.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 24px;
    color: var(--primary);
    letter-spacing: 0.5px;
    line-height: 1;
}

.brand-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
}

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

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(179, 25, 23, 0.4);
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    box-shadow: -5px 0 30px rgba(0,0,0,0.15);
    transition: var(--transition);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav.open {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-nav-link {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 0;
    display: block;
}

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

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 580px;
    background: linear-gradient(135deg, rgba(15, 16, 20, 0.92) 0%, rgba(35, 10, 10, 0.88) 100%), url('../../menu/etliekmek.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, var(--body-bg), transparent);
}

.hero-content {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: #fef08a;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 54px);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title span {
    color: #f87171;
    font-style: italic;
}

.hero-desc {
    font-size: 17px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 35px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-item h4 {
    font-size: 28px;
    color: var(--gold);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.hero-stat-item p {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
.section {
    padding: 85px 0;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(26px, 4vw, 38px);
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

/* ==========================================================================
   MENU SHOWCASE & CARDS
   ========================================================================== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.menu-tab-btn {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.menu-tab-btn:hover, .menu-tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-red);
}

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

.menu-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(179, 25, 23, 0.2);
}

.menu-card-image-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #f1f5f9;
}

.menu-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-image-wrap img {
    transform: scale(1.08);
}

.menu-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.menu-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.menu-card-title {
    font-size: 20px;
    color: var(--text-dark);
}

.menu-card-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.menu-card-portion {
    display: inline-block;
    font-size: 12px;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 12px;
}

.menu-card-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu-card-footer {
    display: flex;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.menu-card-footer .btn {
    flex: 1;
}

/* ==========================================================================
   ABOUT / STORY SECTION
   ========================================================================== */
.about-section {
    background: #fff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
}

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-red);
    text-align: center;
    max-width: 170px;
}

.about-experience-badge .years {
    font-size: 38px;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    display: block;
    color: var(--gold);
}

.about-experience-badge .text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
    display: block;
}

.about-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature-box {
    background: var(--body-bg);
    padding: 18px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
}

.about-feature-box h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-feature-box p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================================================
   BRANCHES SECTION
   ========================================================================== */
.branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.branch-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.branch-card-header {
    position: relative;
    height: 180px;
    background: #232530;
    overflow: hidden;
}

.branch-card-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.branch-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.branch-card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.branch-name {
    font-size: 20px;
    margin-bottom: 12px;
}

.branch-info-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}

.branch-info-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.branch-actions .btn {
    flex: 1;
    font-size: 13px;
    padding: 10px 14px;
}

/* ==========================================================================
   REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    background: #14151a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.reviews-section .section-title {
    color: #fff;
}

.reviews-section .section-desc {
    color: #94a3b8;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.review-card {
    background: #1e2029;
    border: 1px solid #2d303e;
    border-radius: var(--radius-md);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.review-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.review-comment {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #2a2d3a;
    padding-top: 14px;
}

.review-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.review-author-info h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.review-author-info span {
    font-size: 12px;
    color: #94a3b8;
}

/* ==========================================================================
   ORDER CTA BANNER
   ========================================================================== */
.order-cta-banner {
    background: var(--primary-gradient);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    box-shadow: var(--shadow-red);
}

.order-cta-text h3 {
    color: #fff;
    font-size: clamp(24px, 3.5vw, 34px);
    margin-bottom: 10px;
}

.order-cta-text p {
    font-size: 16px;
    color: #ffe4e6;
}

.order-cta-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: #0d0e11;
    color: #94a3b8;
    padding: 70px 0 25px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col h5 {
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON & BASKET
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulseWhatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
    background: #20ba5a;
    transform: scale(1.05);
    color: #fff;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   ORDER CART DRAWER (WHATSAPP SİPARİŞ SEPETİ)
   ========================================================================== */
.cart-trigger-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1500;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-red);
    display: none;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.cart-badge {
    background: #fff;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: var(--radius-full);
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -100%;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 2100;
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 25px;
}

.cart-modal.open {
    right: 0;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.cart-modal-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: var(--body-bg);
    border-radius: var(--radius-sm);
}

.cart-item-title {
    font-weight: 700;
    font-size: 14px;
}

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

.cart-item-btn {
    width: 26px;
    height: 26px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* ==========================================================================
   PAGE HERO (SUB PAGES)
   ========================================================================== */
.page-hero {
    background: linear-gradient(135deg, rgba(20, 21, 26, 0.95) 0%, rgba(45, 12, 12, 0.92) 100%), url('../../menu/etliekmek.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px 0 50px 0;
    text-align: center;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #cbd5e1;
}

.breadcrumb a {
    color: #f87171;
}

.breadcrumb span {
    color: #64748b;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .top-bar-branches {
        display: none;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .order-cta-banner {
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
    }
    .order-cta-actions {
        width: 100%;
        justify-content: center;
    }
    .floating-whatsapp span {
        display: none;
    }
    .floating-whatsapp {
        padding: 14px;
        border-radius: 50%;
    }
}
