/* assets/css/musteri.css - (GÜNCEL: V4.1 - RESPONSIVE ACTION ROW FIX) */

/* --- TEMEL DEĞİŞKENLER VE AYARLAR --- */
:root {
    --bg-body: #F9FAFB;
    --bg-card: #FFFFFF;
    --primary: #FF6B6B;
    --primary-color: #FF6B6B; /* Alternatif isimlendirme için */
    --primary-dark: #EE5253;
    --text-dark: #111827;
    --text-gray: #6B7280;
    --shadow-card: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.08);
    --radius-lg: 16px;
    --radius-md: 12px;
    --container-width: 1000px;
    --header-height-mobile: 240px;
    --header-height-desktop: 380px;
    
    /* iPhone X ve sonrası için güvenli alanlar */
    --safe-area-bottom: env(safe-area-inset-bottom, 20px);
    --bottom-nav-height: 70px;
}

*, *::before, *::after {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-body);
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    padding-bottom: calc(var(--bottom-nav-height) + var(--safe-area-bottom) + 30px);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* --- YÜKLENİYOR EKRANI (SPLASH) --- */
#splash-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #fff; z-index: 9999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}
#splash-screen.hidden {
    opacity: 0; visibility: hidden; pointer-events: none;
}
.splash-logo {
    width: 110px; height: 110px; border-radius: 50%;
    object-fit: contain; margin-bottom: 25px;
    animation: pulse 2s infinite; border: 2px solid #eee;
    background: #fff;
}
.spinner {
    width: 45px; height: 45px; border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary); border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* --- HEADER (KAPAK ALANI) --- */
.app-header {
    position: relative; /* İçerideki absolut öğeler için gerekli */
    height: var(--header-height-mobile);
    width: 100%;
    background-size: cover;
    background-position: center center;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-bottom: 20px;
    z-index: 1;
    transform: translateZ(0);
}
.app-header::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

/* Header Üst Bar (Sol Üst Boş, Sağda Dil Butonu) */
.premium-top-bar {
    position: absolute; top: 0; left: 0; width: 100%; height: 80px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    z-index: 5; 
    display: flex; justify-content: flex-end; /* Sadece sağa yasla */
    align-items: center;
    padding: 0 20px;
}
.top-brand { display: none; /* Sol üstteki yazı gizlendi */ }

/* Dil Butonu (Minimal Tasarım) */
.lang-switch {
    background: rgba(0,0,0,0.25);
    color: #fff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
    cursor: pointer;
    display: flex; align-items: center; gap: 5px;
}
.lang-switch:hover { background: rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.4); }

