/* ==========================================================================
   VR PIZZA STYLE SHEET
   Temiz Beyaz Tema: Pizza Kırmızısı & Altın Turuncu
   ========================================================================== */

/* CSS Değişkenleri - Design Tokens */
:root {
    --bg-dark: #f8f9fa;          /* Çok açık gri arka plan */
    --bg-card: #ffffff;          /* Bembeyaz kartlar */
    --bg-card-hover: #f1f3f5;    /* Hover durumunda hafif gri */
    --primary: #c0392b;          /* Pizza kırmızısı */
    --primary-hover: #e74c3c;    /* Kırmızı hover */
    --accent: #e67e22;           /* Altın Turuncu (VR Para) */
    --accent-hover: #f39c12;     /* Altın sarısı hover */
    --success: #27ae60;          /* Sipariş başarılı, kazanç bildirimleri */
    --text-main: #1a1a2e;        /* Koyu lacivert/siyah metin */
    --text-muted: #6c757d;       /* Gri ikincil metin */
    --border: rgba(0, 0, 0, 0.08); /* Hafif gri kenarlıklar */
    --border-hover: rgba(0, 0, 0, 0.15);
    --shadow-neon: 0 4px 15px rgba(192, 57, 43, 0.15); /* Hafif kırmızı gölge */
    --shadow-gold: 0 4px 15px rgba(230, 126, 34, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Temel Sıfırlama ve Ayarlar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 0%, #ffffff 0%, var(--bg-dark) 70%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* Buton Tasarımları */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(158, 26, 34, 0.6);
}

.btn-secondary {
    background-color: var(--bg-card-hover);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--border-hover);
    transform: translateY(-2px);
}

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

.btn-secondary-outline:hover {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent);
    color: #ffffff;
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.3);
}

.btn-block {
    width: 100%;
}

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

/* Ana Düzen (Layout) */
#root-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

#main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.brand-logo {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

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

.delivery-status-bar {
    background-color: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.delivery-status-bar i {
    color: var(--primary);
}

.change-pref-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
    font-family: var(--font-heading);
}

.change-pref-btn:hover {
    color: var(--accent-hover);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.loyalty-pill {
    background-color: rgba(230, 126, 34, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.2);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.05);
}

.cart-trigger {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    box-shadow: var(--shadow-neon);
}

.cart-trigger:hover {
    background-color: var(--primary-hover);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    border: 2px solid var(--bg-card);
}

/* Sayfa İçi İçerik (Main App Area) */
#app {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px 60px 20px;
}

/* ==========================================================================
   HOMEPAGE & MENU
   ========================================================================== */

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%), url('logo.png') no-repeat center right;
    background-size: contain;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-banner h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.hero-banner p {
    color: #5d4037;
    font-size: 16px;
    max-width: 600px;
    font-weight: 500;
}

/* Kategori Menüsü (Filtre Kapsülleri) */
.menu-filter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    max-width: 100%;
}

/* Gizli Scrollbar */
.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.category-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.category-tab.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

/* Arama Kutusu */
.search-box-container {
    position: relative;
    min-width: 260px;
}

.search-box-container i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-input {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px 15px 12px 45px;
    border-radius: 50px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

/* Ürün Grid ve Kart Tasarımları */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: var(--bg-card-hover);
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05) rotate(1deg);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.product-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

