:root {
    /* ZUS Logo Tema Renkleri */
    --zus-primary: #DB3F5D;      /* Pembe/Kırmızı - Ana vurgu rengi */
    --zus-secondary: #00BFFF;    /* Cyan/Mavi - İkincil vurgu */
    --zus-accent: #FF6B35;       /* Turuncu/Kırmızı - Hover efektleri */
    --zus-dark: #0A0A0A;         /* Koyu siyah - Arka plan */
    --zus-dark-secondary: #1a1a1a; /* Koyu gri - İkincil arka plan */
    --zus-gold-light: #FF6B8A;   /* Açık pembe - Parlak efektler */
    --zus-gold-dark: #B82E4A;    /* Koyu pembe - Derinlik */
}

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

html {
    height: 100%;
    height: -webkit-fill-available;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    -webkit-overflow-scrolling: touch;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100%;
    min-height: -webkit-fill-available;
    font-family: 'Ubuntu', 'Segoe UI', sans-serif;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    color: #fff;
    position: relative;
    min-width: 100%;
    max-width: 100vw;
    background: var(--zus-dark);
}

/* Ana giriş: tam ekran; body’de modal/footer kardeşi olduğu için flex yerine .home-page’e sabit yükseklik */
body.zus-home-page {
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    overflow: hidden;
    position: relative;
}

body.zus-detail-page {
    height: 100%;
    overflow: hidden;
}

/* Ana Giriş Sayfası — viewport kadar (kardeş fixed modal akışı bölemez) */
.home-page {
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2C1810 0%, #1a0f0a 100%);
    background-image: url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px);
    transform: scale(1.08);
    z-index: 1;
}

.background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.home-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding: max(0.75rem, env(safe-area-inset-top, 0.75rem)) max(1rem, env(safe-area-inset-right, 1rem)) max(1.25rem, calc(env(safe-area-inset-bottom, 0.75rem) + 0.75rem)) max(1rem, env(safe-area-inset-left, 1rem));
    box-sizing: border-box;
}

/* Ana sayfa sağ üst dil (sosyal ikon stiline yakın) */
.home-lang-switch {
    position: absolute;
    top: max(12px, env(safe-area-inset-top, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 6px;
    font-family: 'Ubuntu', 'Segoe UI', sans-serif;
    transition: color 0.2s ease, background 0.2s ease;
}

.home-lang-btn:hover,
.home-lang-btn.is-active {
    color: #fff;
}

.home-lang-btn.is-active {
    background: rgba(219, 63, 93, 0.35);
}

.home-lang-sep {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    user-select: none;
}

/* Hamburger panel içi: ana sayfadaki TR|EN ile aynı; absolute konum kapalı */
.home-lang-switch.home-lang-switch--in-hamburger {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: auto;
    margin: 0 auto 0.25rem;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
}

/* Ana başlık + MENÜ etiketi */
.main-title-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
}

.home-page .main-title-block {
    margin-bottom: clamp(0.75rem, 2.5vh, 1.5rem);
}

.main-title-block .main-title {
    margin-bottom: 14px;
}

.home-page .main-title-block .main-title {
    margin-bottom: clamp(0.5rem, 2vh, 0.875rem);
}

/* Ana Başlık - Animasyonlu */
.main-title {
    background: none;
    border: none;
    color: #fff;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    cursor: pointer;
    margin-bottom: 60px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    animation: breathe 3s ease-in-out infinite;
    font-family: 'Georgia', serif;
}

.home-page .main-title {
    font-size: clamp(1.85rem, 9vw, 3.5rem);
    margin-bottom: clamp(0.75rem, 3vh, 3rem);
    letter-spacing: clamp(0.05em, 0.5vw, 2px);
    width: 100%;
    max-width: 100%;
    padding-inline: 0.25rem;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.home-menu-hint {
    display: inline-block;
    margin: 0;
    padding: 10px 22px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    cursor: pointer;
    font-family: 'Ubuntu', 'Segoe UI', sans-serif;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.home-menu-hint:hover {
    border-color: var(--zus-primary);
    background: rgba(219, 63, 93, 0.15);
    color: #fff;
    transform: scale(1.03);
}

.main-title:hover {
    transform: scale(1.05);
    color: var(--zus-primary);
    text-shadow: 0 0 20px rgba(219, 63, 93, 0.6), 2px 2px 10px rgba(0, 0, 0, 0.5);
}

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

/* Sosyal Medya İkonları */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    justify-content: center;
}

.home-page .social-links {
    margin-top: clamp(0.5rem, 2vh, 1.25rem);
}

.social-links:empty {
    display: none;
}

.hamburger-social:empty {
    display: none;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--zus-primary);
    color: var(--zus-primary);
    box-shadow: 0 0 20px rgba(219, 63, 93, 0.4);
}

/* Menü Seçim Paneli — üst çizgi siyah (iOS adres çubuğu tema rengine kırmızı yansımasın) */
.menu-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--zus-dark) 0%, var(--zus-dark-secondary) 100%);
    border-radius: 30px 30px 0 0;
    padding: 25px 20px max(30px, env(safe-area-inset-bottom, 30px)) 20px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.65);
    max-height: 80vh;
    overflow-y: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.85);
    outline: 0 solid transparent;
}