.header-content {
    position: absolute; bottom: 35px; /* Marka için biraz yukarı aldık */
    left: 0; width: 100%;
    z-index: 2; padding: 0 25px; display: flex; align-items: center; gap: 15px;
}
.header-logo {
    width: 80px; height: 80px; border-radius: 50%; object-fit: contain;
    border: 3px solid rgba(255,255,255,1); background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3); flex-shrink: 0;
}
.header-info { color: white; flex: 1; text-align: left; overflow: hidden; }
.header-title {
    font-size: 1.4rem; font-weight: 800; margin: 0; line-height: 1.2;
    letter-spacing: -0.5px; text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.header-slogan {
    font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 400; margin-top: 4px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* MARKA İMZASI (Kapak Resminin İçinde - En Altta) */
.sub-header-brand {
    position: absolute; 
    bottom: 8px; /* En alttan 8px yukarıda */
    left: 0; width: 100%;
    text-align: center;
    z-index: 20;
    padding: 0;
    line-height: 1;
}
.sub-header-brand a {
    font-size: 0.6rem; 
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    transition: all 0.3s;
    background: rgba(0,0,0,0.2);
    padding: 3px 8px;
    border-radius: 10px;
}
.sub-header-brand a:hover { color: #fff; background: rgba(0,0,0,0.5); }

/* 7/24 Rozeti */
.badge-724 {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,0.2); backdrop-filter: blur(5px);
    padding: 3px 8px; border-radius: 15px;
    font-size: 0.7rem; font-weight: 500; color: #fff;
    margin-top: 5px; border: 1px solid rgba(255,255,255,0.3);
}

.closed-banner {
    position: sticky; top: 0; z-index: 1001;
    background: #e74c3c; color: white; text-align: center;
    padding: 12px; font-weight: 700; font-size: 0.95rem;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
}

/* --- DİL MENÜSÜ DROPDOWN --- */
.dropdown-menu { 
    position: fixed; top: 60px; right: 20px; width: 140px;
    background: #fff; border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    z-index: 99999; overflow: hidden; opacity: 0; visibility: hidden;
    transform: translateY(-10px) scale(0.95); 
    transition: all 0.25s; border: 1px solid rgba(0,0,0,0.05);
}
.dropdown-menu.show { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.lang-item {
    display: flex; align-items: center; gap: 8px; padding: 10px 15px;
    color: #444; text-decoration: none; font-size: 0.85rem; font-weight: 500;
    border-bottom: 1px solid #f8f9fa;
}
.lang-item:last-child { border-bottom: none; }
.lang-item:hover { background: #f1f2f6; color: #000; }

/* --- ARAÇLAR VE SOSYAL MEDYA SLIDER --- */
.tools-section { padding: 0 15px; margin-bottom: 20px; max-width: var(--container-width); margin-left: auto; margin-right: auto; }

.search-container-main {
    padding: 10px 15px; width: 100%; max-width: var(--container-width);
    margin: 0 auto; margin-bottom: 10px;
}
.search-box {
    background: white; border-radius: 12px; display: flex; align-items: center;
    padding: 0 15px; height: 50px; box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.04); transition: 0.2s;
}
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 4px 12px rgba(255, 107, 107, 0.1); }
.search-box i { color: #9CA3AF; margin-right: 10px; font-size: 1.1rem; }
.search-box input {
    border: none; outline: none; width: 100%; font-size: 16px;
    color: var(--text-dark); background: transparent; height: 100%; font-family: inherit;
}

/* Sosyal Medya İkonları (Slider & Küçük) - DÜZELTİLDİ */
.action-row {
    display: flex; flex-wrap: nowrap; overflow-x: auto; 
    gap: 8px; padding: 5px 15px; margin-top: -10px; margin-bottom: 10px;
    z-index: 50; position: relative;
    -ms-overflow-style: none; scrollbar-width: none; 
    align-items: center; 
    justify-content: flex-start; /* Mobilde taşmayı önlemek için sola yasla */
}
.action-row::-webkit-scrollbar { display: none; }

/* Masaüstünde sığarsa ortala */
@media (min-width: 768px) {
    .action-row { justify-content: center; }
}

.act-pill {
    flex: 0 0 auto; display: inline-flex; align-items: center; gap: 5px;
    background: #fff; padding: 5px 12px; border-radius: 30px;
    white-space: nowrap; cursor: pointer; z-index: 51;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); text-decoration: none;
    font-weight: 600; font-size: 0.7rem; color: #555;
    border: 1px solid rgba(0,0,0,0.03); transition: transform 0.2s;
}
.act-pill:hover { transform: translateY(-2px); color: #000; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.act-pill i { font-size: 0.85rem; }

/* --- KATEGORİLER --- */
.category-nav-wrapper {
    position: sticky; top: 0; z-index: 100;
    background: rgba(249, 250, 251, 0.98);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 10px 0; margin-bottom: 0; width: 100%;
    transition: top 0.3s;
}

.category-list {
    display: flex; gap: 15px; overflow-x: auto; overflow-y: hidden;
    padding: 5px 20px; width: 100%; margin: 0 auto;
    white-space: nowrap; cursor: grab;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    box-sizing: border-box; max-width: var(--container-width);
    scroll-snap-type: x mandatory; padding-right: 20px;
}
.category-list::-webkit-scrollbar { display: none; }

.cat-item {
    display: inline-flex; flex-direction: column; align-items: center;
    text-decoration: none; flex-shrink: 0; width: 75px;
    transition: transform 0.2s; user-select: none;
    scroll-snap-align: start;
}
.cat-item:active { transform: scale(0.95); }

.cat-img-box {
    width: 65px; height: 65px; border-radius: 50%; padding: 3px;
    background: white; display: flex; align-items: center; justify-content: center;
    overflow: hidden; transition: all 0.3s; margin-bottom: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 2px solid transparent;
}
.cat-item.active .cat-img-box { border-color: var(--primary); box-shadow: 0 5px 15px rgba(255, 107, 107, 0.25); }
.cat-img-box img { 
    width: 100%; height: 100%; object-fit: contain;
    border-radius: 50%; pointer-events: none; background: #fff;
}
.cat-img-box i { font-size: 1.6rem; color: #888; }
.cat-item.active .cat-img-box i { color: var(--primary); }

.cat-name {
    font-size: 0.75rem; color: var(--text-dark); text-align: center;
    width: 100%; font-weight: 600; line-height: 1.2;
    white-space: normal; display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden; height: 2.4em;
}
.cat-item.active .cat-name { color: var(--primary); font-weight: 800; }

.filter-nav-wrapper {
    position: relative; z-index: 89; background: var(--bg-body);
    padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(0,0,0,0.03);
}
.filter-list {
    display: flex; gap: 10px; overflow-x: auto; padding: 0 20px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    width: 100%; margin: 0 auto; white-space: nowrap;
    box-sizing: border-box; max-width: var(--container-width);
}
.filter-list::-webkit-scrollbar { display: none; }
.filter-item {
    flex-shrink: 0; background: white; border: 1px solid rgba(0,0,0,0.06);
    padding: 8px 16px; border-radius: 25px; font-size: 0.85rem; font-weight: 600;
    color: var(--text-dark); cursor: pointer; display: flex; align-items: center; gap: 6px;
    transition: all 0.2s;
}
.filter-item:active { transform: scale(0.95); }
.filter-item.active { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3); }

/* --- ÜRÜN LİSTESİ GENEL --- */
.main-container { width: 100%; margin: 0 auto; padding: 0 15px; max-width: var(--container-width); }
.product-section { padding-top: 20px; padding-bottom: 30px; border-bottom: 1px dashed #e5e7eb; scroll-margin-top: 180px; }
.product-section:last-child { border-bottom: none; }

/* Kategori Başlığı (Ortalı & Çizgili) */
.section-title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.section-title::before, .section-title::after {
    content: ''; display: block; width: 25px; height: 2px;
    background-color: var(--primary); opacity: 0.4; border-radius: 2px;
}

/* Sonuç Bulunamadı */
#noResultsMessage { display: none; text-align: center; padding: 40px 20px; color: #999; }
#noResultsMessage i { font-size: 3rem; margin-bottom: 10px; display: block; opacity: 0.5; }

/* --- GÖRÜNÜM MODLARI --- */
/* 1. LİSTE MODU */
.layout-liste .product-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .layout-liste .product-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
.layout-liste .product-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); border: none;
    display: flex; flex-direction: row; align-items: flex-start;
    padding: 10px; min-height: 120px; position: relative;
    overflow: hidden; transition: 0.2s;
}
.layout-liste .prod-img { 
    width: 110px; height: 110px; border-radius: 12px; flex-shrink: 0; border: none; 
    object-fit: contain; background: #fff; padding: 4px;
}
.layout-liste .prod-info { padding: 0 0 0 15px; width: 100%; display: flex; flex-direction: column; flex: 1; min-width: 0; }
.layout-liste .prod-title { font-size: 1.05rem; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; word-wrap: break-word; }
.layout-liste .prod-desc { font-size: 0.85rem; color: var(--text-gray); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 5px; line-height: 1.4; }
.layout-liste .prod-meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 5px; }
.layout-liste .prod-price { font-weight: 800; font-size: 1.15rem; color: var(--primary); }

/* 2. KUTU MODU */
.layout-kutu .product-grid { display: grid; grid-template-columns: 1fr; gap: 20px; align-items: start; }
@media (min-width: 768px) { .layout-kutu .product-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.layout-kutu .product-card {
    background: var(--bg-card); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card); border: none;
    display: flex; flex-direction: column; overflow: hidden;
    position: relative; height: 100%;
}
.layout-kutu .prod-img { 
    width: 100%; height: 240px; object-fit: contain;
    border-bottom: 1px solid #f3f4f6; background: #fff; padding: 10px;
}
.layout-kutu .prod-info { padding: 15px; display: flex; flex-direction: column; flex: 1; }
.layout-kutu .prod-title { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.layout-kutu .prod-desc { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; font-size: 0.9rem; color: var(--text-gray); margin-bottom: 12px; line-height: 1.5; }
.layout-kutu .prod-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.layout-kutu .prod-options { display: block; margin-bottom: 15px; font-size: 0.8rem; }
.layout-kutu .prod-meta { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #f0f0f0; }
.layout-kutu .prod-price { font-size: 1.4rem; color: var(--primary); font-weight: 800; }

/* 3. BÜYÜK MOD */
.layout-buyuk .product-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 768px) { .layout-buyuk .product-grid { grid-template-columns: repeat(2, 1fr); } }
.layout-buyuk .product-card {
    background: var(--bg-card); border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: none;
    display: flex; flex-direction: column; overflow: hidden;
    position: relative;
}
.layout-buyuk .prod-img { 
    width: 100%; aspect-ratio: 4/3; object-fit: contain; background: #fff;
}
.layout-buyuk .prod-info { padding: 20px; }
.layout-buyuk .prod-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; color: var(--text-dark); }
.layout-buyuk .prod-desc { font-size: 0.95rem; color: var(--text-gray); line-height: 1.6; margin-bottom: 15px; display: block; }
.layout-buyuk .prod-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f3f4f6; padding-top: 15px; margin-top: 10px; }
.layout-buyuk .prod-price { font-size: 1.5rem; color: var(--primary); font-weight: 900; }

