/* =============================================
   ERENN KITCHEN — style.css
   Tema: Açık & Modern / Minimal Restoran
   ============================================= */

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

/* ── RESET & TEMELLER ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream:        #F5F2EC;
    --cream-dark:   #EAE6DE;
    --white:        #FAFAF7;
    --charcoal:     #1A1A1A;
    --charcoal-mid: #4A4A47;
    --terracotta:   #B85C2A;
    --terracotta-light: #FDF2EC;
    --border:       rgba(0, 0, 0, 0.10);
    --border-hover: rgba(0, 0, 0, 0.20);
    --font-serif:   'Playfair Display', Georgia, serif;
    --font-sans:    'DM Sans', system-ui, sans-serif;
    --transition:   0.22s ease;
    --radius-sm:    3px;
    --radius-md:    6px;
    --radius-lg:    10px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 68px;
    background: var(--white);
    border-bottom: 0.5px solid var(--border);
    backdrop-filter: blur(8px);
}

.logo {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--charcoal);
    text-decoration: none;
}

/* ── NAV ── */
.main-nav {
    display: flex;
    gap: 32px;
}

.nav-item {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--charcoal-mid);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width var(--transition);
}

.nav-item:hover,
.nav-item.active {
    color: var(--charcoal);
}

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

/* ── HEADER RIGHT ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ── DİL GEÇİŞİ ── */
.language-switcher {
    display: flex;
    gap: 4px;
}

.lang-btn {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--charcoal-mid);
    cursor: pointer;
    transition: all var(--transition);
}

.lang-btn:hover {
    border-color: var(--border-hover);
    color: var(--charcoal);
}

.lang-btn.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* ── ORDER NOW BUTONU ── */
.order-now-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    background: var(--terracotta);
    color: #fff;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
}

.order-now-btn:hover {
    background: #9d4d22;
    transform: translateY(-1px);
}

/* ── HERO BÖLÜMÜ ── */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 68px);
    min-height: 480px;
    max-height: 860px;
    overflow: hidden;
    background: var(--cream-dark);
}

.hero-image-area {
    position: absolute;
    inset: 0;
    background: var(--cream-dark);
}

.hero-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,26,26,0.10) 0%,
        rgba(26,26,26,0.52) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 0 56px 64px;
}

.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 500;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 14px;
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.80);
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-secondary-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.hero-secondary-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.9);
}

/* ── EAT SAFE BÖLÜMÜ ── */
.eat-safe-section {
    background: var(--cream);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 56px 40px;
}

.eat-safe-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.eat-safe-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eat-safe-left h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.25;
}

.eat-safe-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eat-safe-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.eat-safe-num {
    width: 26px;
    height: 26px;
    background: var(--terracotta);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.eat-safe-step p {
    font-size: 14px;
    color: var(--charcoal-mid);
    line-height: 1.65;
    margin: 0;
}

.eat-safe-step p strong {
    color: var(--charcoal);
    font-weight: 500;
}

.eat-safe-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.eat-safe-media {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.eat-safe-ear-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 24px;
    padding: 8px 16px 8px 10px;
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 16px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal-mid);
}

.eat-safe-ear-btn:hover {
    border-color: var(--terracotta);
    background: var(--terracotta-light);
    color: var(--terracotta);
}

.eat-safe-ear-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.eat-safe-ear-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--charcoal-mid);
    white-space: nowrap;
}

.eat-safe-sign-img {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.eat-safe-sign-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eat-safe-allergen-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--charcoal-mid);
}

.eat-safe-allergen-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-allergen-btn {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    padding: 7px 16px;
    border-radius: 24px;
    border: 0.5px solid var(--border);
    background: var(--white);
    color: var(--charcoal-mid);
    cursor: pointer;
    transition: all var(--transition);
}

.home-allergen-btn:hover {
    border-color: var(--border-hover);
    color: var(--charcoal);
}

.home-allergen-btn.active {
    background: #c0392b;
    border-color: #c0392b;
    color: #fff;
}

@media (max-width: 900px) {
    .eat-safe-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .eat-safe-section {
        padding: 40px 20px;
    }
}

/* ── EAR BUTONU (menü sayfası için) ── */
.ear-btn {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ear-btn:hover {
    background: var(--terracotta-light);
    border-color: var(--terracotta);
    transform: scale(1.08);
}

.ear-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.allergen-bar-btn .ear-icon-img {
    width: 28px;
    height: 28px;
}

/* ── HAKKIMIZDA ── */
.about-section {
    padding: 80px 40px;
    background: var(--white);
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    background: var(--terracotta-light);
    color: var(--terracotta);
    border-radius: 24px;
    padding: 4px 12px;
    margin-bottom: 16px;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--charcoal);
}

.about-content p {
    font-size: 15px;
    color: var(--charcoal-mid);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 0.5px solid var(--border);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-num {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--terracotta);
    line-height: 1;
}

.about-stat-lbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--charcoal-mid);
}

.about-image {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-mid);
    font-size: 13px;
    min-height: 300px;
}

/* ── HİZMETLER ── */
.services-section {
    background: var(--cream);
    padding: 72px 40px;
}

.section-main-title {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--terracotta);
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}

.service-img-placeholder {
    height: 180px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal-mid);
    font-size: 12px;
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    padding: 20px 22px 8px;
    color: var(--charcoal);
}

.service-card p {
    font-size: 13px;
    color: var(--charcoal-mid);
    padding: 0 22px 16px;
    line-height: 1.65;
}

.service-link {
    display: inline-block;
    margin: 0 22px 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--terracotta);
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 1px;
    transition: opacity var(--transition);
}

.service-link:hover {
    opacity: 0.7;
}

/* ── MENÜ SAYFASI ── */
.filter-section {
    padding: 52px 40px 28px;
    background: var(--white);
}

.filter-section h2 {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.allergen-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.filter-btn {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border: 0.5px solid var(--border);
    border-radius: 24px;
    background: transparent;
    color: var(--charcoal-mid);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--border-hover);
    color: var(--charcoal);
}

.filter-btn.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

.filter-btn.excluded {
    background: #fde8e8;
    color: #c0392b;
    border-color: #f5c6cb;
}

/* ── MENÜ LİSTESİ ── */
.menu-section {
    padding: 24px 40px 80px;
    background: var(--white);
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 40px 0 24px;
    padding-bottom: 12px;
    border-bottom: 0.5px solid var(--border);
}

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