.menu-panel.active {
    transform: translateY(0);
}

.menu-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-panel-header h2 {
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.close-btn:hover {
    transform: rotate(90deg);
    color: var(--zus-primary);
}

.menu-options {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.menu-panel-group {
    margin-bottom: 1.25rem;
}
.menu-panel-group:last-child {
    margin-bottom: 0;
}
.menu-panel-group-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--zus-primary);
    padding: 12px 15px 8px;
    margin: 0;
    border-bottom: 1px solid rgba(219, 63, 93, 0.25);
}

.menu-option:hover {
    background: rgba(219, 63, 93, 0.1);
    padding-left: 25px;
    color: var(--zus-primary);
}

.menu-option .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.menu-option:hover .arrow {
    transform: translateX(10px);
    color: var(--zus-primary);
}

/* Kategori Sayfası */
.category-page {
    min-height: 100vh;
    background: var(--zus-dark);
    padding: 0.75rem;
}

/* Detay sayfası: üst sabit, alt içerik scroll */
body.zus-detail-page .category-page.zus-detail-layout {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 0;
}
body.zus-detail-page .category-page.zus-detail-layout .category-header {
    flex-shrink: 0;
    margin: 0;
    padding: 15px 20px;
}
body.zus-detail-page .category-page.zus-detail-layout .search-section {
    flex-shrink: 0;
    padding: 0 1rem;
    margin: 0;
    background: var(--zus-dark);
}

/* Alerjen / yasal uyarı (translations.allergen_notice) */
.zus-allergen-notice {
    margin: 1.5rem 0 2rem;
    padding: 1rem 1.1rem;
    max-width: 100%;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(219, 63, 93, 0.28);
    border-radius: 12px;
    font-size: 0.75rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.zus-allergen-notice-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 0.5rem;
}

.zus-allergen-notice-body {
    margin: 0;
}

/* Ürün satırı: alerjen / diyet etiketleri (pill) */
.zus-item-allergen-pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    max-width: 100%;
}

.zus-allergen-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.25;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    white-space: nowrap;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.78);
}

.zus-allergen-pill-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.zus-allergen-pill--allergen {
    border-color: rgba(219, 63, 93, 0.28);
    background: rgba(219, 63, 93, 0.12);
    color: rgba(255, 200, 210, 0.95);
}

.zus-allergen-pill--diet {
    border-color: rgba(120, 200, 160, 0.35);
    background: rgba(80, 160, 120, 0.15);
    color: rgba(200, 255, 220, 0.9);
}

.category-page .zus-allergen-notice {
    margin-left: 0;
    margin-right: 0;
}

.zus-price-note,
body.zus-detail-page .zus-price-note {
    display: block !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0.5rem 0 0.75rem 0 !important;
    text-align: center;
    padding: 0 0.5rem;
}
body.zus-detail-page .category-page.zus-detail-layout #zusCategoryContent {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
    padding-bottom: 5rem;
}