/* ==========================================================================
   PIZZA ÖZELLEŞTİRİCİ MODAL
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-body {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
    transform: rotate(90deg);
}

.customizer-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 500px;
}

/* Pizza Görsel Canlandırma Kısmı */
.pizza-preview-column {
    background-color: var(--bg-card-hover);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.pizza-visual-container {
    width: 280px;
    height: 280px;
    position: relative;
    margin-bottom: 30px;
}

.pizza-base-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

/* Dynamic topping graphics overlapping on pizza */
.ingredient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ingredient-layer.active {
    opacity: 1;
    transform: scale(1);
}

.ingredient-item-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Customizer Details / Controls Column */
.customizer-options-column {
    padding: 40px;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.customizer-options-column h2 {
    font-size: 24px;
    margin-bottom: 10px;
    padding-right: 30px;
}

.customizer-options-column .product-desc {
    margin-bottom: 25px;
}

.option-group {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.option-group h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

/* Boyut Seçimi Grid */
.size-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.size-option-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.size-option-card:hover {
    border-color: var(--border-hover);
}

.size-option-card.active {
    border-color: var(--primary);
    background-color: rgba(192, 57, 43, 0.08);
}

.size-option-card .size-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
}

.size-option-card .size-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* Malzeme Listesi Grid */
.toppings-selector-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topping-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 15px;
    border-radius: 10px;
    transition: var(--transition);
}

.topping-item-row:hover {
    background-color: var(--bg-card-hover);
}

.topping-label-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topping-check-box {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: var(--transition);
}

.topping-check-box.checked {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.topping-check-box.removed {
    background-color: #e0e0e0;
    border-color: #ccc;
    color: #777;
}

.topping-name {
    font-weight: 500;
}

.topping-action-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.topping-action-text.extra {
    color: var(--success);
}

.topping-action-text.removed {
    color: var(--primary);
    text-decoration: line-through;
}

.customizer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.total-calc-area {
    display: flex;
    flex-direction: column;
}

.total-calc-area span {
    font-size: 12px;
    color: var(--text-muted);
}

.total-calc-area .final-price {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
}

/* ==========================================================================
   CART SIDEBAR DRAWER & OVERLAYS
   ========================================================================== */

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--bg-card);
    border-left: 1px solid var(--border);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer.active {
    transform: translateX(0);
}

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

.close-drawer-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.close-drawer-btn:hover {
    color: var(--primary);
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.empty-cart-state {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: auto 0;
}

.empty-cart-state i {
    font-size: 48px;
    color: var(--border-hover);
}

.empty-cart-state p {
    color: var(--text-muted);
}

/* Sepetteki Ürün Kartı */
.cart-item-card {
    background-color: var(--bg-card-hover);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-item-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

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

.cart-item-customizations {
    font-size: 11px;
    color: var(--text-muted);
    background-color: rgba(0, 0, 0, 0.04);
    padding: 6px 10px;
    border-radius: 6px;
    margin-top: 4px;
}

.cart-item-custom-list {
    margin-top: 3px;
    list-style: none;
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.cart-qty-btn {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--text-main);
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-qty-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
}

.cart-qty-val {
    width: 32px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
}

.cart-item-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background-color: var(--bg-card-hover);
}

.cart-pricing {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-muted);
}

.discount-row {
    color: var(--success);
    font-weight: 600;
}

.vr-coin-gain {
    color: var(--accent);
    font-weight: 600;
}

.total-row {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-main);
    border-top: 1px solid var(--border);
    padding-top: 10px;
}