.menu-item {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.menu-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

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

.menu-image-box {
    position: relative;
    height: 150px;
    background: var(--cream-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.img-placeholder {
    font-size: 12px;
    color: var(--charcoal-mid);
}

.product-ear {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.item-info {
    padding: 14px 16px 16px;
}

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

.item-header h3 {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 500;
    color: var(--charcoal);
}

.price {
    font-size: 15px;
    font-weight: 500;
    color: var(--terracotta);
    flex-shrink: 0;
    margin-left: 8px;
}

.item-info p {
    font-size: 12px;
    color: var(--charcoal-mid);
    line-height: 1.55;
}

/* ── MODAL ── */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.72);
    z-index: 200;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal.open {
    display: flex;
}

.modal-content {
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    width: min(680px, 92vw);
    overflow: hidden;
    position: relative;
    animation: modalIn 0.24s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(12px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.close-modal {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 22px;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: color var(--transition);
    z-index: 10;
    line-height: 1;
}

.close-modal:hover {
    color: #fff;
}

.modal-content video {
    width: 100%;
    display: block;
}

/* ── MODAL ALLERJİ PANELİ ── */
.modal-allergen-panel {
    padding: 18px 20px 22px;
    border-top: 0.5px solid rgba(255,255,255,0.08);
    background: #1a1a1a;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.modal-product-name {
    font-family: var(--font-serif);
    font-size: 17px;
    color: #fff;
    margin-bottom: 12px;
}

.modal-allergen-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.modal-allergen-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.modal-allergen-btn {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    animation: allergen-bounce 1.8s infinite;
    color: #fff;
}

.modal-allergen-btn:nth-child(1) { background: #c0392b; animation-delay: 0.0s; }
.modal-allergen-btn:nth-child(2) { background: #d35400; animation-delay: 0.2s; }
.modal-allergen-btn:nth-child(3) { background: #d4ac0d; color: #333; animation-delay: 0.4s; }
.modal-allergen-btn:nth-child(4) { background: #1e8449; animation-delay: 0.6s; }
.modal-allergen-btn:nth-child(5) { background: #1a5276; animation-delay: 0.8s; }
.modal-allergen-btn:nth-child(6) { background: #6c3483; animation-delay: 1.0s; }
.modal-allergen-btn:nth-child(7) { background: #117a65; animation-delay: 1.2s; }
.modal-allergen-btn:nth-child(8) { background: #784212; animation-delay: 1.4s; }

@keyframes allergen-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.modal-allergen-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: none;
}

.modal-allergen-btn.modal-allergen-selected {
    outline: 3px solid #fff;
    transform: scale(1.05);
    animation: none;
}

.modal-allergen-tip {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    padding: 10px 14px;
    background: rgba(184,92,42,0.12);
    border-left: 2px solid var(--terracotta);
    border-radius: 0 4px 4px 0;
    line-height: 1.5;
}

/* ── VIDEO KÖŞESİNDEKİ PULSE İKONLAR ── */
.modal-corner-icons {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.modal-corner-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    border: none;
    animation: corner-pulse 2s infinite;
    transition: transform 0.15s;
}

.modal-corner-icon:nth-child(1) { background: #c0392b; animation-delay: 0.0s; }
.modal-corner-icon:nth-child(2) { background: #d35400; animation-delay: 0.3s; }
.modal-corner-icon:nth-child(3) { background: #d4ac0d; animation-delay: 0.6s; }
.modal-corner-icon:nth-child(4) { background: #1e8449; animation-delay: 0.9s; }
.modal-corner-icon:nth-child(5) { background: #1a5276; animation-delay: 1.2s; }
.modal-corner-icon:nth-child(6) { background: #6c3483; animation-delay: 1.5s; }
.modal-corner-icon:nth-child(7) { background: #117a65; animation-delay: 1.8s; }
.modal-corner-icon:nth-child(8) { background: #784212; animation-delay: 2.1s; }

.modal-corner-icon:hover {
    transform: scale(1.15);
    animation: none;
}

.modal-corner-icon.modal-allergen-selected {
    outline: 3px solid #fff;
    animation: none;
}

@keyframes corner-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { transform: scale(1.12); box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}
.site-footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
    max-width: 220px;
}

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

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all var(--transition);
}

.social-btn:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p {
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: rgba(255,255,255,0.5);
}

.hours-row span:last-child {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 0.5px solid rgba(255,255,255,0.1);
    padding: 20px 40px;
    max-width: 1100px;
    margin: 0 auto;
    color: rgba(255,255,255,0.3);
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 20px 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        padding: 16px 20px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    header {
        padding: 0 20px;
        height: 60px;
    }

    .main-nav {
        display: none;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-image {
        min-height: 220px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 60vw;
        min-height: 300px;
        max-height: 420px;
    }

    .hero-overlay {
        padding: 0 24px 36px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .allergen-bar-inner {
        padding: 12px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-section,
    .services-section,
    .filter-section,
    .menu-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        flex-direction: column;
    }

    .logo {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

/* ── CUSTOM PIZZA ── */
.custom-pizza-section {
    padding: 56px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-pizza-header {
    margin-bottom: 40px;
}

.custom-pizza-header h1 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 12px 0 8px;
}

.custom-pizza-header p {
    font-size: 14px;
    color: var(--charcoal-mid);
}

.inline-ear {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    display: inline;
}

.custom-pizza-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.cp-base-info {
    background: var(--cream);
    border: 0.5px solid var(--border);
    border-left: 3px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin-bottom: 24px;
}

.cp-base-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--charcoal-mid);
    margin-bottom: 10px;
}

.cp-base-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cp-base-tag {
    font-size: 13px;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
    color: var(--charcoal);
}

.cp-counter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.cp-counter-text {
    font-size: 13px;
    color: var(--charcoal-mid);
}

.cp-counter-badge {
    font-size: 12px;
    font-weight: 500;
    background: var(--terracotta);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
}

.cp-warn {
    font-size: 12px;
    color: #c0392b;
    margin-bottom: 12px;
    display: none;
}

.cp-cat-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--charcoal-mid);
    margin: 24px 0 12px;
    text-transform: uppercase;
}

.cp-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 4px;
}

.cp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 8px;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}

.cp-item:hover {
    border-color: var(--terracotta);
    background: var(--terracotta-light);
}

.cp-item.cp-selected {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: #fff;
}

.cp-ear {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 0.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
    padding: 3px;
}

.cp-item.cp-selected .cp-ear {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
}

.cp-ear:hover {
    background: var(--terracotta-light);
    border-color: var(--terracotta);
    transform: scale(1.1);
}

.cp-item-name {
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    pointer-events: none;
}

.cp-item.cp-selected .cp-item-name {
    color: #fff;
}

/* Sağ özet kutusu */
.cp-summary-box {
    position: sticky;
    top: 88px;
    background: var(--charcoal);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cp-summary-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.cp-summary-base-label {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.cp-summary-divider {
    border-top: 0.5px solid rgba(255,255,255,0.1);
}

.cp-summary-toppings-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.cp-summary-toppings {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 32px;
}

.cp-summary-tag {
    font-size: 12px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
}

.cp-summary-empty {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

.cp-summary-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding-top: 4px;
    border-top: 0.5px solid rgba(255,255,255,0.1);
}

.cp-summary-price strong {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}

.cp-order-btn {
    display: block;
    text-align: center;
    background: var(--terracotta);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.cp-order-btn:hover {
    background: #9d4d22;
}

.cp-back-btn {
    display: block;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition);
}

.cp-back-btn:hover {
    color: rgba(255,255,255,0.8);
}

@media (max-width: 900px) {
    .custom-pizza-inner {
        grid-template-columns: 1fr;
    }
    .cp-summary-box {
        position: static;
    }
    .custom-pizza-section {
        padding: 40px 20px 60px;
    }
}

.cp-base-clickable {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.cp-base-clickable:hover {
    border-color: var(--terracotta);
    background: var(--terracotta-light);
}

.cp-ear-inline {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 0.5px solid var(--border);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 2px;
    flex-shrink: 0;
}

.cp-ear-inline:hover {
    background: var(--terracotta-light);
    border-color: var(--terracotta);
}


/* ── MENU ORDER NOW BUTONU ── */
.menu-order-btn {
    display: inline-block;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    background: var(--terracotta);
    padding: 6px 14px;
    border-radius: 20px;
    transition: background var(--transition);
}
.menu-order-btn:hover {
    background: #9d4d22;
}

/* ── SİPARİŞ VİDEO BANNER ── */
.order-video-banner-section {
    background: var(--cream);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
}

.order-video-banner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.order-video-ear {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
}

.order-video-ear:hover {
    border-color: var(--terracotta);
    background: var(--terracotta-light);
    transform: scale(1.05);
}

.order-video-ear img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.order-video-text {
    flex: 1;
}

.order-video-text h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.order-video-text p {
    font-size: 12px;
    color: var(--charcoal-mid);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .order-video-banner {
        padding: 14px 20px;
        gap: 14px;
    }
}

/* ── EAT SAFE SAĞ KOLONDA SİPARİŞ BANNER ── */
.order-how-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    margin-bottom: 16px;
}

.order-how-banner .order-video-text h3 {
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.order-how-banner .order-video-text p {
    font-size: 12px;
    color: var(--charcoal-mid);
}

/* ── HOW TO ORDER STEPS ── */
.how-order-steps {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 20px 24px;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    flex-shrink: 0;
}

.service-card {
    display: flex;
    flex-direction: column;
}

/* ── HOW TO ORDER ADIM KULAK İKONLARI ── */
.how-step-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex: 1;
}

.how-step-content p {
    flex: 1;
    margin: 0;
}

.how-step-ear {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 0.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
    padding: 4px;
}

.how-step-ear:hover {
    border-color: var(--terracotta);
    background: var(--terracotta-light);
    transform: scale(1.1);
}

/* ── CUSTOM PIZZA HOW STEPS ── */
.cp-how-steps {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-top: 16px;
}

/* ── CP-ITEM YENİ SPLIT DÜZEN ── */
.cp-item {
    display: flex;
    align-items: stretch;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    overflow: hidden;
    cursor: default;
    transition: border-color var(--transition);
}

.cp-item:hover {
    border-color: var(--terracotta);
}

.cp-item.cp-selected {
    background: var(--terracotta);
    border-color: var(--terracotta);
}

.cp-ear-side {
    width: 34px;
    min-height: 34px;
    background: var(--cream);
    border-right: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
    padding: 5px;
    border-radius: 0;
}

.cp-ear-side:hover {
    background: var(--terracotta-light);
}

.cp-item.cp-selected .cp-ear-side {
    background: rgba(0,0,0,0.12);
    border-right-color: rgba(255,255,255,0.2);
}

.cp-ear-side .ear-icon-img {
    width: 18px;
    height: 18px;
}

.cp-name-side {
    padding: 7px 12px;
    font-size: 13px;
    font-weight: 400;
    color: var(--charcoal);
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
}

.cp-item.cp-selected .cp-name-side {
    color: #fff;
}

.cp-name-side .cp-item-name {
    pointer-events: none;
}

/* ── CP-ITEM DİKEY DÜZEN ── */
.cp-item-v {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 0.5px solid var(--border);
    background: var(--white);
    width: 88px;
    transition: border-color var(--transition);
}

.cp-item-v:hover {
    border-color: var(--terracotta);
}

.cp-item-v.cp-selected {
    border-color: var(--terracotta);
}

.cp-ear-top {
    width: 100%;
    padding: 8px;
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
}

.cp-ear-top:hover {
    background: var(--terracotta-light);
}

.cp-item-v.cp-selected .cp-ear-top {
    background: rgba(184,92,42,0.15);
    border-bottom-color: rgba(184,92,42,0.3);
}

.cp-ear-top .ear-icon-img {
    width: 22px;
    height: 22px;
}

.cp-name-bottom {
    padding: 7px 8px;
    font-size: 12px;
    font-weight: 400;
    color: var(--charcoal);
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
    transition: all var(--transition);
    user-select: none;
}

.cp-name-bottom:hover {
    background: var(--cream);
}

.cp-item-v.cp-selected .cp-name-bottom {
    background: var(--terracotta);
    color: #fff;
}

.cp-name-bottom .cp-item-name {
    pointer-events: none;
}

button.menu-order-btn {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
}

/* ── SEPET FAB BUTONU ── */
.cart-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--terracotta);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 150;
    transition: background var(--transition);
}
.cart-fab:hover { background: #9d4d22; }

/* ── SEPET PANELİ ── */
.cart-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.55);
    z-index: 250;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
}
.cart-panel-drawer {
    background: var(--white);
    width: min(380px, 100vw);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.cart-panel-head {
    padding: 18px 20px;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-panel-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--charcoal);
}
.cart-panel-type {
    display: flex;
    gap: 8px;
    padding: 14px 20px;
    border-bottom: 0.5px solid var(--border);
}
.cart-panel-items {
    flex: 1;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}
.cart-panel-footer {
    padding: 16px 20px;
    border-top: 0.5px solid var(--border);
}

/* ── ÜRÜN MODAL STİLLERİ (menu.html için) ── */
.prod-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(26,26,26,0.6); z-index: 300; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.prod-modal-overlay.open { display: flex; }
.prod-modal { background: var(--white); border-radius: var(--radius-lg); width: min(520px, 94vw); max-height: 88vh; overflow-y: auto; position: relative; animation: modalIn 0.22s ease; }
.prod-modal-img { height: 200px; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-size: 72px; position: relative; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.prod-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.prod-modal-close { position: absolute; top: 12px; right: 14px; background: rgba(255,255,255,0.9); border: none; border-radius: 50%; width: 30px; height: 30px; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; }
.prod-modal-body { padding: 20px 22px; }
.prod-modal-title { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.prod-modal-desc { font-size: 13px; color: var(--charcoal-mid); line-height: 1.6; margin-bottom: 20px; }
.prod-opt-section { margin-bottom: 20px; }
.prod-opt-label { font-size: 10px; letter-spacing: 1.5px; font-weight: 500; color: var(--charcoal-mid); margin-bottom: 10px; text-transform: uppercase; }
.prod-opt-items { display: flex; flex-wrap: wrap; gap: 7px; }
.prod-opt-btn { font-family: var(--font-sans); font-size: 12px; padding: 7px 14px; border-radius: 24px; border: 0.5px solid var(--border); background: var(--white); color: var(--charcoal); cursor: pointer; transition: all var(--transition); }
.prod-opt-btn:hover { border-color: var(--terracotta); }
.prod-opt-btn.sel { background: var(--terracotta); color: #fff; border-color: var(--terracotta); }
.prod-opt-btn .ep { font-size: 10px; opacity: 0.75; margin-left: 2px; }
.prod-modal-footer { padding: 16px 22px; border-top: 0.5px solid var(--border); display: flex; align-items: center; gap: 14px; position: sticky; bottom: 0; background: var(--white); }
.prod-qty-ctrl { display: flex; align-items: center; gap: 12px; }
.prod-qty-btn { width: 34px; height: 34px; border-radius: 50%; border: 0.5px solid var(--border); background: var(--white); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--charcoal); transition: all var(--transition); }
.prod-qty-btn:hover { background: var(--cream); }
.prod-qty-num { font-size: 16px; font-weight: 500; color: var(--charcoal); min-width: 22px; text-align: center; }
.prod-add-cart-btn { flex: 1; background: var(--terracotta); color: #fff; border: none; border-radius: var(--radius-md); padding: 13px 16px; font-family: var(--font-sans); font-size: 14px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--transition); }
.prod-add-cart-btn:hover { background: #9d4d22; }
.checkout-btn { width: 100%; padding: 13px; background: var(--terracotta); color: #fff; border: none; border-radius: var(--radius-md); font-family: var(--font-sans); font-size: 14px; font-weight: 500; cursor: pointer; transition: background var(--transition); margin-bottom: 10px; }
.checkout-btn:hover { background: #9d4d22; }
.checkout-btn:disabled { background: var(--cream-dark); color: var(--charcoal-mid); cursor: not-allowed; }
.ot-btn { flex: 1; padding: 10px; border: 0.5px solid var(--border); border-radius: var(--radius-md); background: var(--white); cursor: pointer; font-family: var(--font-sans); font-size: 13px; font-weight: 500; color: var(--charcoal-mid); text-align: center; transition: all var(--transition); }
.ot-btn.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.pay-tag { font-size: 10px; color: var(--charcoal-mid); background: var(--cream); border: 0.5px solid var(--border); padding: 3px 8px; border-radius: 4px; }

/* ── ANA SAYFA 3 KOLON ── */
.home-trio-section {
    background: var(--cream);
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 56px 40px;
}

.home-trio-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-trio-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-trio-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--charcoal);
    line-height: 1.25;
}

.home-trio-body {
    font-size: 13px;
    color: var(--charcoal-mid);
    line-height: 1.65;
}

.home-trio-ear-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    transition: all var(--transition);
    text-align: left;
}

.home-trio-ear-btn:hover {
    border-color: var(--terracotta);
    background: var(--terracotta-light);
}

.home-trio-img {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
}

.home-trio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 180px;
}

.home-trio-dark {
    background: var(--charcoal);
    flex-direction: column;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
}

@media (max-width: 900px) {
    .home-trio-grid {
        grid-template-columns: 1fr;
    }
    .home-trio-section {
        padding: 40px 20px;
    }
}

/* ── ABOUT US ÜSTTE TAM GENİŞLİK ── */
.home-about-section {
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
    padding: 56px 40px;
}

.home-about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
}

.home-about-text .about-tag { margin-bottom: 14px; display: inline-block; }

.home-about-text h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.2;
}

.home-about-text p {
    font-size: 15px;
    color: var(--charcoal-mid);
    line-height: 1.7;
}

.home-about-img {
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.home-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── EAT SAFE + HOW TO ORDER YAN YANA ── */
.home-duo-section {
    background: var(--white);
    border-bottom: 0.5px solid var(--border);
    padding: 40px 40px;
}

.home-duo-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-duo-card {
    background: var(--cream);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-duo-vid {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-dark);
}

.home-duo-vid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-duo-dark {
    background: var(--charcoal);
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    flex-direction: column;
    gap: 8px;
}

@media (max-width: 900px) {
    .home-about-inner { grid-template-columns: 1fr; }
    .home-about-img { height: 200px; }
    .home-about-section { padding: 40px 20px; }
    .home-duo-grid { grid-template-columns: 1fr; }
    .home-duo-section { padding: 30px 20px; }
}

/* ── ABOUT US — resim solda büyük, metin sağda küçük ── */
.home-about-inner {
    grid-template-columns: 420px 1fr !important;
}

.home-about-img {
    height: 340px !important;
}

.home-about-text h2 {
    font-size: 28px !important;
}

.home-duo-vid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

/* ── DUO KARTLAR BÜYÜT ── */
.home-duo-section {
    padding: 48px 40px !important;
}

.home-duo-grid {
    gap: 32px !important;
}

.home-duo-card {
    padding: 24px !important;
    gap: 16px !important;
}

.home-duo-vid {
    height: auto !important;
    min-height: 0 !important;
    background: transparent !important;
}

/* ── ABOUT US BÜYÜT ── */
.home-about-inner {
    grid-template-columns: 480px 1fr !important;
    gap: 56px !important;
}

.home-about-img {
    height: 400px !important;
}

.home-about-text .about-tag {
    font-size: 12px !important;
    letter-spacing: 2.5px !important;
    margin-bottom: 16px !important;
}

.home-about-text h2 {
    font-size: 42px !important;
    font-weight: 600 !important;
    color: var(--charcoal) !important;
    margin-bottom: 20px !important;
    line-height: 1.15 !important;
}

.home-about-text p {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #3a2a1a !important;
    font-weight: 400 !important;
}

/* ── ABOUT/EAT SAFE/HOW TO ORDER ETIKET VE BAŞLIKLAR ── */
.home-about-text .about-tag,
.home-duo-card .about-tag {
    font-size: 13px !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
    padding: 5px 14px !important;
}

.home-about-text h2 {
    font-size: 46px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

.home-duo-card .about-tag {
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 4px !important;
}


/* ── CUSTOM PIZZA HEADER GRID ── */
.cp-header-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: center;
}

.cp-header-right {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cp-header-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

@media (max-width: 900px) {
    .cp-header-grid {
        grid-template-columns: 1fr;
    }
    .cp-header-right {
        display: none;
    }
}

/* ── MENU EAT SAFE 3 KOLON ── */
.menu-eat-safe-inner {
    grid-template-columns: 220px 1fr 1fr !important;
}

.menu-eat-safe-img {
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .menu-eat-safe-inner {
        grid-template-columns: 1fr !important;
    }
    .menu-eat-safe-img {
        min-height: 200px;
    }
}

/* ── MENU GUIDE RESİMLERİ BÜYÜT ── */
.menu-guide-img {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.menu-guide-img img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* ── MENU INFO BAR ── */
.menu-info-bar {
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
    padding: 0;
}

.menu-info-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.menu-info-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    text-align: left;
    transition: background var(--transition);
}

.menu-info-btn:hover {
    background: var(--cream-dark);
}

.menu-info-btn .ear-icon-img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.menu-info-divider {
    width: 0.5px;
    background: var(--border);
    align-self: stretch;
}

/* ── ANA SAYFA ALERJİ İKONLARI (sadece gösterim) ── */
.home-allergen-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.home-allergen-icons span {
    font-size: 22px;
    opacity: 0.75;
}

@media (max-width: 900px) {
    .menu-info-bar-inner {
        flex-direction: column;
    }
    .menu-info-divider {
        width: 100%;
        height: 0.5px;
    }
}

/* ── HAREKETLİ ALERJİ İKONLARI ── */
.home-allergen-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.ha-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: ha-bounce 2s ease-in-out infinite;
}

.ha-icon:nth-child(1) { animation-delay: 0s; }
.ha-icon:nth-child(2) { animation-delay: 0.2s; }
.ha-icon:nth-child(3) { animation-delay: 0.4s; }
.ha-icon:nth-child(4) { animation-delay: 0.6s; }
.ha-icon:nth-child(5) { animation-delay: 0.8s; }
.ha-icon:nth-child(6) { animation-delay: 1.0s; }
.ha-icon:nth-child(7) { animation-delay: 1.2s; }
.ha-icon:nth-child(8) { animation-delay: 1.4s; }

@keyframes ha-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.ha-emoji {
    font-size: 26px;
    line-height: 1;
}

.ha-name {
    font-size: 10px;
    color: var(--charcoal-mid);
    font-family: var(--font-sans);
    text-align: center;
}

/* ── ALERJİ BİLGİ BANDI ── */
.allergen-info-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FDF2EC;
    border: 0.5px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-size: 13px;
    color: var(--charcoal);
    margin-bottom: 16px;
    line-height: 1.5;
}

.allergen-info-banner strong {
    color: var(--terracotta);
}

/* ── ÜRÜN KARTI UYARI ROZETİ ── */
.allergen-warning-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    right: 6px;
    background: rgba(184,92,42,0.92);
    color: #fff;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    line-height: 1.3;
    backdrop-filter: blur(2px);
}

/* ── MODAL UYARI BANDI ── */
.pm-allergen-warn {
    background: #FDF2EC;
    border: 0.5px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    font-size: 13px;
    color: var(--charcoal);
    line-height: 1.5;
    margin-bottom: 16px;
}

.pm-allergen-warn strong {
    color: var(--terracotta);
}

/* ── KAYAN ÖNE ÇIKANLAR ŞERİDİ ── */
.featured-strip-wrap {
    padding: 28px 40px 20px;
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
}

.featured-strip-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.featured-strip-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
}

.featured-strip-badge {
    font-size: 10px;
    letter-spacing: 1.5px;
    background: #FDF2EC;
    color: var(--terracotta);
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.featured-strip-outer {
    overflow: hidden;
    position: relative;
}

.featured-strip-inner {
    display: flex;
    gap: 12px;
    animation: fs-slide 24s linear infinite;
}

.featured-strip-inner:hover {
    animation-play-state: paused;
}

@keyframes fs-slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.fs-card {
    width: 160px;
    flex-shrink: 0;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    cursor: pointer;
    transition: border-color var(--transition);
}

.fs-card:hover {
    border-color: var(--terracotta);
}

.fs-img {
    height: 90px;
    background: var(--cream-dark);
    position: relative;
    overflow: hidden;
}

.fs-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fs-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 500;
}

.fs-badge.hot { background: #B85C2A; color: #fff; }
.fs-badge.chef { background: #1a1a1a; color: #fff; }
.fs-badge.gf { background: #3B6D11; color: #fff; }
.fs-badge.vegan { background: #0F6E56; color: #fff; }

.fs-body {
    padding: 8px 10px 4px;
}

.fs-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.fs-price {
    font-size: 12px;
    color: var(--terracotta);
}

.fs-btn {
    background: var(--terracotta);
    color: #fff;
    font-size: 10px;
    font-family: var(--font-sans);
    padding: 6px;
    text-align: center;
    cursor: pointer;
    transition: background var(--transition);
}

.fs-btn:hover { background: #9d4d22; }

@media (max-width: 900px) {
    .featured-strip-wrap { padding: 20px; }
}

/* ── EXTRA TOPPING BUTONLARI İKONLU ── */
.pm-extra-btn {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 10px !important;
    min-width: 70px;
    text-align: center;
}

.pm-extra-icon {
    font-size: 22px;
    line-height: 1;
    pointer-events: none;
}

.pm-extra-name {
    font-size: 11px;
    line-height: 1.2;
    pointer-events: none;
}

.pm-extra-btn .ep {
    font-size: 10px;
    opacity: 0.75;
    pointer-events: none;
}

.pm-extra-btn.sel .pm-extra-icon {
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.6));
}

#pmExtras {
    gap: 8px !important;
}

/* ── CP-ITEM EMOJİ ── */
.cp-item-emoji {
    font-size: 28px;
    line-height: 1;
    padding: 6px 0 2px;
    text-align: center;
    pointer-events: none;
}

.cp-item-v {
    width: 88px !important;
}

.cp-name-bottom {
    font-size: 11px !important;
    padding: 4px 6px 8px !important;
}

/* ── HEADER SEPET BUTONU ── */
.header-cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--terracotta);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 7px 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition);
    position: relative;
}

.header-cart-btn:hover {
    background: #9d4d22;
}

.header-cart-icon {
    font-size: 16px;
}

.header-cart-count {
    background: #fff;
    color: var(--terracotta);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart-total {
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 600px) {
    .header-cart-total {
        display: none;
    }
}




/* ── CUSTOM PIZZA KARTI ── */
.custom-pizza-img {
    background: linear-gradient(135deg, #B85C2A 0%, #1a1a1a 100%) !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    height: 150px !important;
    overflow: hidden !important;
    position: relative !important;
}
.cp-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 0;
}
.cp-right-col {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cp-smiley-new {
    font-size: 28px;
    animation: cp-sm 2s ease-in-out infinite;
}
@keyframes cp-sm { 0%,100%{transform:scale(1);} 50%{transform:scale(1.2);} }
.cp-arrow-new {
    animation: cp-ar 1.2s ease-in-out infinite;
}
@keyframes cp-ar { 0%,100%{transform:translateY(0);opacity:0.7;} 50%{transform:translateY(5px);opacity:1;} }
.cp-pizza-new {
    font-size: 72px;
    line-height: 1;
    animation: cp-pz 3s ease-in-out infinite;
}
@keyframes cp-pz { 0%,100%{transform:translateY(0) rotate(-5deg);} 50%{transform:translateY(-6px) rotate(5deg);} }
.cp-btn-new {
    background: #fff !important;
    color: #B85C2A !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    font-family: var(--font-sans) !important;
    padding: 5px 10px !important;
    border-radius: 14px !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.15s !important;
    display: inline-block !important;
}
.cp-btn-new:hover { background: #FDF2EC !important; }

/* ── FEATURED STRIP KULAK İKONU ── */
.fs-img {
    position: relative !important;
}

.fs-ear-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255,255,255,0.92);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.15s;
    padding: 4px;
}

.fs-ear-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.fs-ear-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* ── ŞEF BÖLÜMÜ ── */
.home-chef-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 0;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: center;
    border-top: 0.5px solid var(--border);
    margin-top: 40px;
}

.home-chef-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 10px 0 12px;
    line-height: 1.2;
}

.home-chef-text p {
    font-size: 15px;
    color: var(--charcoal-mid);
    line-height: 1.8;
    margin-bottom: 14px;
}

.home-chef-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E6F1FB;
    color: #185FA5;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 16px;
    border-radius: 24px;
    margin-top: 4px;
}

.home-chef-img {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.home-chef-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 900px) {
    .home-chef-inner {
        grid-template-columns: 1fr;
        padding: 30px 20px 0;
    }
    .home-chef-img {
        height: 220px;
    }
}

/* ── ABOUT US ALT BAŞLIK ── */
.home-about-subtitle {
    font-family: var(--font-serif) !important;
    font-size: 22px !important;
    font-weight: 500 !important;
    color: var(--charcoal) !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
}

/* ── HERO SOL ÜST KÖŞE RESMİ ── */
.hero-corner-img {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 160px;
    z-index: 10;
}

.hero-corner-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── VİTALİİ DÖNEN ROZET ── */
.home-chef-img {
    position: relative !important;
}

.rotating-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 80px;
    height: 80px;
    z-index: 5;
}

.badge-inner-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    border-radius: 50%;
    z-index: 2;
}

.badge-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    animation: badge-spin 8s linear infinite;
}

@keyframes badge-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .hero-corner-img {
        width: 100px;
        top: 12px;
        left: 12px;
    }
}

/* ── 🤟 HAREKETLİ İŞARET DİLİ İKONU ── */
.isl-icon {
    font-size: 28px;
    display: inline-block;
    animation: isl-wave 1.8s ease-in-out infinite;
    line-height: 1;
}

.isl-icon-sm {
    font-size: 20px;
    display: inline-block;
    animation: isl-wave 1.8s ease-in-out infinite;
    line-height: 1;
}

@keyframes isl-wave {
    0%   { transform: rotate(-10deg) scale(1); }
    25%  { transform: rotate(10deg) scale(1.1); }
    50%  { transform: rotate(-5deg) scale(1.05); }
    75%  { transform: rotate(8deg) scale(1.1); }
    100% { transform: rotate(-10deg) scale(1); }
}

/* Eski kulak img'leri gizle, yerini 🤟 alsın */
.ear-icon-img,
.eat-safe-ear-img,
.fs-ear-img {
    display: none !important;
}

/* ── 🤟 MAVİ RENK FİLTRESİ ── */
.isl-icon,
.isl-icon-sm {
    filter: sepia(1) saturate(8) hue-rotate(200deg) brightness(0.7);
}

/* ── CUSTOM PIZZA 3 KOLON HEADER ── */
.cp-header-3col {
    display: grid;
    grid-template-columns: 1fr 120px 240px;
    gap: 0;
    min-height: 280px;
}

.cp-3col-left {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.cp-3col-left h1 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    margin-top: 8px;
}

.cp-3col-mid {
    background: var(--cream);
    border-left: 0.5px solid var(--border);
    border-right: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-3col-ear-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px 8px;
    text-align: center;
}

.cp-3col-ear-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--charcoal);
    font-family: var(--font-sans);
    line-height: 1.3;
}

.cp-3col-ear-sub {
    font-size: 10px;
    color: var(--charcoal-mid);
    font-family: var(--font-sans);
}

.cp-3col-right {
    overflow: hidden;
}

.cp-3col-right .cp-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

@media (max-width: 900px) {
    .cp-header-3col {
        grid-template-columns: 1fr;
    }
    .cp-3col-mid {
        border-left: none;
        border-right: none;
        border-top: 0.5px solid var(--border);
        border-bottom: 0.5px solid var(--border);
        padding: 14px;
    }
    .cp-3col-right {
        height: 180px;
    }
}

/* ── CP HEADER SEÇ 3 ── */
.cp-top-banner {
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cp-top-ear-btn {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-md);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
}

.cp-top-ear-btn:hover {
    border-color: var(--terracotta);
    background: var(--terracotta-light);
}

.cp-top-banner-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.cp-top-banner-sub {
    font-size: 12px;
    color: var(--charcoal-mid);
}

.cp-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 0;
    min-height: 260px;
}

.cp-bottom-left {
    padding: 24px 24px;
    display: flex;
    flex-direction: column;
}

.cp-bottom-left h1 {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 500;
    color: var(--charcoal);
    margin-top: 8px;
}

.cp-bottom-right {
    background: linear-gradient(135deg, #B85C2A 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 0.5px solid var(--border);
}

.cp-animated-pizza {
    font-size: 120px;
    line-height: 1;
    animation: cp-pizza-float 3s ease-in-out infinite;
    display: block;
}

@keyframes cp-pizza-float {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-12px) rotate(8deg); }
}

@media (max-width: 900px) {
    .cp-bottom-grid { grid-template-columns: 1fr; }
    .cp-bottom-right { height: 160px; border-left: none; border-top: 0.5px solid var(--border); }
    .cp-animated-pizza { font-size: 80px; }
}

/* ── ABOUT US NUNİTO FONT ── */
.home-about-text h2,
.home-about-text p,
.home-about-subtitle,
.home-chef-name,
.home-chef-text p,
.home-chef-badge {
    font-family: 'Nunito', sans-serif !important;
}

.home-about-text h2 {
    font-weight: 600 !important;
}

.home-about-subtitle {
    font-weight: 600 !important;
}

.home-chef-name {
    font-weight: 600 !important;
}

.home-about-text p,
.home-chef-text p {
    font-weight: 400 !important;
}

/* ── İÇECEK RESİMLERİ ── */
.menu-section:last-of-type .menu-item .menu-image-box {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
}

.menu-section:last-of-type .menu-item .menu-item-img {
    width: auto !important;
    height: 160px !important;
    object-fit: contain !important;
    display: block;
}

/* ── İÇECEK RESİMLERİ DÜZELTME ── */
.drink-img {
    width: auto !important;
    height: 150px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

.menu-item:has(.drink-img) .menu-image-box {
    background: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 180px !important;
}

/* ── OLEKTİA BANNER ── */
.olektia-banner {
    background: var(--charcoal);
    padding: 20px 40px;
}

.olektia-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.olektia-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.olektia-logo-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
}

.olektia-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.olektia-logo-placeholder {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
}

.olektia-banner-text h4 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 3px;
}

.olektia-banner-text p {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.olektia-banner-btn {
    background: #fff;
    color: var(--charcoal);
    font-size: 12px;
    font-weight: 500;
    font-family: var(--font-sans);
    padding: 8px 18px;
    border-radius: 24px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--transition);
}

.olektia-banner-btn:hover {
    background: #F5F2EC;
}

@media (max-width: 600px) {
    .olektia-banner { padding: 16px 20px; }
    .olektia-banner-inner { flex-direction: column; align-items: flex-start; }
}

/* ── OLEKTİA INLINE BANNER ── */
.olektia-inline-banner {
    background: #1a1a1a;
    padding: 14px 40px;
}

.olektia-inline-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.olektia-inline-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.olektia-inline-logo {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-serif);
}