/* Yukarı kaydır butonu (detay sayfası) */
.zus-scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--zus-primary);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(219, 63, 93, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.2s ease;
}
.zus-scroll-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}
.zus-scroll-to-top:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(219, 63, 93, 0.6);
}
.zus-scroll-to-top:active {
    transform: scale(0.98);
}
.zus-scroll-to-top svg {
    width: 24px;
    height: 24px;
}

/* Kategori içeriği yüklenirken blur */
#zusCategoryContent.zus-content-loading {
    filter: blur(5px);
    opacity: 0.7;
    pointer-events: none;
    transition: filter 0.25s ease, opacity 0.25s ease;
}

.category-header {
    background: linear-gradient(135deg, var(--zus-dark) 0%, var(--zus-dark-secondary) 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -20px -20px 20px -20px;
    border-bottom: 2px solid var(--zus-primary);
    box-shadow: 0 2px 10px rgba(219, 63, 93, 0.1);
}

.back-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--zus-primary);
    transform: translateX(-5px);
}

.category-header-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
    padding-top: 0.75rem;
}

.category-header-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    text-transform: none;
    line-height: 1.3;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-parent-description {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    line-height: 1.45;
    margin: 0.15rem 0 0.35rem;
    padding: 0 0.5rem;
    text-transform: none;
    max-width: 100%;
}

.zus-parent-title-wrap {
    position: relative;
}

.category-title-parent-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    max-width: 100%;
    background: none;
    border: none;
    padding: 0.15rem 0.4rem;
    margin: 0;
    cursor: pointer;
    color: inherit;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

.category-title-parent-btn:hover,
.category-title-parent-btn:focus-visible {
    color: var(--zus-primary);
    outline: none;
}

.category-title--switcher {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: min(65vw, 240px);
}

.category-title-chevron {
    font-size: 0.55em;
    opacity: 0.9;
    flex-shrink: 0;
    line-height: 1;
}

.zus-parent-switch-popover {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 6px);
    min-width: min(92vw, 320px);
    max-width: 94vw;
    max-height: min(60vh, 420px);
    overflow-y: auto;
    z-index: 50;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98) 0%, rgba(28, 28, 28, 0.98) 100%);
    border: 1px solid rgba(219, 63, 93, 0.45);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
    -webkit-overflow-scrolling: touch;
}

.zus-parent-switch-popover[hidden] {
    display: none !important;
}

.zus-parent-switch-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.15s ease, color 0.15s ease;
}

.zus-parent-switch-item:last-child {
    border-bottom: none;
}

.zus-parent-switch-item:hover {
    background: rgba(219, 63, 93, 0.12);
    color: #fff;
}

.zus-parent-switch-item.is-current {
    background: rgba(219, 63, 93, 0.22);
    color: #fff;
}

.zus-parent-switch-arrow {
    color: var(--zus-primary);
    font-size: 0.85rem;
    font-weight: 400;
}

.zus-parent-switch-check {
    color: var(--zus-primary);
    font-weight: 700;
}

.menu-icon {
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px 10px;
    color: var(--zus-primary);
    background: none;
    border: none;
}

.menu-icon:hover {
    color: #fff;
    transform: scale(1.1);
}

/* Hamburger Menü (Sidebar) */
.hamburger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    border-right: 2px solid var(--zus-primary);
}

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

.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hamburger-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hamburger-header {
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(219, 63, 93, 0.2);
}

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

.hamburger-close:hover {
    background: rgba(219, 63, 93, 0.2);
    transform: rotate(90deg);
}

.hamburger-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin: 30px auto;
    display: block;
    padding: 0 20px;
}

.hamburger-content {
    padding: 20px;
}

.hamburger-section {
    margin-bottom: 30px;
}

.hamburger-section-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 0 5px;
}