/* ORTAK ROZETLER VE ETİKETLER */
.badge-out {
    position: absolute; top: 10px; right: 10px;
    background: rgba(0,0,0,0.7); color: white; padding: 6px 14px;
    border-radius: 8px; font-size: 0.75rem; font-weight: 700; z-index: 5;
    text-transform: uppercase; backdrop-filter: blur(4px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.stok-yok .prod-img { opacity: 0.6; filter: grayscale(100%); }
.prod-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.badge-item {
    font-size: 0.7rem; color: var(--text-dark); background: #f3f4f6;
    padding: 4px 8px; border-radius: 6px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 4px;
}
.prod-options { font-size: 0.75rem; background: #f9f9f9; padding: 8px; border-radius: 8px; margin-bottom: 10px; border: 1px solid #eee; }

/* Oylama */
.rating-capsule {
    background: #fff; padding: 5px 12px; border-radius: 20px;
    font-size: 0.8rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; gap: 6px; border: 1px solid #eee;
    user-select: none;
}
.rating-capsule:active { transform: scale(0.95); }
.rating-capsule.yuksek { background: #e3fbf4; color: #00b894; border-color: #e3fbf4; }
.rating-capsule.orta { background: #fff3cd; color: #856404; border-color: #ffeeba; }
.rating-capsule.dusuk { background: #ffe6e6; color: #d63031; border-color: #ffe6e6; }

.vote-popup {
    position: absolute; bottom: 55px; right: 15px; background: white;
    padding: 6px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none; align-items: center; gap: 5px; border: 1px solid #eee; z-index: 20;
    animation: fadeIn 0.2s;
}
.vote-popup.show { display: flex; }
.vote-btn {
    width: 35px; height: 35px; border-radius: 10px; border: none;
    display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer;
}
.vote-btn:active { transform: scale(0.9); }
.v-up { background: #e3fbf4; color: #00b894; }
.v-down { background: #ffe6e6; color: #d63031; }

/* --- ALT MENÜ --- */
.bottom-nav {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 92%; max-width: 420px; height: var(--bottom-nav-height);
    background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
    border-radius: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex; justify-content: space-between; align-items: center;
    z-index: 990; padding: 0 10px; border: 1px solid rgba(255,255,255,0.5);
    margin-bottom: var(--safe-area-bottom);
}
.nav-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    flex: 1; height: 100%; cursor: pointer; color: #9CA3AF; transition: 0.2s;
    border-radius: 16px;
}
.nav-item:active { transform: scale(0.95); background: rgba(0,0,0,0.03); }
.nav-item i { font-size: 1.5rem; margin-bottom: 4px; }
.nav-item span { font-size: 0.75rem; font-weight: 700; }
.nav-item.garson i { color: #FF9F43; } .nav-item.yorum i { color: #54a0ff; } .nav-item.hesap i { color: #10ac84; }
.nav-divider { width: 1px; height: 25px; background: #eee; }
.nav-disabled { opacity: 0.4; pointer-events: none; filter: grayscale(1); }

/* --- MODALLAR --- */
.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(5px);
    z-index: 2000; display: none; align-items: center; justify-content: center;
    padding: 20px;
}
.popup-overlay.show { display: flex; animation: fadeIn 0.3s; }
.popup-card {
    background: #fff; width: 100%; max-width: 420px; border-radius: 24px;
    padding: 30px 25px; text-align: center; position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    display: flex; flex-direction: column; align-items: center;
    border: 1px solid rgba(255,255,255,0.8);
    max-height: 90vh; overflow-y: auto;
}
.btn-close-popup {
    position: absolute; top: 15px; right: 15px; width: 36px; height: 36px;
    background: #f3f4f6; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #666; border: none; cursor: pointer; transition: 0.2s; font-size: 1rem; z-index: 5;
}
.btn-close-popup:active { background: #e5e7eb; color: #333; transform: scale(0.9); }

.modal-icon-box {
    font-size: 3.5rem; margin-bottom: 15px;
    width: 90px; height: 90px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #f9fafb; transition: 0.3s; flex-shrink: 0;
}
.modal-title { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); margin: 0 0 10px 0; }
.modal-subtitle { font-size: 0.95rem; color: var(--text-gray); margin: 0 0 25px 0; line-height: 1.5; }

.quick-options { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; width: 100%; margin-bottom: 25px; }
.q-btn {
    background: #ffffff; border: 2px solid #f1f2f6; border-radius: 16px;
    padding: 15px 10px; cursor: pointer; transition: all 0.2s;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    color: var(--text-gray); font-weight: 600; font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.q-btn i { font-size: 1.5rem; color: #cbd5e1; transition: 0.2s; }
.q-btn:active { border-color: #e2e8f0; transform: scale(0.98); }
.q-btn.active { background: #fff; border-color: var(--primary); color: var(--primary); box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2); }
.q-btn.active i { color: var(--primary); }

.modal-input {
    width: 100%; padding: 15px; border-radius: 16px; border: 2px solid #f1f2f6;
    font-size: 1.2rem; text-align: center; font-weight: 700; margin-bottom: 20px;
    outline: none; color: var(--text-dark); transition: 0.3s; background: #f9fafb;
}
.modal-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1); }
.modal-btn-confirm {
    width: 100%; padding: 16px; border-radius: 16px; border: none;
    font-size: 1.1rem; font-weight: 700; color: white; cursor: pointer;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3); transition: 0.3s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.modal-btn-confirm:active { transform: scale(0.98); }

.modal-textarea {
    width: 100%; padding: 15px; border-radius: 16px; border: 2px solid #f1f2f6;
    font-size: 1rem; margin-bottom: 20px; outline: none; font-family: inherit;
    background: #f9fafb; color: var(--text-dark); resize: none;
}
.modal-textarea:focus { border-color: var(--primary); background: #fff; }
.popup-img { width: 100%; border-radius: 16px; margin-bottom: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }

/* --- MASAÜSTÜ İYİLEŞTİRMELERİ --- */
@media (min-width: 768px) {
    .app-header { height: var(--header-height-desktop); border-radius: 0 0 50px 50px; max-width: var(--container-width); margin: 0 auto 30px auto; }
    .header-logo { width: 100px; height: 100px; }
    .header-title { font-size: 2rem; }
    .category-nav-wrapper { border-radius: 16px; max-width: var(--container-width); margin: 0 auto; margin-bottom: 20px; }
}

@media (min-width: 1024px) {
    body { display: flex; flex-direction: column; align-items: center; }
    .category-nav-wrapper { top: 20px; }
}

@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.05); } 100% { transform: scale(1); } }