.olektia-inline-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.olektia-inline-text h5 {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.olektia-inline-text p {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
}

.olektia-inline-btn {
    background: #fff;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 500;
    font-family: var(--font-sans);
    padding: 7px 16px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background var(--transition);
}

.olektia-inline-btn:hover {
    background: #F5F2EC;
}

@media (max-width: 600px) {
    .olektia-inline-banner { padding: 14px 20px; }
    .olektia-inline-inner { flex-direction: column; align-items: flex-start; }
}

/* ── ŞEF + OLEKTİA 3 KOLON ── */
.home-chef-3col {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px;
    display: grid;
    grid-template-columns: 220px 1fr 200px;
    gap: 40px;
    align-items: center;
    border-top: 0.5px solid var(--border);
}

.home-chef-img-col {
    position: relative;
}

.home-chef-img-col .home-chef-img {
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.home-chef-img-col .home-chef-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-chef-bio {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-chef-olektia {
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    height: 260px;
}

.home-chef-olektia-logo {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-chef-olektia-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.olektia-logo-fallback {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    font-family: var(--font-serif);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-chef-olektia-tag {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .home-chef-3col {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .home-chef-img-col .home-chef-img {
        height: 200px;
    }
    .home-chef-olektia {
        height: auto;
        padding: 20px;
    }
}

/* ── OLEKTİA LOGO TAM OTURTMA ── */
.home-chef-olektia-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: var(--radius-lg) !important;
}

.olektia-logo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* ── OLEKTİA LOGO SEÇ 3 — şeffaf bg, çok padding ── */
.home-chef-olektia-logo {
    width: 90px !important;
    height: 90px !important;
    background: rgba(255,255,255,0.08) !important;
    border-radius: var(--radius-lg) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
    overflow: hidden !important;
}

.home-chef-olektia-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

/* ── OLEKTİA FOOTER BANNER LOGO ── */
.olektia-logo-box {
    width: 48px !important;
    height: 48px !important;
    background: rgba(255,255,255,0.08) !important;
    border-radius: var(--radius-md) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.olektia-logo-box img,
.olektia-logo-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* ── OLEKTİA INLINE LOGO (about us altı) ── */
.olektia-inline-logo {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.08) !important;
    border-radius: var(--radius-md) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 6px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.olektia-inline-logo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* ── 🤟 İKON BÜYÜTME ── */
.isl-icon {
    font-size: 40px !important;
}

.isl-icon-sm {
    font-size: 28px !important;
}

/* ── VIDEO MODAL MALZEME RESİMLERİ ── */
.modal-toppings-panel {
    padding: 12px 16px;
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
}

.modal-toppings-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.modal-toppings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-topping-item {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    border: 0.5px solid var(--border);
}

.modal-topping-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── GLUTEN-FREE BÖLÜMÜ ── */
.gluten-free-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F0F8F0;
    border: 0.5px solid #3B6D11;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--charcoal);
    line-height: 1.5;
}

.gf-badge {
    background: #3B6D11;
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}

.gf-tag {
    background: #3B6D11;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    padding: 1px 5px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 4px;
}

.gf-corner-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #3B6D11;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 10px;
    z-index: 3;
}

/* ── SMS BİLDİRİM NOTU ── */
.cart-sms-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #E6F1FB;
    border: 0.5px solid #185FA5;
    border-radius: var(--radius-md);
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 12px;
    color: #185FA5;
    line-height: 1.5;
}

/* ── GF ROZET SOLA AL ── */
.gf-corner-badge {
    top: 6px !important;
    left: 6px !important;
    right: auto !important;
}

/* ── TOPPING İTEM EMOJİ ── */
.modal-topping-item {
    width: 64px !important;
    height: 80px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    background: #fff !important;
    border-radius: 8px !important;
    padding: 6px 4px !important;
    border: 0.5px solid var(--border) !important;
}

.modal-topping-item img {
    width: 40px !important;
    height: 40px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
}

.modal-topping-emoji {
    width: 40px !important;
    height: 40px !important;
    font-size: 28px !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.modal-topping-name {
    font-size: 9px !important;
    color: var(--charcoal-mid) !important;
    text-align: center !important;
    line-height: 1.2 !important;
    font-family: var(--font-sans) !important;
}

/* ── BEĞENİ PANELİ ── */
.feedback-panel {
    margin-top: 16px;
    padding: 16px;
    background: var(--cream);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.feedback-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 14px;
    line-height: 1.4;
}

.feedback-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.feedback-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px 24px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    transition: all var(--transition);
    min-width: 90px;
}

.feedback-emoji {
    font-size: 40px;
    line-height: 1;
}

.feedback-happy:hover, .feedback-happy:active {
    background: #F0FFF0;
    border-color: #3B6D11;
    color: #3B6D11;
    transform: scale(1.05);
}

.feedback-sad:hover, .feedback-sad:active {
    background: #FFF0F0;
    border-color: #B85C2A;
    color: #B85C2A;
    transform: scale(1.05);
}

.feedback-thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 8px;
}

.feedback-thanks span {
    font-size: 32px;
}


/* ── BİRLEŞİK MALZEME + ALERJİ PANELİ ── */
.modal-unified-panel {
    padding: 14px 16px;
    background: var(--cream);
    border-top: 0.5px solid var(--border);
}

.modal-ingredients-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.modal-ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.modal-ingredient-item {
    width: 68px;
    min-height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 4px;
    border: 0.5px solid var(--border);
    cursor: pointer;
    position: relative;
    transition: all 0.15s;
}

.modal-ingredient-item:hover {
    border-color: var(--terracotta);
}

.modal-ingredient-item.excluded {
    background: #FDF2EC;
    border-color: var(--terracotta);
    opacity: 0.7;
}

.modal-ingredient-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

.modal-ingredient-remove {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--terracotta);
    color: #fff;
    border-radius: 50%;
    font-size: 10px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.modal-allergen-item {
    background: #FFF8F0 !important;
    border-color: #E5A060 !important;
}

.modal-allergen-item.modal-allergen-selected {
    background: #FDF2EC !important;
    border-color: var(--terracotta) !important;
}

.modal-allergen-remove {
    background: #E5A060 !important;
    font-size: 12px !important;
}

/* ── VIDEO MODALINDAKİ MALZEME KARTLARI HAREKETLİ ── */
.modal-ingredient-item {
    animation: ingredient-pop 0.4s ease-out forwards;
    animation-delay: calc(var(--i, 0) * 0.08s);
    opacity: 0;
    transform: scale(0.8);
}

@keyframes ingredient-pop {
    0% { opacity: 0; transform: scale(0.8) translateY(8px); }
    70% { transform: scale(1.08) translateY(-2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-ingredient-item:not(.excluded):hover {
    animation: ingredient-wiggle 0.4s ease-in-out;
}

@keyframes ingredient-wiggle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.05); }
    75% { transform: rotate(5deg) scale(1.05); }
}

.modal-ingredient-item img,
.modal-topping-emoji {
    transition: transform 0.2s ease;
}

.modal-ingredient-item:hover img,
.modal-ingredient-item:hover .modal-topping-emoji {
    transform: scale(1.15);
}

.modal-allergen-item {
    animation: allergen-pulse 2s ease-in-out infinite !important;
}

@keyframes allergen-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(184,92,42,0.3); }
    50% { transform: scale(1.04); box-shadow: 0 0 0 6px rgba(184,92,42,0); }
}