.hamburger-select {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 63, 93, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23DB3F5D' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.hamburger-select:focus {
    outline: none;
    border-color: var(--zus-primary);
    box-shadow: 0 0 15px rgba(219, 63, 93, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.hamburger-select option {
    background: var(--zus-dark);
    color: #fff;
    padding: 10px;
}

.hamburger-search {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 63, 93, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.hamburger-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hamburger-search:focus {
    outline: none;
    border-color: var(--zus-primary);
    box-shadow: 0 0 15px rgba(219, 63, 93, 0.3);
    background-color: rgba(255, 255, 255, 0.08);
}

.hamburger-address {
    padding: 20px;
    background: rgba(219, 63, 93, 0.1);
    border-radius: 10px;
    border-left: 3px solid var(--zus-primary);
    margin-bottom: 20px;
}

.hamburger-address-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.hamburger-address-item:last-child {
    margin-bottom: 0;
}

.hamburger-address-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--zus-primary);
}

.hamburger-address-text {
    flex: 1;
}

.hamburger-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 1rem;
}

.hamburger-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--zus-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zus-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(219, 63, 93, 0.1);
}

.hamburger-social-icon svg {
    width: 24px;
    height: 24px;
}

.hamburger-social-icon:hover {
    background: var(--zus-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(219, 63, 93, 0.5);
}

.search-section {
}

/* Sentinel: scroll bu noktayı geçince kategori strip yapışır */
.zus-sticky-sentinel {
    height: 1px;
    width: 100%;
    pointer-events: none;
}

/* Parent sayfası: kategori strip başta normal, .is-stuck ile sabitlenir */
.zus-category-sticky-wrap {
    position: relative;
}

.zus-category-sticky {
    position: relative;
    background: var(--zus-dark);
    margin: 0;
    transition: box-shadow 0.2s ease;
}

.zus-category-sticky.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zus-sticky-spacer {
    flex-shrink: 0;
    pointer-events: none;
}

/* Tek sayfa kategori bölümleri – scroll-margin-top JS ile sticky bar yüksekliğine set edilir */
.zus-category-section {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.zus-category-section-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--zus-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(219, 63, 93, 0.3);
}

.zus-recommended-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.zus-all-categories-content .zus-price-date {
    text-align: center;
    margin: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.search-bar {
    width: 100%;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(219, 63, 93, 0.2);
    border-radius: 25px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.search-bar:focus {
    outline: none;
    border-color: var(--zus-primary);
    box-shadow: 0 0 15px rgba(219, 63, 93, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.search-bar::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    min-width: 100px;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-item.active {
    background: rgba(219, 63, 93, 0.15);
}

.category-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid transparent;
}

.category-item.active .category-item-image {
    border-color: var(--zus-primary);
    box-shadow: 0 0 15px rgba(219, 63, 93, 0.4);
}

.category-item {
    text-decoration: none;
}
.category-item-name {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
}
.category-item.active .category-item-name {
    color: var(--zus-primary);
    font-weight: 600;
}

.products-section {
}

.product-card {
    background: linear-gradient(135deg, var(--zus-dark-secondary) 0%, #2a2a2a 100%);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(219, 63, 93, 0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(219, 63, 93, 0.2);
    border-color: var(--zus-primary);
}

.product-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-image--placeholder {
    background: rgba(219, 63, 93, 0.15);
    min-width: 120px;
    min-height: 120px;
}

.product-card-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 120px;
}

.zus-product-allergen-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.28rem;
    margin-top: -0.5rem;
    width: 100%;
    max-width: 120px;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffcaca;
}

.product-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Kartta açıklama max 2 satır + elipsis (liste ve detay sayfası) */
.product-card .product-description,
.zus-detail-page .product-card .product-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}
/* HTML etiketli açıklamada da elipsis çalışsın: iç blokları tek satır akışına al */
.product-card .product-description *,
.zus-detail-page .product-card .product-description * {
    display: inline !important;
    margin: 0;
    vertical-align: baseline;
}

/* Ürün modal */
.zus-product-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.zus-product-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.zus-product-modal {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--zus-dark-secondary) 0%, #2a2a2a 100%);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid rgba(219, 63, 93, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.zus-product-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    font-size: 1.25rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.zus-product-modal-close:hover {
    background: var(--zus-primary);
}

.zus-product-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.2s;
}

