/* --- APP / MENU CSS --- */

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* Header yüksekliği ve yapışkan menüye göre kaydırma payı */
.category-section {
    scroll-margin-top: 70px; 
}

/* Kategori Butonları Aktif Stili */
.cat-pill {
    transition: all 0.3s ease;
}

.cat-pill.active {
    background-color: #dc3545 !important; /* Kırmızı */
    color: white !important;
    border-color: #dc3545 !important;
    box-shadow: 0 4px 6px rgba(220, 53, 69, 0.3);
    transform: scale(1.05);
}

/* --- MODERN SEÇENEK KARTLARI (app.js ile çalışır) --- */
.modifier-section {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}
.modifier-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}
.modifier-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f3f4f6;
    color: #666;
}
.modifier-badge.required {
    background: #fee2e2;
    color: #dc2626;
}
.modifier-option-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}
/* Seçilince Devreye Girecek Stil */
.modifier-option-card.selected {
    border-color: #dc2626; /* Ana Renk */
    background-color: #fef2f2;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}
.modifier-option-card:hover {
    border-color: #d1d5db;
}
/* Inputları Gizle (Görüntü kirliliğini önle) */
.modifier-option-card input {
    display: none; 
}
/* Kendi check ikonumuzu yapalım */
.check-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modifier-option-card.selected .check-circle {
    border-color: #dc2626;
    background: #dc2626;
}
.modifier-option-card.selected .check-circle::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}