/* ── VIDEO MODAL UNIFIED PANEL DÜZELTME ── */
.modal-unified-panel {
    background: #1a1a1a !important;
    border-top: 0.5px solid rgba(255,255,255,0.1) !important;
    padding: 16px !important;
}

.modal-ingredients-label {
    color: rgba(255,255,255,0.7) !important;
}

.modal-allergen-tip {
    color: rgba(255,255,255,0.4) !important;
    font-size: 11px !important;
    margin-top: 8px !important;
}

.modal-ingredient-item {
    background: rgba(255,255,255,0.08) !important;
    border: 0.5px solid rgba(255,255,255,0.15) !important;
}

.modal-ingredient-item:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.modal-topping-name {
    color: rgba(255,255,255,0.8) !important;
}

/* Hover'da kaybolma sorunu — opacity kaldır */
.modal-ingredient-item:not(.excluded):hover {
    animation: none !important;
    opacity: 1 !important;
}

.modal-ingredient-item:hover img,
.modal-ingredient-item:hover .modal-topping-emoji {
    transform: scale(1.15) !important;
    opacity: 1 !important;
}

/* Seçilince kırmızımsı arka plan */
.modal-ingredient-item.excluded {
    background: rgba(184,92,42,0.3) !important;
    border-color: var(--terracotta) !important;
    opacity: 1 !important;
}