.coupon-field {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.coupon-field input {
    flex: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 10px 15px;
    border-radius: 8px;
    outline: none;
}

.coupon-field button {
    background-color: var(--bg-card);
    color: var(--text-main);
    border: 1px solid var(--border);
    padding: 0 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.coupon-field button:hover {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Cüzdan Bakiye Harcama Arayüzü */
.loyalty-redeem-card {
    background-color: rgba(230, 126, 34, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
}

.loyalty-redeem-card p {
    font-size: 12px;
    margin-bottom: 8px;
}

.loyalty-redeem-card .balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loyalty-redeem-card .balance-lbl {
    font-weight: 700;
    color: var(--accent);
}

/* ==========================================================================
   KARŞILAMA & ONBOARDING (Pizza Lazza Tasarımı)
   ========================================================================== */

.welcome-modal {
    max-width: 500px;
    padding: 30px;
    text-align: center;
}

.welcome-modal .logo-large {
    height: 120px;
    margin: 0 auto 20px auto;
    display: block;
}

.welcome-modal h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.welcome-modal p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.welcome-flow-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.welcome-btn-guest {
    font-size: 13px;
    color: var(--text-muted);
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    transition: var(--transition);
}

.welcome-btn-guest:hover {
    color: var(--primary);
}

/* Teslimat Tipi Seçimi */
.delivery-type-card {
    background-color: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    width: 100%;
}

.delivery-type-card:hover {
    border-color: var(--primary);
    background-color: rgba(192, 57, 43, 0.03);
}

.delivery-type-card .card-icon {
    font-size: 32px;
    color: var(--primary);
    background-color: rgba(158, 26, 34, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery-type-card .card-info {
    flex: 1;
}

.delivery-type-card .card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.delivery-type-card .card-desc {
    font-size: 13px;
    color: var(--text-muted);
}

/* Seçim Formları (dropdowns) */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 12px 15px;
    border-radius: 10px;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
}

/* Konum İzni Modalı */
.location-permission-body {
    padding: 30px;
    text-align: center;
}

.location-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(158, 26, 34, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(158, 26, 34, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(158, 26, 34, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(158, 26, 34, 0); }
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.address-details-reveal {
    animation: slideDownFade 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ==========================================================================
   CHECKOUT PAGE & IYZICO SIMULATION
   ========================================================================== */

.checkout-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.checkout-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
}

.checkout-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-card h3 i {
    color: var(--primary);
}

/* Iyzico Payment Block */
.iyzico-mock-gateway {
    border: 1.5px solid #29b6f6;
    border-radius: 12px;
    background-color: rgba(41, 182, 246, 0.02);
    overflow: hidden;
    margin-top: 15px;
}

.iyzico-header {
    background-color: rgba(41, 182, 246, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(41, 182, 246, 0.2);
}

.iyzico-header img {
    height: 18px; /* Mock iyzico logo height */
}

.iyzico-logo-txt {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #29b6f6;
    font-size: 14px;
}

.iyzico-logo-txt span {
    color: var(--text-main);
}

.iyzico-body {
    padding: 20px;
}

.card-number-wrapper {
    position: relative;
}

.card-number-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.card-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.iyzico-secure-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

.iyzico-secure-badges i {
    color: var(--success);
}

/* ==========================================================================
   OTP SMS / E-POSTA DOĞRULAMA MODALI
   ========================================================================== */

.otp-modal-body {
    padding: 35px;
    text-align: center;
    max-width: 420px;
}

.otp-icon-box {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.otp-modal-body h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.otp-modal-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.otp-input {
    width: 48px;
    height: 48px;
    background-color: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    outline: none;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.otp-input:focus {
    border-color: var(--primary);
    box-shadow: var(--shadow-neon);
}

.otp-timer {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.otp-timer span {
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================================================
   SİPARİŞ TAKİP EKRANI (Tracker)
   ========================================================================== */

.tracker-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-neon);
}

.tracker-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.tracker-order-id {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.03);
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
}

.tracker-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 40px;
}

.tracker-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    height: 4px;
    background-color: var(--border-hover);
    z-index: 1;
}

.tracker-progress-line {
    position: absolute;
    top: 25px;
    left: 40px;
    height: 4px;
    background-color: var(--success);
    z-index: 1;
    width: 0%;
    transition: width 1s ease;
}

.tracker-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.tracker-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 3px solid var(--border-hover);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.tracker-step.active .tracker-icon-box {
    border-color: var(--primary);
    color: var(--primary);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-neon);
    animation: activeStepPulse 1.5s infinite alternate;
}

.tracker-step.completed .tracker-icon-box {
    border-color: var(--success);
    color: var(--bg-dark);
    background-color: var(--success);
}

.tracker-step-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
}

.tracker-step.active .tracker-step-title {
    color: var(--primary);
}

.tracker-step.completed .tracker-step-title {
    color: var(--success);
}

@keyframes activeStepPulse {
    from { transform: scale(1); box-shadow: 0 0 10px rgba(158, 26, 34, 0.2); }
    to { transform: scale(1.08); box-shadow: 0 0 20px rgba(158, 26, 34, 0.6); }
}

.tracker-eta-card {
    background-color: var(--bg-card-hover);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

/* Simulator controls for order track (hidden or subtle for testing) */
.simulator-panel {
    margin-top: 40px;
    border-top: 1px dashed var(--border);
    padding-top: 20px;
}

.simulator-panel p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* ==========================================================================
   LOYALTY DASHBOARD & MEMBER PROFILE
   ========================================================================== */

.profile-layout {
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 30px;
}

.profile-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
}

.profile-user-header {
    text-align: center;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-family: var(--font-heading);
}

/* Cüzdan Paneli */
.wallet-display-card {
    background: linear-gradient(135deg, #a8232a 0%, #4a0004 100%);
    border-radius: 16px;
    padding: 25px;
    color: #ffffff;
    box-shadow: var(--shadow-neon);
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.wallet-display-card::after {
    content: '\f51e'; /* Gold Coins icon background blur */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 110px;
    opacity: 0.1;
    color: #ffffff;
}

.wallet-balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wallet-coins-val {
    font-size: 36px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.convert-action-box {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 15px;
}

.convert-action-box p {
    font-size: 12px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* Kurye Yol Simülasyonu */
.road-simulation-track {
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--border) 0px, var(--border) 10px, transparent 10px, transparent 20px), rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    position: relative;
    margin: 25px 0;
    overflow: visible;
}

.courier-moto-icon {
    position: absolute;
    top: -12px;
    left: 0;
    font-size: 24px;
    color: var(--accent);
    text-shadow: var(--shadow-gold);
    animation: driveCourier 8s infinite linear;
}

@keyframes driveCourier {
    0% { left: 0%; transform: scaleX(1); }
    49% { left: 95%; transform: scaleX(1); }
    50% { left: 95%; transform: scaleX(-1); }
    99% { left: 0%; transform: scaleX(-1); }
    100% { left: 0%; transform: scaleX(1); }
}

/* Davet Et Kazan Kartı (Referral System) */
.referral-card {
    background-color: rgba(230, 126, 34, 0.03);
    border: 1px dashed rgba(230, 126, 34, 0.4);
    border-radius: 16px;
    padding: 20px;
    margin-top: 25px;
}

.referral-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--accent);
}

.referral-header i {
    font-size: 20px;
}

.referral-desc {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.referral-code-wrapper {
    display: flex;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.referral-code-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 10px 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-align: center;
    outline: none;
    user-select: all;
}

.referral-copy-btn {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.referral-copy-btn:hover {
    background-color: var(--primary-hover);
}

/* Geçmiş Sipariş Satırı */
.order-history-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-history-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-hist-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-hist-id {
    font-weight: 700;
}

.order-hist-date {
    font-size: 12px;
    color: var(--text-muted);
}

.order-hist-status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
}

.status-completed {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--success);
}

.status-cancelled {
    background-color: rgba(255, 82, 82, 0.1);
    color: #ff5252;
}

.order-hist-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-hist-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--accent);
}

/* ==========================================================================
   TOAST NOTIFICATION & MISCELLANEOUS
   ========================================================================== */

.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.toast {
    background-color: var(--bg-card);
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    transform: translateX(-120%);
    animation: toastSlideIn 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.toast-success {
    border-left-color: var(--success);
}

.toast.toast-warning {
    border-left-color: var(--accent);
}

@keyframes toastSlideIn {
    to { transform: translateX(0); }
}

/* Footer Tasarımları */
#main-footer {
    border-top: 1px solid var(--border);
    background-color: var(--bg-card-hover);
    padding: 40px 0 20px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
}

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

.footer-socials a {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-section ul li a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-section p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    padding: 20px 20px 0 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobil Uyumlu Tasarım Detayları (Media Queries) */
@media (max-width: 900px) {
    .customizer-layout {
        grid-template-columns: 1fr;
    }
    
    .pizza-preview-column {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 30px;
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .profile-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box-container {
        width: 100%;
    }
    
    .tracker-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        padding-left: 20px;
    }
    
    .tracker-steps::before {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 4px;
        height: auto;
    }
    
    .tracker-progress-line {
        top: 0;
        bottom: 0;
        left: 35px;
        width: 4px;
        height: 0%; /* Dynamic height for vertical layout */
    }
    
    .tracker-step {
        flex-direction: row;
        width: 100%;
        gap: 15px;
        text-align: left;
    }
    
    .tracker-icon-box {
        margin-bottom: 0;
    }
}

/* ==========================================================================
   CIRCLE ACTION BUTTONS & PREMIUM CUSTOMER CARDS
   ========================================================================== */

/* Product card micro-interaction enhancements */
.clickable-card {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
}

.clickable-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(192, 57, 43, 0.12), 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: rgba(192, 57, 43, 0.4);
}

.product-image-wrapper {
    position: relative;
    border-radius: 19px 19px 0 0;
    overflow: hidden;
}

.product-image {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.clickable-card:hover .product-image {
    transform: scale(1.08);
}

/* Circular action button inside the product cards */
.circle-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.circle-action-btn:hover {
    background: var(--primary-hover);
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 6px 18px rgba(192, 57, 43, 0.5);
}

.circle-action-btn.btn-quick-add {
    background: var(--success);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.circle-action-btn.btn-quick-add:hover {
    background: #2ecc71;
    box-shadow: 0 6px 18px rgba(39, 174, 96, 0.5);
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC AESTHETICS & MICRO-INTERACTIONS
   ========================================================================== */

/* Neon gold & red background accent shapes */
body::after {
    content: '';
    position: fixed;
    top: 10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(192, 57, 43, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}
body::before {
    content: '';
    position: fixed;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(40px);
}

/* Floating Glass Header */
#main-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02) !important;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Glassmorphism for Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(192, 57, 43, 0.25) !important;
    box-shadow: 0 15px 35px rgba(192, 57, 43, 0.12) !important;
}

/* Category Tab Upgrades */
.category-tab {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    color: var(--text-muted) !important;
    padding: 12px 24px !important;
    font-size: 14px;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

.category-tab:hover {
    background: #ffffff !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #e74c3c 100%) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.35) !important;
}

/* Pizza Preview Holographic Glow */
.pizza-preview-column {
    background: radial-gradient(circle at 50% 50%, rgba(230, 126, 34, 0.06) 0%, rgba(255, 255, 255, 0.02) 70%) !important;
    overflow: hidden;
}

.pizza-preview-column::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    animation: rotateAura 20s linear infinite;
}

@keyframes rotateAura {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.pizza-visual-container {
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Size Options Glass Cards */
.size-option-card {
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 16px !important;
    transition: all 0.3s ease !important;
}

.size-option-card:hover {
    border-color: var(--primary) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
}

.size-option-card.active {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.06) 0%, rgba(230, 126, 34, 0.06) 100%) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 15px rgba(192, 57, 43, 0.08) !important;
}

/* Customizer Toppings Row Styling */
.topping-item-row {
    background: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 14px !important;
    padding: 10px 16px !important;
    margin-bottom: 8px !important;
    transition: all 0.25s ease !important;
}

.topping-item-row:hover {
    background: #ffffff !important;
    border-color: rgba(192, 57, 43, 0.2) !important;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* Modern Checkbox elements */
.topping-check-box {
    width: 22px !important;
    height: 22px !important;
    border-radius: 6px !important;
    border: 2px solid #ccc !important;
    transition: all 0.2s ease !important;
}

.topping-check-box.checked {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
    color: white !important;
}

.topping-check-box.removed {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

/* Loyalty Pill styling */
.customizer-options-column .loyalty-pill {
    background: linear-gradient(135deg, #f39c12 0%, #d35400 100%) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 8px 16px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.3) !important;
    font-size: 13px !important;
}

/* Main buttons glow */
.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #e74c3c 100%) !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.4) !important;
}

/* ==========================================================================
   ADMIN PANEL STYLES (Cyber / Neon Command Mode)
   ========================================================================== */

.admin-dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 81px);
    background-color: #0c0c16;
    color: #cbd5e1;
    overflow: hidden;
    font-family: var(--font-body);
}

/* Admin Sidebar */
.admin-sidebar {
    background-color: #111120;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    letter-spacing: -0.01em;
}

.admin-sidebar-header .logo-icon {
    font-size: 24px;
}

.admin-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.admin-nav-item {
    background: transparent;
    border: none;
    color: #94a3b8;
    padding: 14px 18px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    border-left: 3px solid transparent;
    width: 100%;
}

.admin-nav-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.admin-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
    color: #ffffff;
}

.admin-nav-item.active {
    background-color: rgba(192, 57, 43, 0.12);
    color: var(--primary-hover);
    border-left-color: var(--primary);
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.2);
}

.admin-sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Admin Main Content */
.admin-main-content {
    background-color: #08080e;
    padding: 40px;
    overflow-y: auto;
}

.admin-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-main-header h2 {
    color: #ffffff;
    font-size: 24px;
    margin: 0;
}

.admin-user-badge {
    background-color: rgba(230, 126, 34, 0.1);
    border: 1px solid rgba(230, 126, 34, 0.2);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Admin Cards */
.admin-card {
    background-color: rgba(20, 20, 35, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.admin-card h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 10px 0;
}

/* Admin Responsive Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 15px;
    background: transparent;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background-color: rgba(255, 255, 255, 0.02);
    color: #94a3b8;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 16px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    vertical-align: middle;
}

.admin-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.01);
}

.admin-tbl-img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Admin Badges */
.admin-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.badge-category {
    background-color: rgba(41, 182, 246, 0.12);
    color: #29b6f6;
}

.badge-tag {
    background-color: rgba(230, 126, 34, 0.15);
    color: var(--accent);
}

.badge-status-received {
    background-color: rgba(156, 39, 176, 0.15);
    color: #ba68c8;
}

.badge-status-cooking {
    background-color: rgba(255, 152, 0, 0.15);
    color: #ffb74d;
}

.badge-status-onway {
    background-color: rgba(33, 150, 243, 0.15);
    color: #64b5f6;
}

.badge-status-delivered {
    background-color: rgba(76, 175, 80, 0.15);
    color: #81c784;
}

/* Cyber Form Inputs */
.cyber-input {
    background-color: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

.cyber-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px rgba(192, 57, 43, 0.4) !important;
}

.cyber-btn {
    box-shadow: 0 0 15px rgba(192, 57, 43, 0.3);
}

.cyber-btn:hover {
    box-shadow: 0 0 25px rgba(192, 57, 43, 0.6);
}

/* Custom Modals in Dark Mode */
.admin-login-modal, .admin-edit-modal {
    background-color: #121222 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6) !important;
}

.admin-login-modal h2, .admin-edit-modal h3 {
    color: #ffffff;
    margin-top: 0;
}

.admin-login-modal label, .admin-edit-modal label {
    color: #94a3b8;
}

.admin-login-modal .form-control, .admin-edit-modal .form-control {
    background-color: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.admin-login-modal .form-control:focus, .admin-edit-modal .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(192, 57, 43, 0.3);
}

.admin-login-modal .modal-close-btn, .admin-edit-modal .modal-close-btn {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.admin-login-modal .modal-close-btn:hover, .admin-edit-modal .modal-close-btn:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Custom Toggle Switch for Payments */
.admin-toggle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.admin-toggle-row:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.toggle-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toggle-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
}

.toggle-desc {
    font-size: 12px;
    color: #94a3b8;
}

/* Pure CSS Toggle Switch */
input.admin-checkbox-switch {
    position: relative;
    appearance: none;
    width: 50px;
    height: 26px;
    background: #334155;
    border-radius: 15px;
    outline: none;
    cursor: pointer;
    transition: background 0.3s;
}

input.admin-checkbox-switch::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    left: 3px;
    top: 3px;
    background: #ffffff;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input.admin-checkbox-switch:checked {
    background: var(--success);
}

input.admin-checkbox-switch:checked::after {
    transform: translateX(24px);
}

/* Small adjustments to buttons */
.btn-xs {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
}

.admin-nav-btn {
    border-radius: 8px;
    font-weight: 700;
}

/* Sidebar responsive behaviour */
@media (max-width: 992px) {
    .admin-dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .admin-sidebar-header {
        width: 100%;
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .admin-nav-menu {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .admin-nav-item {
        white-space: nowrap;
        padding: 10px 14px;
        width: auto;
    }
    
    .admin-sidebar-footer {
        width: 100%;
        padding-top: 10px;
        border-top: none;
    }
}

/* ==========================================================================
   HERO BANNER CAROUSEL / SLIDER STYLES
   ========================================================================== */
.hero-banner-carousel {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05), var(--shadow-neon);
    border: 1px solid var(--border);
    background-color: var(--bg-card);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    display: flex;
    align-items: center;
    padding: 40px 60px;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dark gradient overlay for slides that have a background image */
.carousel-slide[style*="background-image"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    z-index: 1;
}

.carousel-slide-overlay {
    max-width: 600px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.carousel-slide-overlay h2 {
    font-size: 32px;
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.25;
    margin: 0;
}

.carousel-slide[style*="background-image"] .carousel-slide-overlay h2 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.carousel-slide-overlay p {
    color: #5d4037;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 10px 0;
}

.carousel-slide[style*="background-image"] .carousel-slide-overlay p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.carousel-cta {
    margin-top: 5px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-main);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-arrow:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-banner-carousel {
        height: auto;
        min-height: 260px;
    }
    
    .carousel-slide {
        padding: 30px;
    }
    
    .carousel-slide-overlay h2 {
        font-size: 24px;
    }
    
    .carousel-slide-overlay p {
        font-size: 13px;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

/* Premium Custom Dropdowns for Menu Customizer */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    user-select: none;
}

.custom-select-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: var(--bg-card);
    border: 1.5px solid var(--border);
    color: var(--text-main);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-select-trigger:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.05);
}

.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(192, 57, 43, 0.1);
}

.custom-select-trigger i {
    font-size: 11px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.custom-select-wrapper.open .custom-select-trigger i {
    transform: rotate(180deg);
    color: var(--primary);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select-wrapper.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    padding: 10px 16px 6px;
    letter-spacing: 0.5px;
    background-color: var(--bg-card-hover);
    border-top: 1px solid var(--border);
}

.custom-select-group-title:first-child {
    border-top: none;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.custom-select-option {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.15s ease;
}

.custom-select-option:hover {
    background-color: rgba(192, 57, 43, 0.05);
    color: var(--primary);
}

.custom-select-option.selected {
    background-color: var(--primary);
    color: #ffffff;
    font-weight: 600;
}

.custom-select-option.selected .option-surcharge {
    color: rgba(255, 255, 255, 0.85);
}

.option-surcharge {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
}