.zus-product-modal-nav:hover {
    background: var(--zus-primary);
}

.zus-product-modal-nav:disabled,
.zus-product-modal-nav.is-hidden {
    opacity: 0.3;
    pointer-events: none;
}

.zus-product-modal-nav.prev {
    left: 0.75rem;
}

.zus-product-modal-nav.next {
    right: 0.75rem;
}

.zus-product-modal-image-wrap {
    width: 100%;
    height: 200px;
    background: rgba(0,0,0,0.3);
    flex-shrink: 0;
}

.zus-product-modal-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.zus-product-modal-body {
    padding: 1.25rem;
    overflow-y: auto;
    max-height: calc(90vh - 200px);
}

.zus-product-modal-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.zus-product-modal-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
    white-space: pre-wrap;
}

.zus-product-modal-description p {
    margin-bottom: 0;
}

.zus-product-modal-allergens-wrap {
    margin-bottom: 1rem;
}

.zus-product-modal-allergens-wrap[hidden] {
    display: none !important;
}

.zus-product-modal-allergens-heading {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.5rem;
}

.zus-product-modal-allergens-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.zus-modal-allergen-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.zus-modal-allergen-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.zus-modal-allergen-label {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.9);
    flex: 1;
    min-width: 0;
}

.zus-product-modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zus-primary);
}

.zus-product-modal-options-wrap {
    margin-bottom: 1rem;
}

.zus-product-modal-options-wrap[hidden] {
    display: none !important;
}

.zus-item-options-section {
    margin-bottom: 1rem;
}

.zus-item-options-title {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.45rem;
}

.zus-item-options-required {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: var(--zus-primary);
}

.zus-item-options-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.zus-item-option-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.45rem 0.55rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

.zus-item-option-row input {
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--zus-primary);
}

.zus-item-option-label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.zus-item-option-name {
    flex: 1;
    min-width: 0;
}

.zus-item-option-price {
    flex-shrink: 0;
    color: var(--zus-primary);
    font-weight: 600;
    white-space: nowrap;
    text-align: right;
}

.product-options-hint {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--zus-primary);
    opacity: 0.9;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zus-primary);
    text-shadow: 0 0 10px rgba(219, 63, 93, 0.5);
    text-align: left;
}

/* Ürün Detay Sayfası */
.product-detail-page {
    min-height: 100vh;
    background: var(--zus-dark);
}

.product-detail-header {
    background: linear-gradient(135deg, var(--zus-dark) 0%, var(--zus-dark-secondary) 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--zus-primary);
    box-shadow: 0 2px 10px rgba(219, 63, 93, 0.1);
}

.product-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-detail-content {
    padding: 20px;
    background: linear-gradient(135deg, var(--zus-dark-secondary) 0%, #2a2a2a 100%);
    margin-top: -20px;
    border-radius: 20px 20px 0 0;
    border-top: 2px solid var(--zus-primary);
}

.product-detail-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-detail-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--zus-primary);
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(219, 63, 93, 0.6);
}

.allergen-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.allergen-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(219, 63, 93, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(219, 63, 93, 0.2);
    transition: all 0.3s ease;
}

.allergen-item:hover {
    background: rgba(219, 63, 93, 0.2);
    border-color: var(--zus-primary);
}

.allergen-icon {
    width: 20px;
    height: 20px;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .home-page .main-title {
        font-size: clamp(1.75rem, 8.5vw, 2.75rem);
    }
    
    .menu-panel {
        padding: 25px 15px;
    }
    
    .product-card {
        flex-direction: row-reverse;
        gap: 16px;
        padding: 16px;
    }
    
    .product-image {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .product-image--placeholder {
        min-width: 100px;
        min-height: 100px;
    }

    .product-card-visual {
        width: 100px;
    }

    .zus-product-allergen-badges {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .home-page .main-title {
        font-size: clamp(1.6rem, 8vw, 2.25rem);
    }

    .home-page .social-icon {
        width: 42px;
        height: 42px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-links {
        gap: 12px;
    }

    .home-page .social-links {
        gap: 10px;
    }
}