/* Allerjen pulse - opacity 1 sabit */
.modal-allergen-item {
    background: rgba(229,160,96,0.15) !important;
    border-color: rgba(229,160,96,0.5) !important;
    animation: allergen-pulse 2s ease-in-out infinite !important;
}

@keyframes allergen-pulse {
    0%, 100% { transform: scale(1); border-color: rgba(229,160,96,0.5); }
    50% { transform: scale(1.06); border-color: rgba(229,160,96,1); }
}

/* ── GLUTEN & LAKTOZ UYARI İKONLARI ── */
.modal-ingredient-item[data-key="img-gluten"],
.modal-ingredient-item[data-key="img-lactose"] {
    background: rgba(229,160,96,0.15) !important;
    border-color: rgba(229,160,96,0.6) !important;
    animation: allergen-pulse 2s ease-in-out infinite !important;
}

.modal-ingredient-item[data-key="img-gluten"] .modal-topping-name,
.modal-ingredient-item[data-key="img-lactose"] .modal-topping-name {
    color: #E5A060 !important;
    font-weight: 500 !important;
}

/* ── GLUTEN & LAKTOZ HOVER KAYBOLMA DÜZELTMESİ ── */
.modal-ingredient-item[data-key="img-gluten"]:hover,
.modal-ingredient-item[data-key="img-lactose"]:hover {
    opacity: 1 !important;
    animation: allergen-pulse 2s ease-in-out infinite !important;
}

