/*
Theme Name: QuickPick Theme
Theme URI: https://ealith.com
Author: Ealith Team
Author URI: https://ealith.com
Description: QR ile açılan menü sipariş sistemi için özel WordPress teması. Waffle, dondurma ve içecek siparişleri için modern ve kullanıcı dostu arayüz.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: menu, qr-code, restaurant, cafe, waffle, ice-cream, ordering-system
Text Domain: quickpick-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Ana Renkler */
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #ec4899;
    --secondary-dark: #db2777;
    --accent: #06b6d4;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradient Renkler */
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    --gradient-bg: linear-gradient(135deg, #fdf2f8 0%, #fff7ed 100%);
    
    /* Neutral Renkler */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Gölgeler */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Özel Renkler */
    --info-bg: #dbeafe;
    --info-border: #93c5fd;
    --info-text: #1e40af;
    --warning-bg: #fef3c7;
    --warning-border: #fbbf24;
    --warning-text: #92400e;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background: #fafafa;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Stiller */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gray-800);
}

.logo-text {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.logo-text .text-gradient {
    /* Dinamik CSS functions.php'den gelecek */
}

.logo-text .emoji {
    color: #8B4513;
    font-size: 2rem;
}

.subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Ana İçerik */
.main-content {
    padding: 1.5rem 0;
}

/* Kategori Stiller */
.category {
    margin-bottom: 1.5rem;
}

.category-header {
    background: var(--category-gradient, linear-gradient(135deg, var(--category-color, #8b5cf6) 0%, var(--category-end-color, #6366f1) 100%));
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.category-header:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.category-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.item-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.category-arrow {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.category-arrow.open {
    transform: rotate(180deg);
}

/* Kategori İçeriği */
.category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    padding: 0;
}

.category-content.open {
    max-height: 800px;
    opacity: 1;
    padding: 1rem 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

/* Bilgi Kutuları */
.info-box {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-box.blue {
    background: var(--info-bg);
    border: 1px solid var(--info-border);
    color: var(--info-text);
}

.info-box.orange {
    background: var(--warning-bg);
    border: 1px solid var(--warning-border);
    color: var(--warning-text);
}

.info-box.green {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.info-box.red {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.info-box.purple {
    background: #faf5ff;
    border: 1px solid #e9d5ff;
    color: #7c3aed;
}

.info-box.yellow {
    background: #fefce8;
    border: 1px solid #fde047;
    color: #a16207;
}

.info-box.pink {
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    color: #be185d;
}

.info-box.teal {
    background: #f0fdfa;
    border: 1px solid #99f6e4;
    color: #0f766e;
}

.info-box.gray {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    color: #374151;
}

.info-box.indigo {
    background: #f0f9ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Alt Kategori */
.subcategory {
    margin-bottom: 1.5rem;
}

.subcategory-header {
    background: var(--category-gradient, linear-gradient(135deg, var(--category-color, #8b5cf6) 0%, var(--category-end-color, #6366f1) 100%));
    color: var(--white);
    padding: 0.75rem;
    border-radius: 0.375rem;
    text-align: center;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subcategory-title {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Ürün Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Ürün Kartları */
.product-card {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.product-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-emoji {
    font-size: 1.5rem;
}

.product-name {
    font-weight: 500;
    color: var(--gray-800);
    font-size: 0.875rem;
}

.product-price {
    font-weight: 600;
    font-size: 0.875rem;
}

.price-free {
    color: var(--success);
}

.price-extra {
    color: var(--warning);
}

.price-regular {
    color: var(--primary);
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer p {
    margin-bottom: 0.25rem;
}

.footer .support-email {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Sipariş sistemi stilleri */
.product-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-left: 10px;
}

.product-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    cursor: pointer;
}

.product-checkbox .checkmark {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #8B4513;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.product-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #8B4513;
    border-color: #8B4513;
}

.product-checkbox input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.product-checkbox:hover .checkmark {
    border-color: #A0522D;
    box-shadow: 0 0 5px rgba(139, 69, 19, 0.3);
}

/* Sipariş oluştur butonu */
.order-create-section {
    margin: 40px 0;
    text-align: center;
}

.create-order-btn {
    background: var(--order-button-bg, var(--primary));
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    display: block;
    margin: 0 auto;
}

.create-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    background: var(--order-button-bg-hover, var(--primary-dark));
}

/* Sipariş özeti */
.order-summary {
    background: #f9f9f9;
    border: 2px solid #8B4513;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: left;
}

.order-summary h3 {
    color: #8B4513;
    margin-top: 0;
    margin-bottom: 15px;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    gap: 10px;
}

.selected-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: bold;
    flex: 1;
}

.item-category {
    color: #666;
    font-size: 12px;
    margin: 0 10px;
}

.item-quantity {
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
}

.item-price {
    color: #8B4513;
    font-weight: bold;
}

.total-section {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    text-align: right;
    font-size: 18px;
    color: #8B4513;
}

/* Müşteri formu */
.customer-form {
    margin-top: 20px;
}

.customer-form h4 {
    color: #8B4513;
    margin-bottom: 15px;
}

.customer-form input,
.customer-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.customer-form input:focus,
.customer-form textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.order-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.send-order-btn,
.cancel-order-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    box-shadow: var(--shadow-sm);
}

.send-order-btn {
    background: var(--success);
    color: white;
}

.send-order-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cancel-order-btn {
    background: var(--error);
    color: white;
}

.cancel-order-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Responsive Tasarım */
@media (max-width: 767px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .main-content {
        padding: 1rem 0;
    }
    
    .category-header {
        padding: 0.875rem;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .product-card {
        padding: 0.875rem;
    }
    
    .create-order-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .order-actions {
        flex-direction: column;
    }
    
    .selected-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .item-category {
        margin: 0;
    }
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.hidden {
    display: none;
}

/* Teslimat ve Ödeme Seçenekleri */
.delivery-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.radio-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    min-height: 48px;
}

.radio-option:hover {
    border-color: #8B4513;
    background: #faf5f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.15);
}

.radio-option input[type="radio"] {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #8B4513;
    cursor: pointer;
}

.radio-option input[type="radio"]:checked + span {
    color: #8B4513;
    font-weight: 600;
}

.radio-option span {
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
    padding-left: 30px; /* Radio button için alan bırak */
    font-weight: 500;
}

.radio-option input[type="radio"]:checked {
    background: #8B4513;
    border-color: #8B4513;
}

.radio-option:has(input[type="radio"]:checked) {
    border-color: #8B4513;
    background: linear-gradient(135deg, #faf5f0 0%, #f0e6d6 100%);
    box-shadow: 0 4px 16px rgba(139, 69, 19, 0.2);
}

/* Adres ve Masa No Alanları */
.address-section,
.table-section {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
}

.table-section input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    box-sizing: border-box;
}

.table-section input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1);
}

.address-section textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    background: #fff;
}

.address-section textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 2px rgba(139, 69, 19, 0.1);
}

/* Teslimat Ücreti Stilleri */
.selected-item.delivery-fee {
    border-left: 4px solid #ff6b35;
    background: linear-gradient(135deg, #fff5f3 0%, #fef2f2 100%);
    border-radius: 8px;
    margin: 8px 0;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
}

.selected-item.delivery-fee:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.15);
}

.selected-item.delivery-free {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-radius: 8px;
    margin: 8px 0;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
    transition: all 0.3s ease;
}

.selected-item.delivery-free:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.selected-item.delivery-fee .item-name {
    color: #dc2626;
    font-weight: 600;
    font-size: 14px;
}

.selected-item.delivery-free .item-name {
    color: #059669;
    font-weight: 600;
    font-size: 14px;
}

.selected-item.delivery-fee .item-price,
.selected-item.delivery-free .item-price {
    font-weight: 700;
    font-size: 15px;
}

.selected-item.delivery-fee .item-price {
    color: #dc2626;
}

.selected-item.delivery-free .item-price {
    color: #059669;
}

.selected-item.delivery-fee .item-category {
    color: #dc2626;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

.selected-item.delivery-free .item-category {
    color: #059669;
    font-size: 11px;
    font-weight: 500;
    opacity: 0.8;
}

/* Teslimat ücreti için özel ikon */
.selected-item.delivery-fee .item-name::before {
    content: "🚚 ";
    margin-right: 4px;
}

.selected-item.delivery-free .item-name::before {
    content: "✅ ";
    margin-right: 4px;
}

/* Miktar Kontrol Butonları - Minimalist Tasarım */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 10px;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.quantity-btn:hover:not(:disabled) {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.quantity-btn:active:not(:disabled) {
    background: #f3f4f6;
    transform: scale(0.95);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #9ca3af;
}

.quantity-display {
    min-width: 32px;
    text-align: center;
    font-weight: 500;
    font-size: 16px;
    color: #374151;
    padding: 4px 8px;
}

.combo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
}

.combo-header h4 {
    flex: 1;
    min-width: 150px;
    margin: 0;
    color: #1e293b;
    font-weight: 600;
}

.combo-header .quantity-controls {
    margin: 0;
}

/* Ayrı Ürünler Stilleri */
.separate-items-group {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.separate-items-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.separate-items-header h4 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.separate-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.separate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 15px;
}

.separate-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.separate-item .item-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 16px;
    flex: 1;
}

.separate-item .item-category {
    color: #64748b;
    font-size: 12px;
    margin-left: 8px;
    font-weight: 500;
}

.separate-item .item-price {
    font-weight: 700;
    color: #059669;
    font-size: 16px;
    margin-left: 15px;
}

/* Item Quantity Controls */
.item-quantity-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 8px 0;
}

.item-quantity-controls .quantity-btn {
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 4px;
}

.item-quantity-controls .quantity-display {
    min-width: 28px;
    font-size: 14px;
    padding: 2px 6px;
}

.remove-item-btn {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 10px;
    font-size: 14px;
}

.remove-item-btn:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.remove-item-btn:active {
    transform: scale(0.95);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .delivery-options,
    .payment-options {
        gap: 8px;
    }
    
    .radio-option {
        padding: 10px;
    }
    
    .radio-option span {
        font-size: 13px;
    }
    
    .quantity-controls {
        margin: 5px 0;
        gap: 6px;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 4px;
    }
    
    .quantity-display {
        min-width: 30px;
        font-size: 14px;
        padding: 2px 6px;
    }
    
    .combo-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .combo-header .quantity-controls {
        align-self: center;
    }
    
    .separate-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .separate-item .item-name,
    .separate-item .item-category {
        margin: 0;
    }
    
    .separate-item .quantity-controls {
        align-self: center;
    }
    
    .separate-item .item-price {
        margin: 0;
        align-self: center;
    }
    
    .remove-item-btn {
        align-self: center;
        margin: 0;
    }
}