.modal-ingredient-item[data-key="img-gluten"] .modal-topping-emoji,
.modal-ingredient-item[data-key="img-lactose"] .modal-topping-emoji,
.modal-ingredient-item[data-key="img-gluten"] img,
.modal-ingredient-item[data-key="img-lactose"] img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ── MALZEME KARTLARI - SABİT GÖRÜNÜM, ANİMASYON KALDIRILDI ── */
.modal-ingredient-item {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.modal-ingredient-item img {
    display: none !important;
}

.modal-topping-emoji {
    display: flex !important;
    font-size: 32px !important;
    width: 40px !important;
    height: 40px !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal-ingredient-item:hover {
    opacity: 1 !important;
    transform: scale(1.05) !important;
    transition: transform 0.15s !important;
}

.modal-ingredient-item:hover .modal-topping-emoji {
    transform: none !important;
}

/* Gluten ve laktoz her zaman görünsün */
.modal-ingredient-item[data-key="img-gluten"] .modal-topping-emoji,
.modal-ingredient-item[data-key="img-lactose"] .modal-topping-emoji {
    display: flex !important;
    opacity: 1 !important;
}


/* El işareti DIŞARIDA - kartın sağ üstünde */
.cp-ear-top {
    position: absolute !important;
    top: -12px !important;
    right: -12px !important;
    left: auto !important;
    width: 36px !important;
    height: 36px !important;
    background: #fff !important;
    border: 2px solid var(--border) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 5 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
}

.cp-ear-top .isl-icon-sm {
    font-size: 18px !important;
}

/* Büyük kare resim alanı */
.cp-item-emoji {
    width: 120px !important;
    height: 100px !important;
    border-radius: 10px !important;
    background: #EAE6DE !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 52px !important;
    line-height: 1 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

/* Gerçek resim varsa */
.cp-item-v img.cp-topping-img {
    width: 120px !important;
    height: 100px !important;
    border-radius: 10px !important;
    object-fit: cover !important;
    display: block !important;
}

/* İsim ve fiyat altında */
.cp-name-bottom {
    width: 100% !important;
    text-align: center !important;
    padding: 6px 2px 0 !important;
    font-size: 12px !important;
    color: var(--charcoal) !important;
    line-height: 1.3 !important;
    pointer-events: none !important;
}

.cp-item-price {
    font-size: 12px !important;
    color: var(--charcoal-mid) !important;
    text-align: center !important;
    margin-top: 2px !important;
    pointer-events: none !important;
}

.cp-item-price {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 2px;
}

.cp-free-tag {
    font-size: 10px;
    color: #3B6D11;
    background: #F0FFF0;
    padding: 1px 6px;
    border-radius: 10px;
    display: inline-block;
}

/* ── CP EAR BUTON DÜZELTME ── */
.cp-ear-top {
    top: -16px !important;
    right: -16px !important;
    width: 44px !important;
    height: 44px !important;
    background: #fff !important;
    border: 2px solid #ddd !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
    z-index: 10 !important;
}

.cp-ear-top .isl-icon-sm {
    font-size: 22px !important;
}

/* Kart overflow hidden kaldır - ear butonu görünsün */
.cp-item-v {
    overflow: visible !important;
    margin: 16px 16px 0 0 !important;
}


/* ── CP MALZEME KARTI - TEMİZ ── */
.cp-item-v {
    width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
    overflow: visible;
    margin: 16px 16px 0 0;
}

.cp-item-v.cp-selected .cp-item-emoji {
    outline: 3px solid #B85C2A;
}

.cp-item-emoji {
    width: 110px;
    height: 90px;
    border-radius: 10px;
    background: #EAE6DE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    overflow: hidden;
    flex-shrink: 0;
}

.cp-item-emoji img {
    width: 110px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    flex-shrink: 0;
}

.cp-item-emoji svg {
    width: 60px;
    height: 60px;
}

.cp-name-bottom {
    width: 110px;
    text-align: center;
    font-size: 11px;
    padding: 5px 2px 0;
    line-height: 1.3;
    color: var(--charcoal);
}

.cp-item-price {
    font-size: 11px;
    color: #888;
    text-align: center;
    margin-top: 1px;
}

.cp-ear-top {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
}

.cp-ear-top .isl-icon-sm {
    font-size: 20px;
    filter: none !important;
}

/* ── VIDEO MODAL GERÇEK RESİMLER ── */
.modal-topping-real-img {
    width: 44px !important;
    height: 44px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    display: block !important;
}

/* ── MODAL TOPPING EMOJI İÇİNDEKİ RESİM ── */
.modal-topping-emoji img.modal-topping-real-img {
    width: 44px !important;
    height: 44px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
    display: block !important;
}

.modal-topping-emoji {
    width: 44px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    border-radius: 8px !important;
}

/* ── CUSTOM PIZZA YENİ HEADER ── */
.cp-top-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 0;
    border-bottom: 0.5px solid var(--border);
}

.cp-top-left {
    padding: 28px 28px;
}

.cp-top-left h1 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    color: var(--charcoal);
    margin: 10px 0 0;
}

.cp-top-right {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    text-align: center;
}

.cp-video-ear-btn {
    background: rgba(255,255,255,0.1);
    border: 0.5px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.cp-video-ear-btn:hover {
    background: rgba(255,255,255,0.2);
}

.cp-top-right .cp-top-banner-title {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
}

.cp-top-right .cp-top-banner-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
    .cp-top-content {
        grid-template-columns: 1fr;
    }
    .cp-top-right {
        flex-direction: row;
        padding: 16px;
        gap: 16px;
        text-align: left;
    }
}

/* ── CUSTOM PIZZA HEADER SEÇ 2 — KOYU KAHVE + TERRACOTTA ── */
.cp-top-content {
    border-radius: 0 !important;
}

.cp-top-left {
    background: #2a1a0a !important;
    padding: 28px 32px !important;
}

.cp-top-left .about-tag {
    background: rgba(255,255,255,0.1) !important;
    color: rgba(255,255,255,0.7) !important;
    border: none !important;
}

.cp-top-left h1 {
    color: #fff !important;
    margin-bottom: 16px !important;
}

.cp-top-left .eat-safe-num {
    background: #B85C2A !important;
}

.cp-top-left .eat-safe-step p {
    color: rgba(255,255,255,0.8) !important;
}

.cp-top-left .eat-safe-step strong {
    color: #fff !important;
}

.cp-top-right {
    background: #B85C2A !important;
}

.cp-video-ear-btn {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.3) !important;
}

.cp-top-right .cp-top-banner-title {
    color: #fff !important;
    font-size: 13px !important;
}

.cp-top-right .cp-top-banner-sub {
    color: rgba(255,255,255,0.65) !important;
}

/* Header koyu */
.menu-header,
menu.html .header,
header {
    background: #1a1a1a !important;
}

header .logo {
    color: #fff !important;
}

header .nav-item {
    color: rgba(255,255,255,0.5) !important;
}

header .nav-item.active,
header .nav-item:hover {
    color: #fff !important;
}

header .lang-btn {
    color: rgba(255,255,255,0.5) !important;
    background: transparent !important;
}

header .lang-btn.active {
    background: #fff !important;
    color: #1a1a1a !important;
}

header .order-now-btn {
    background: #B85C2A !important;
    color: #fff !important;
}

/* Info bar terracotta gradient */
.menu-info-bar {
    background: linear-gradient(90deg, #B85C2A, #8B3A00) !important;
    border-bottom: none !important;
}

.menu-info-btn {
    color: #fff !important;
    font-weight: 500 !important;
}

.menu-info-btn:hover {
    background: rgba(255,255,255,0.1) !important;
}

.menu-info-divider {
    background: rgba(255,255,255,0.2) !important;
}

/* 🤟 info bar'da mavi filtre kaldır — beyaz görünsün */
.menu-info-btn .isl-icon {
    filter: brightness(10) !important;
}

/* Info bar açık teal */
.menu-info-bar {
    background: #e0f2f1 !important;
    border-bottom: 0.5px solid #4DB6AC !important;
}

.menu-info-btn {
    color: #004D40 !important;
    font-weight: 500 !important;
}

.menu-info-btn:hover {
    background: #b2dfdb !important;
}

.menu-info-divider {
    background: #4DB6AC !important;
}

/* 🤟 ikonunu mavi filtre kaldır */
.menu-info-btn .isl-icon {
    filter: none !important;
}

/* Info bar */
.menu-info-bar {
    background: #FCF0E8 !important;
    border-bottom: 2px solid #A0522D !important;
}

.menu-info-btn {
    color: #4A1500 !important;
    font-weight: 500 !important;
}

.menu-info-btn:hover {
    background: #F5DEC8 !important;
}

.menu-info-divider {
    background: #A0522D !important;
}

.menu-info-btn .isl-icon {
    filter: none !important;
}

/* ── HEADER BEJ & KUM TONU ── */
header {
    background: linear-gradient(90deg, #C4A882, #D4B896) !important;
    border-bottom: none !important;
}

header .logo {
    color: #3a2010 !important;
}

header .nav-item {
    color: rgba(58,32,16,0.55) !important;
}

header .nav-item.active,
header .nav-item:hover {
    color: #3a2010 !important;
}

header .lang-btn {
    color: rgba(58,32,16,0.55) !important;
    background: transparent !important;
    border: none !important;
}

header .lang-btn.active {
    background: rgba(58,32,16,0.15) !important;
    color: #3a2010 !important;
}

header .order-now-btn {
    background: #6F4E37 !important;
    color: #fff !important;
    font-weight: 700 !important;
}

header .header-cart-btn {
    background: rgba(58,32,16,0.15) !important;
    color: #3a2010 !important;
}

header .header-cart-count {
    background: #6F4E37 !important;
    color: #fff !important;
}

/* Info bar */
.menu-info-bar {
    background: #F5ECD8 !important;
    border-bottom: 2px solid #C4A882 !important;
}

.menu-info-btn {
    color: #4A3020 !important;
    font-weight: 500 !important;
}

.menu-info-btn:hover {
    background: #EAD9B8 !important;
}

.menu-info-divider {
    background: #C4A882 !important;
}

.menu-info-btn .isl-icon {
    filter: none !important;
}

/* ── VİDEO MODAL ORDER BAR ── */
.modal-order-bar {
    background: #B85C2A;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.modal-order-price {
    color: #fff;
    font-size: 13px;
    opacity: 0.9;
}

.modal-order-price strong {
    font-size: 18px;
    font-weight: 600;
    margin-left: 6px;
    opacity: 1;
}

.modal-order-btn {
    background: #fff;
    color: #B85C2A;
    border: none;
    border-radius: 20px;
    padding: 9px 22px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-sans);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.modal-order-btn:hover {
    background: #FDF2EC;
}

/* ── VİDEO MODAL TAM EKRAN DÜZELTME ── */
.modal {
    align-items: stretch !important;
    padding: 0 !important;
}

.modal .modal-content {
    width: 100% !important;
    max-width: 640px !important;
    max-height: 100vh !important;
    height: 100vh !important;
    margin: 0 auto !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.modal .modal-content video {
    flex-shrink: 0 !important;
    max-height: 40vh !important;
}

.modal-unified-panel,
.modal-allergen-panel {
    flex: 1 !important;
    overflow-y: auto !important;
}

.modal-order-bar {
    flex-shrink: 0 !important;
    position: sticky !important;
    bottom: 0 !important;
}

.close-modal {
    position: absolute !important;
    top: 10px !important;
    right: 14px !important;
    z-index: 100 !important;
    color: #fff !important;
    font-size: 28px !important;
    background: rgba(0,0,0,0.4) !important;
    border-radius: 50% !important;
    width: 36px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    line-height: 1 !important;
}

/* ── VİDEO MODAL İÇERİĞE GÖRE BOYUT ── */
.modal {
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.modal .modal-content {
    width: 100% !important;
    max-width: 640px !important;
    height: auto !important;
    max-height: 92vh !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
}

.modal .modal-content video {
    flex-shrink: 0 !important;
    max-height: 45vh !important;
    width: 100% !important;
}

.modal-unified-panel,
.modal-allergen-panel {
    flex: 0 1 auto !important;
    overflow-y: auto !important;
    max-height: 40vh !important;
}

/* ── TAM EKRAN SEPET MODAL ── */
.cart-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-modal {
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 760px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cart-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 0.5px solid var(--border);
    flex-shrink: 0;
}

.cart-modal-head .cart-panel-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--charcoal);
}

.cart-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: 0.5px solid var(--border);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
}

.cart-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    flex: 1;
}

.cart-modal-left {
    padding: 20px 24px;
    border-right: 0.5px solid var(--border);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-modal-right {
    padding: 20px 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-modal-right .cart-form-row label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--charcoal-mid);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.cart-modal-right input,
.cart-modal-right textarea {
    width: 100%;
    padding: 10px 12px;
    border: 0.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--charcoal);
    background: var(--white);
}

.cart-modal-right textarea {
    height: 64px;
    resize: none;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
    color: var(--charcoal);
    padding: 12px 0;
    border-top: 0.5px solid var(--border);
    margin-top: auto;
}

.cart-modal-right .pay-methods {
    display: flex;
    gap: 6px;
    justify-content: center;
}

@media (max-width: 600px) {
    .cart-modal-body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
    .cart-modal-left {
        border-right: none;
        border-bottom: 0.5px solid var(--border);
        max-height: 40vh;
    }
}

/* ── SEPET SATIRI RESİMLİ ── */
.cart-row {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 10px 0 !important;
    border-bottom: 0.5px solid var(--border) !important;
}

.cart-row-img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
}

.cart-row-img-placeholder {
    width: 56px !important;
    height: 56px !important;
    border-radius: 8px !important;
    background: var(--cream) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 24px !important;
    flex-shrink: 0 !important;
}

.cart-row-info {
    flex: 1 !important;
}

.cart-row-name {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--charcoal) !important;
    margin-bottom: 2px !important;
}

.cart-row-extras {
    font-size: 12px !important;
    color: var(--charcoal-mid) !important;
    margin-bottom: 2px !important;
}

.cart-row-qty {
    font-size: 12px !important;
    color: var(--charcoal-mid) !important;
}

.cart-row-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 4px !important;
}

.cart-row-price {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--charcoal) !important;
}

.cart-row-remove {
    background: none !important;
    border: none !important;
    color: var(--charcoal-mid) !important;
    cursor: pointer !important;
    font-size: 12px !important;
    padding: 2px 4px !important;
}

/* ── EXTRA TOPPING RESİMLERİ ── */
.pm-extra-icon img {
    width: 32px !important;
    height: 32px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    display: block !important;
}

.pm-extra-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
}

.pm-extra-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    padding: 8px !important;
    min-width: 72px !important;
}

/* ── CUSTOM PIZZA - ÜSTTE SABİT ÖZET BAR ── */
.custom-pizza-inner {
    display: block !important;
}

.custom-pizza-right {
    display: none !important;
}

.cp-sticky-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.2);
}

/* Sayfanın altına boşluk - sticky bar üzerine binmesin */
.custom-pizza-inner {
    padding-bottom: 90px;
}

.cp-sticky-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}

.cp-sticky-tag {
    background: rgba(255,255,255,0.12);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
}

.cp-sticky-empty {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.cp-sticky-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cp-sticky-price {
    font-size: 18px;
    font-weight: 600;
}

.cp-sticky-btn {
    background: #B85C2A;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.cp-sticky-back {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
}

/* Seçili malzeme kartı vurgusu */
.cp-item-v.cp-selected .cp-item-emoji {
    outline: 3px solid #B85C2A;
}

.cp-item-v.cp-selected {
    position: relative;
}

.cp-selected-check {
    position: absolute;
    top: -8px;
    left: -8px;
    background: #B85C2A;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    z-index: 6;
}

@media (max-width: 700px) {
    .cp-sticky-summary {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .cp-sticky-right {
        justify-content: space-between;
    }
}

/* ── SİPARİŞ MODALI - KOYU ESPRESSO TEMA ── */
.cart-modal {
    background: #241813 !important;
}

.cart-modal-head {
    border-bottom: 0.5px solid rgba(255,255,255,0.1) !important;
}

.cart-modal-head .cart-panel-title {
    color: #fff !important;
}

.cart-modal-close {
    background: rgba(255,255,255,0.1) !important;
    border: none !important;
    color: #fff !important;
}

.cart-modal-left {
    border-right: 0.5px solid rgba(255,255,255,0.1) !important;
}

/* Takeaway/Delivery butonları */
.ot-btn {
    background: rgba(255,255,255,0.06) !important;
    color: rgba(255,255,255,0.7) !important;
    border: 0.5px solid rgba(255,255,255,0.15) !important;
}

.ot-btn.active {
    background: #B85C2A !important;
    color: #fff !important;
    border-color: #B85C2A !important;
}

/* Sepet satırları */
.cart-row {
    border-bottom: 0.5px solid rgba(255,255,255,0.08) !important;
}

.cart-row-name {
    color: #fff !important;
}

.cart-row-extras,
.cart-row-qty {
    color: rgba(255,255,255,0.5) !important;
}

.cart-row-price {
    color: #fff !important;
}

.cart-row-remove {
    color: rgba(255,255,255,0.4) !important;
}

.cart-row-img-placeholder {
    background: rgba(255,255,255,0.06) !important;
}

.cart-empty {
    color: rgba(255,255,255,0.5) !important;
}

.cart-total-row {
    color: #fff !important;
    border-top: 0.5px solid rgba(255,255,255,0.1) !important;
}

/* Form alanları */
.cart-modal-right .cart-form-row label {
    color: rgba(255,255,255,0.6) !important;
}

.cart-modal-right input,
.cart-modal-right textarea {
    background: rgba(255,255,255,0.06) !important;
    border: 0.5px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
}

.cart-modal-right input::placeholder,
.cart-modal-right textarea::placeholder {
    color: rgba(255,255,255,0.3) !important;
}

/* Email bildirim kutusu */
.cart-sms-notice {
    background: rgba(184,92,42,0.15) !important;
    border: 0.5px solid #B85C2A !important;
    color: #E8C8A8 !important;
}

.cart-sms-notice p {
    color: #E8C8A8 !important;
}

.cart-sms-notice strong {
    color: #fff !important;
}

/* Pay methods tags */
.pay-tag {
    background: rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.7) !important;
}

/* Feedback panel */
.feedback-panel {
    background: rgba(255,255,255,0.05) !important;
}

.feedback-title {
    color: #fff !important;
}

.feedback-btn {
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
}

/* ══════════════════════════════════════════════
   REFERANS UYGULAMA MODU
   Restoran faaliyeti Haziran 2026'da sona erdi.
   Site artık Olektia'nın işaret dili erişilebilirlik
   çözümünün referans uygulaması olarak yayında.
   ══════════════════════════════════════════════ */

/* ── ÜST BİLGİLENDİRME BANDI (her sayfada, kapatılamaz) ── */
.ek-notice-bar {
    background: linear-gradient(90deg, #B85C2A, #8B3A00);
    color: #fff;
    padding: 14px 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.ek-notice-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.ek-notice-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.ek-notice-text {
    flex: 1;
    font-size: 13.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
}

.ek-notice-text strong {
    display: block;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.ek-notice-link {
    flex-shrink: 0;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: var(--radius-sm);
    color: #fff;
    transition: background var(--transition), border-color var(--transition);
}

.ek-notice-link:hover {
    background: #fff;
    border-color: #fff;
    color: #8B3A00;
}

@media (max-width: 780px) {
    .ek-notice-bar { padding: 12px 20px; }
    .ek-notice-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
    .ek-notice-text { font-size: 13px; }
}

/* ── DEMO NOTU (menü başlıklarının üstünde) ── */
.demo-note {
    max-width: 1100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--terracotta-light);
    border: 0.5px solid var(--terracotta);
    border-left: 3px solid var(--terracotta);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--charcoal);
}

.demo-note-icon {
    font-size: 16px;
    line-height: 1.4;
    flex-shrink: 0;
}

.demo-note strong { color: var(--terracotta); }

/* ── DEMO ROZETİ ── */
.demo-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    vertical-align: middle;
    padding: 3px 8px;
    border-radius: 2px;
    background: var(--terracotta);
    color: #fff;
}

.demo-tag-soft {
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ── DEMO ÖDEME SONUCU PANELİ ── */
.demo-checkout-result {
    margin-top: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    color: #fff;
}

.demo-checkout-result h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #fff;
}

.demo-checkout-result p {
    font-size: 12.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

.demo-checkout-result a {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    background: var(--terracotta);
    color: #fff;
}

.demo-checkout-result a:hover { background: #9d4d22; }

/* ══════════════════════════════════════════════
   REFERANS VAKA SAYFASI (how-it-works.html)
   ══════════════════════════════════════════════ */

/* ── VAKA HERO ── */
.cs-hero {
    background: var(--cream);
    border-bottom: 0.5px solid var(--border);
    padding: 72px 40px 64px;
}

.cs-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cs-title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.18;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.cs-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--charcoal-mid);
    max-width: 700px;
    margin: 0 auto;
}

.cs-hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.cs-ghost-btn {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.cs-ghost-btn:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

/* ── BÖLÜM İSKELETİ ── */
.cs-section {
    padding: 64px 40px;
    border-bottom: 0.5px solid var(--border);
}

.cs-section-alt { background: var(--cream); }

.cs-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.cs-inner-narrow {
    max-width: 780px;
    margin: 0 auto;
}

.cs-h2 {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.cs-body {
    font-size: 15px;
    line-height: 1.8;
    color: var(--charcoal-mid);
    margin-bottom: 14px;
}

.cs-body strong { color: var(--charcoal); font-weight: 500; }

/* ── KAPSAM SAYILARI ── */
.cs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.cs-stat {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 20px;
    text-align: center;
}

.cs-stat-num {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
    color: var(--terracotta);
    display: block;
    margin-bottom: 8px;
}

.cs-stat-label {
    display: block;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--charcoal-mid);
}

.cs-stat-note {
    font-size: 12.5px;
    color: var(--charcoal-mid);
    text-align: center;
    margin-top: 18px;
    opacity: 0.85;
}

/* ── İKİ SÜTUNLU KART IZGARASI ── */
.cs-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.cs-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px 26px 24px;
}

.cs-section-alt .cs-card { background: var(--white); }

.cs-card h3 {
    font-family: var(--font-serif);
    font-size: 19px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.cs-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal-mid);
}

/* ── TEKNİK ADIM LİSTESİ ── */
.cs-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

.cs-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cs-step-num {
    width: 28px;
    height: 28px;
    background: var(--terracotta);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cs-step-text h4 {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 3px;
}

.cs-step-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal-mid);
}

.cs-step-text code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12.5px;
    background: var(--cream-dark);
    border-radius: var(--radius-sm);
    padding: 1px 5px;
}

/* ── KİMLER İÇİN UYGUN ── */
.cs-audience {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.cs-aud-card {
    background: var(--white);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 18px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.cs-aud-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.06);
}

.cs-aud-icon {
    font-size: 28px;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}

.cs-aud-card h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.cs-aud-card p {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--charcoal-mid);
}

/* ── KAPANIŞ ÇAĞRISI ── */
.cs-cta {
    background: var(--charcoal);
    padding: 68px 40px;
    text-align: center;
}

.cs-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.cs-cta h2 {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 14px;
}

.cs-cta p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
}

.cs-cta-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 15px 34px;
    background: var(--terracotta);
    color: #fff;
    border-radius: var(--radius-sm);
    transition: background var(--transition), transform var(--transition);
}

.cs-cta-btn:hover {
    background: #9d4d22;
    transform: translateY(-1px);
}

.cs-cta-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
    margin: 18px 0 0;
}

/* ── ANA SAYFADAKİ VAKA BANDI ── */
.cs-teaser {
    background: var(--white);
    border-top: 0.5px solid var(--border);
    padding: 56px 40px;
}

.cs-teaser-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--cream);
    border: 0.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 36px;
}

.cs-teaser-text h3 {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.cs-teaser-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal-mid);
    max-width: 620px;
}

.cs-teaser-btn { flex-shrink: 0; }

@media (max-width: 900px) {
    .cs-hero { padding: 48px 20px 44px; }
    .cs-title { font-size: 32px; }
    .cs-section { padding: 48px 20px; }
    .cs-h2 { font-size: 25px; }
    .cs-stats { grid-template-columns: 1fr 1fr; }
    .cs-grid-2 { grid-template-columns: 1fr; }
    .cs-audience { grid-template-columns: 1fr 1fr; }
    .cs-cta { padding: 52px 20px; }
    .cs-cta h2 { font-size: 26px; }
    .cs-teaser { padding: 40px 20px; }
    .cs-teaser-inner { flex-direction: column; align-items: flex-start; padding: 26px 24px; }
}

@media (max-width: 560px) {
    .cs-audience { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   YASAL / ŞİRKET BİLGİSİ (her sayfanın footer'ında)
   ══════════════════════════════════════════════ */
.ek-legal {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

.ek-legal strong {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

/* Sade footer — menu.html ve custom-pizza.html gibi tam footer'ı olmayan sayfalar için */
.site-footer-compact .footer-bottom {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border-top: none;
    padding: 26px 40px;
}

.site-footer-compact .ek-legal { margin-top: 0; }

.footer-compact-links {
    display: flex;
    gap: 18px;
    flex-shrink: 0;
}

.footer-compact-links a {
    color: rgba(255,255,255,0.45);
    transition: color var(--transition);
}

.footer-compact-links a:hover { color: #fff; }

@media (max-width: 700px) {
    .site-footer-compact .footer-bottom { padding: 22px 20px; }
}
