/* ==========================================
   OMECA - Bebek & Çocuk E-Ticaret
   Sıcak Güneş Tonları Tema
   ========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&family=Quicksand:wght@400;500;600;700&display=swap');

/* CSS Variables - Warm Sun Color Palette */
:root {
    /* Primary Colors - Warm Orange/Gold */
    --primary: #E8A838;
    --primary-light: #F5D590;
    --primary-dark: #C98B1D;
    /* Secondary Colors - Warm Brown */
    --secondary: #D4A574;
    --secondary-light: #E8CDB0;
    --secondary-dark: #B8875A;
    /* Accent Colors - Warm Tones */
    --accent-gold: #F4C430;
    --accent-orange: #F5A623;
    --accent-peach: #FFCBA4;
    --accent-coral: #FF8C69;
    --accent-cream: #FFF8E7;
    --accent-brown: #8B6914;
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #FFFDF7;
    --cream: #FFF9EE;
    --light-gray: #F7F3ED;
    --gray: #9e9e9e;
    --dark-gray: #6b6b6b;
    --text: #4A3728;
    --text-light: #7A6555;
    /* Functional Colors */
    --success: #7CB342;
    --warning: #FFB300;
    --danger: #E57373;
    --info: #64B5F6;
    /* Typography */
    --font-primary: 'Nunito', sans-serif;
    --font-display: 'Quicksand', sans-serif;
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
    /* Shadows - Warm tinted */
    --shadow-soft: 0 4px 20px rgba(232, 168, 56, 0.15);
    --shadow-medium: 0 8px 30px rgba(232, 168, 56, 0.2);
    --shadow-hover: 0 12px 40px rgba(232, 168, 56, 0.25);
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

    /* Logo - Büyük boyut */
    img.navbar-logo {
        height: 70px !important;
        max-height: 80px !important;
        max-width: none !important;
        width: auto !important;
        object-fit: contain;
    }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-cream) 50%, var(--primary-light) 100%);
    padding: var(--space-md) 0;
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark) !important;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

    .navbar-brand .logo-icon {
        font-size: 2rem;
    }

.navbar-logo {
    height: 70px !important;
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain;
}

.navbar-logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
}

    .navbar-logo-text .logo-icon {
        font-size: 2rem;
    }

.nav-link {
    font-weight: 600;
    color: var(--text) !important;
    padding: var(--space-sm) var(--space-md) !important;
    border-radius: var(--radius-md);
    transition: var(--transition-medium);
}

    .nav-link:hover {
        color: var(--primary-dark) !important;
        background-color: var(--primary-light);
    }

    .nav-link.active {
        color: var(--white) !important;
        background-color: var(--primary);
    }

/* Cart Badge */
.cart-badge {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-coral);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Search Bar */
.search-form {
    position: relative;
}

.search-input {
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-xl);
    padding: var(--space-sm) var(--space-lg);
    padding-right: 50px;
    font-size: 0.9rem;
    width: 250px;
    transition: var(--transition-medium);
    background: var(--white);
}

    .search-input:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(232, 168, 56, 0.2);
    }

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    border: none;
    border-radius: var(--radius-full);
    width: 35px;
    height: 35px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-fast);
}

    .search-btn:hover {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--primary-light) 50%, var(--accent-peach) 100%);
    padding: var(--space-2xl) 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
        opacity: 0.4;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, var(--accent-orange) 0%, transparent 70%);
        opacity: 0.3;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    color: var(--text);
    margin-bottom: var(--space-md);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(232, 168, 56, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232, 168, 56, 0.5);
        color: var(--white);
    }

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 165, 116, 0.5);
        color: var(--white);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
}

    .btn-outline:hover {
        background: var(--primary);
        color: var(--white);
    }

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-dark);
}

    .btn-outline-primary:hover {
        background: var(--primary);
        color: var(--white);
    }

.btn-outline-secondary {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--text);
}

    .btn-outline-secondary:hover {
        background: var(--light-gray);
        color: var(--text);
    }

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #689F38 100%);
    color: var(--white);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger) 0%, #D32F2F 100%);
    color: var(--white);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1.1rem;
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: 0.85rem;
}

/* ==========================================
   CATEGORY CARDS
   ========================================== */
.category-section {
    padding: var(--space-2xl) 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: var(--space-xl);
    position: relative;
    color: var(--text);
}

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent-orange));
        margin: var(--space-md) auto 0;
        border-radius: var(--radius-sm);
    }

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .category-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent-orange), var(--accent-coral));
    }

    .category-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

    .category-card .icon-wrapper {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-peach) 100%);
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--space-md);
        font-size: 2.5rem;
    }

    .category-card h3 {
        font-size: 1.3rem;
        margin-bottom: var(--space-sm);
        color: var(--text);
    }

    .category-card p {
        color: var(--text-light);
        font-size: 0.9rem;
    }

    .category-card .product-count {
        background: var(--accent-gold);
        color: var(--text);
        padding: var(--space-xs) var(--space-md);
        border-radius: var(--radius-xl);
        font-size: 0.8rem;
        font-weight: 600;
        margin-top: var(--space-md);
    }

/* ==========================================
   PRODUCT CARDS
   ========================================== */
.product-section {
    padding: var(--space-2xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-medium);
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-hover);
    }

    .product-card .image-wrapper {
        position: relative;
        padding-top: 100%;
        background: linear-gradient(135deg, var(--accent-cream) 0%, var(--primary-light) 100%);
        overflow: hidden;
    }

        .product-card .image-wrapper img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            object-fit: contain;
            transition: var(--transition-medium);
        }

    .product-card:hover .image-wrapper img {
        transform: translate(-50%, -50%) scale(1.05);
    }

    .product-card .badge-featured {
        position: absolute;
        top: var(--space-md);
        left: var(--space-md);
        background: var(--accent-coral);
        color: var(--white);
        padding: var(--space-xs) var(--space-md);
        border-radius: var(--radius-xl);
        font-size: 0.75rem;
        font-weight: 700;
    }

    .product-card .card-body {
        padding: var(--space-md);
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-card .category-tag {
        color: var(--primary-dark);
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: var(--space-xs);
    }

    .product-card h5 {
        font-size: 1rem;
        margin-bottom: var(--space-sm);
        line-height: 1.4;
        color: var(--text);
    }

    .product-card .price {
        font-family: var(--font-display);
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-top: auto;
        margin-bottom: var(--space-md);
    }

        .product-card .price small {
            font-size: 0.8rem;
            color: var(--text-light);
        }

    .product-card .btn-add-cart {
        width: 100%;
        justify-content: center;
    }

    /* Out of Stock */
    .product-card.out-of-stock .image-wrapper::after {
        content: 'Stokta Yok';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.7);
        color: var(--white);
        padding: var(--space-sm) var(--space-lg);
        border-radius: var(--radius-md);
        font-weight: 600;
    }

/* ==========================================
   PRODUCT DETAIL
   ========================================== */
.product-detail {
    padding: var(--space-2xl) 0;
}

    .product-detail .main-image {
        background: linear-gradient(135deg, var(--accent-cream) 0%, var(--primary-light) 100%);
        border-radius: var(--radius-lg);
        padding: var(--space-xl);
        text-align: center;
    }

        .product-detail .main-image img {
            max-height: 400px;
            object-fit: contain;
        }

    .product-detail .product-info h1 {
        font-size: 2rem;
        margin-bottom: var(--space-md);
        color: var(--text);
    }

    .product-detail .price {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-dark);
        margin-bottom: var(--space-lg);
    }

    .product-detail .attributes {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .product-detail .attribute {
        background: var(--light-gray);
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-md);
        font-size: 0.9rem;
    }

        .product-detail .attribute strong {
            color: var(--primary-dark);
        }

    .product-detail .quantity-selector {
        display: flex;
        align-items: center;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

.quantity-selector .qty-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    background: var(--white);
    color: var(--primary-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

    .quantity-selector .qty-btn:hover {
        background: var(--primary);
        color: var(--white);
    }

.quantity-selector .qty-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ==========================================
   CART
   ========================================== */
.cart-section {
    padding: var(--space-2xl) 0;
}

.cart-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

    .cart-item .item-image {
        width: 100px;
        height: 100px;
        background: var(--primary-light);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .cart-item .item-image img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

    .cart-item .item-details {
        flex: 1;
    }

        .cart-item .item-details h5 {
            margin-bottom: var(--space-xs);
            color: var(--text);
        }

    .cart-item .item-price {
        font-family: var(--font-display);
        font-weight: 700;
        color: var(--primary-dark);
        font-size: 1.2rem;
    }

    .cart-item .quantity-controls {
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }

    .cart-item .remove-btn {
        color: var(--danger);
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        padding: var(--space-sm);
        transition: var(--transition-fast);
    }

        .cart-item .remove-btn:hover {
            color: #c62828;
        }

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
}

    .cart-summary h4 {
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-md);
        border-bottom: 2px dashed var(--primary-light);
        color: var(--text);
    }

    .cart-summary .summary-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: var(--space-md);
        font-size: 1rem;
    }

    .cart-summary .total-row {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-dark);
        padding-top: var(--space-md);
        border-top: 2px solid var(--primary);
        margin-top: var(--space-md);
    }

    .cart-summary .free-shipping {
        background: var(--success);
        color: var(--white);
        padding: var(--space-sm) var(--space-md);
        border-radius: var(--radius-md);
        text-align: center;
        margin-bottom: var(--space-lg);
        font-weight: 600;
    }

/* ==========================================
   FORMS
   ========================================== */
.form-control {
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

    .form-control:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(232, 168, 56, 0.2);
        outline: none;
    }

.form-label {
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-select {
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
}

    .form-select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(232, 168, 56, 0.2);
    }

/* Auth Forms */
.auth-container {
    max-width: 450px;
    margin: var(--space-2xl) auto;
    padding: var(--space-xl);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-medium);
}

    .auth-card h2 {
        text-align: center;
        margin-bottom: var(--space-xl);
        color: var(--text);
    }

/* Auth Page */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--primary-light) 100%);
}

.auth-logo .logo-img {
    max-height: 70px;
    max-width: 220px;
}

/* ==========================================
   CHECKOUT
   ========================================== */
.checkout-section {
    padding: var(--space-2xl) 0;
}

.checkout-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-soft);
}

    .checkout-form h3 {
        margin-bottom: var(--space-lg);
        padding-bottom: var(--space-md);
        border-bottom: 2px dashed var(--primary-light);
        color: var(--text);
    }

/* ==========================================
   ORDER CONFIRMATION
   ========================================== */
.confirmation-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: var(--space-2xl) auto;
}

    .confirmation-card .success-icon {
        width: 100px;
        height: 100px;
        background: var(--success);
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto var(--space-lg);
        font-size: 3rem;
        color: var(--white);
    }

    .confirmation-card .order-number {
        background: var(--light-gray);
        padding: var(--space-md) var(--space-lg);
        border-radius: var(--radius-md);
        font-family: monospace;
        font-size: 1.2rem;
        margin: var(--space-lg) 0;
    }

/* ==========================================
   ADMIN PANEL
   ========================================== */
.admin-layout {
    background: var(--light-gray);
}

.admin-sidebar {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--accent-brown) 100%);
    min-height: 100vh;
    padding: var(--space-lg);
    position: fixed;
    width: 250px;
    left: 0;
    top: 0;
}

    .admin-sidebar .brand {
        color: var(--white);
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: var(--space-xl);
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }

    .admin-sidebar .nav-item {
        margin-bottom: var(--space-xs);
    }

    .admin-sidebar .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: var(--space-sm) var(--space-md) !important;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        gap: var(--space-sm);
    }

        .admin-sidebar .nav-link:hover,
        .admin-sidebar .nav-link.active {
            background: rgba(255, 255, 255, 0.2);
            color: var(--white) !important;
        }

.admin-content {
    margin-left: 250px;
    padding: var(--space-xl);
    min-height: 100vh;
}

.admin-header {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    margin-bottom: var(--space-lg);
}

    .admin-card h5 {
        margin-bottom: var(--space-md);
        padding-bottom: var(--space-sm);
        border-bottom: 2px dashed var(--primary-light);
        color: var(--text);
    }

/* Stats Cards */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .stat-card.products::before {
        background: var(--primary);
    }

    .stat-card.categories::before {
        background: var(--secondary);
    }

    .stat-card.orders::before {
        background: var(--success);
    }

    .stat-card.revenue::before {
        background: var(--accent-gold);
    }

    .stat-card .stat-value {
        font-family: var(--font-display);
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text);
    }

    .stat-card .stat-label {
        color: var(--text-light);
        font-size: 0.9rem;
    }

/* Admin Tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th,
    .admin-table td {
        padding: var(--space-md);
        text-align: left;
        border-bottom: 1px solid var(--light-gray);
    }

    .admin-table th {
        background: var(--light-gray);
        font-weight: 600;
        color: var(--text);
    }

    .admin-table tr:hover {
        background: var(--cream);
    }

    .admin-table .thumbnail {
        width: 50px;
        height: 50px;
        background: var(--primary-light);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .admin-table .thumbnail img {
            max-width: 40px;
            max-height: 40px;
            object-fit: contain;
        }

    .admin-table .actions {
        display: flex;
        gap: var(--space-sm);
    }

    .admin-table .btn-icon {
        width: 35px;
        height: 35px;
        border-radius: var(--radius-full);
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        transition: var(--transition-fast);
    }

    .admin-table .btn-edit {
        background: var(--info);
        color: var(--white);
    }

    .admin-table .btn-delete {
        background: var(--danger);
        color: var(--white);
    }

/* Status Badges */
.badge {
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
}

.bg-warning {
    background: var(--warning) !important;
    color: var(--text) !important;
}

.bg-info {
    background: var(--info) !important;
    color: var(--white) !important;
}

.bg-primary {
    background: var(--primary) !important;
    color: var(--white) !important;
}

.bg-success {
    background: var(--success) !important;
    color: var(--white) !important;
}

.bg-danger {
    background: var(--danger) !important;
    color: var(--white) !important;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--primary-light) 50%, var(--secondary-light) 100%);
    padding: var(--space-2xl) 0 var(--space-lg);
    margin-top: auto;
}

    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: var(--space-md);
        color: var(--text);
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li {
            margin-bottom: var(--space-sm);
        }

            .footer ul li a {
                color: var(--text-light);
                transition: var(--transition-fast);
            }

                .footer ul li a:hover {
                    color: var(--primary-dark);
                }

    .footer .social-links {
        display: flex;
        gap: var(--space-md);
    }

        .footer .social-links a {
            width: 40px;
            height: 40px;
            background: var(--white);
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            transition: var(--transition-fast);
        }

            .footer .social-links a:hover {
                background: var(--primary);
                color: var(--white);
            }

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    margin-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-logo {
    max-height: 50px !important;
    width: auto;
}

/* ==========================================
   ALERTS & MESSAGES
   ========================================== */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.alert-success {
    background: #C8E6C9;
    color: #2E7D32;
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: #FFCDD2;
    color: #C62828;
    border-left: 4px solid var(--danger);
}

.alert-warning {
    background: #FFE0B2;
    color: #E65100;
    border-left: 4px solid var(--warning);
}

.alert-info {
    background: #BBDEFB;
    color: #1565C0;
    border-left: 4px solid var(--info);
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-medium);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

    .toast.success {
        border-left: 4px solid var(--success);
    }

    .toast.error {
        border-left: 4px solid var(--danger);
    }

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ==========================================
   PAGINATION
   ========================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
}

    .pagination .page-link {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--radius-full);
        background: var(--white);
        color: var(--text);
        border: 2px solid var(--primary-light);
        transition: var(--transition-fast);
    }

        .pagination .page-link:hover,
        .pagination .page-item.active .page-link {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }

/* ==========================================
   EMPTY STATES
   ========================================== */
.empty-state {
    text-align: center;
    padding: var(--space-2xl);
}

    .empty-state .icon {
        font-size: 5rem;
        color: var(--primary-light);
        margin-bottom: var(--space-lg);
    }

    .empty-state h3 {
        margin-bottom: var(--space-md);
        color: var(--text);
    }

    .empty-state p {
        color: var(--text-light);
        margin-bottom: var(--space-lg);
    }

/* ==========================================
   BREADCRUMB
   ========================================== */
.breadcrumb {
    background: transparent;
    padding: var(--space-md) 0;
    margin-bottom: var(--space-md);
}

.breadcrumb-item a {
    color: var(--primary-dark);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--primary);
}

/* ==========================================
   LOADING SPINNER
   ========================================== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ==========================================
   CARDS
   ========================================== */
.card {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.card-header {
    background: var(--white);
    border-bottom: 2px dashed var(--primary-light);
    padding: var(--space-md) var(--space-lg);
    font-weight: 600;
}

.card-body {
    padding: var(--space-lg);
}

/* ==========================================
   DROPZONE
   ========================================== */
.dropzone {
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-cream);
}

    .dropzone:hover, .dropzone.dragover {
        border-color: var(--primary);
        background: var(--primary-light);
    }

.dropzone-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.dropzone-preview {
    position: relative;
    width: 100%;
}

    .dropzone-preview img {
        max-width: 100%;
        max-height: 200px;
        object-fit: contain;
        border-radius: var(--radius-md);
    }

    .dropzone-preview .remove-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .admin-sidebar {
        position: relative;
        width: 100%;
        min-height: auto;
    }

    .admin-content {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .navbar-logo {
        height: 50px !important;
    }
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
    }

        .cart-item .quantity-controls {
            margin-top: var(--space-md);
        }

    .search-input {
        width: 180px;
    }

    .product-detail .main-image {
        margin-bottom: var(--space-lg);
    }

    .navbar-logo {
        height: 45px !important;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .navbar-brand {
        font-size: 1.4rem;
    }

    .navbar-logo {
        height: 40px !important;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.text-primary {
    color: var(--primary-dark) !important;
}

.text-secondary {
    color: var(--secondary-dark) !important;
}

.text-muted {
    color: var(--text-light) !important;
}

.text-success {
    color: #2E7D32 !important;
}

.text-danger {
    color: #C62828 !important;
}

.bg-light {
    background-color: var(--light-gray) !important;
}

.bg-white {
    background-color: var(--white) !important;
}

.rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-soft) !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-3 {
    margin-bottom: var(--space-md) !important;
}

.mb-4 {
    margin-bottom: var(--space-lg) !important;
}

.mb-5 {
    margin-bottom: var(--space-xl) !important;
}

.p-3 {
    padding: var(--space-md) !important;
}

.p-4 {
    padding: var(--space-lg) !important;
}

/* Input Group */
.input-group-text {
    background: var(--light-gray);
    border: 2px solid var(--primary-light);
    border-right: none;
    color: var(--text-light);
}

.input-group .form-control {
    border-left: none;
}

    .input-group .form-control:focus {
        box-shadow: none;
    }

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

.input-group:focus-within .form-control {
    border-color: var(--primary);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid var(--light-gray);
    }

    .divider span {
        padding: 0 1rem;
        color: var(--text-light);
        font-size: 0.9rem;
    }

/* Sidebar Brand */
.sidebar-brand {
    text-align: center;
    padding: var(--space-md) 0;
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

    .sidebar-brand h4 {
        color: var(--white);
        margin: 0;
    }

    .sidebar-brand small {
        color: rgba(255,255,255,0.7);
        font-size: 0.8rem;
    }

    .sidebar-brand img {
        max-height: 50px;
        margin-bottom: var(--space-sm);
    }

#toast-container > div {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #3b2f2f;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.cart-badge {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff6b6b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 50%;
    transition: transform .25s ease;
}

    .cart-count.bump {
        transform: scale(1.4);
    }
#toast-container > div {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: #3b2f2f;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

/* ==========================================
   OMECA - Main Styles
   ========================================== */

/* CSS Variables (devam eden kısım aynen kalacak) */
/* ... önceki değişkenler ... */

/* ==========================================
   BOTTOM NAVBAR - FIX #6
   ========================================== */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

    .bottom-navbar .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #666;
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        position: relative;
        transition: color 0.2s ease;
    }

        .bottom-navbar .nav-item:hover,
        .bottom-navbar .nav-item:active {
            color: var(--primary-color, #f8b4c6);
        }

        .bottom-navbar .nav-item i {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }

        .bottom-navbar .nav-item .cart-count {
            position: absolute;
            top: 0;
            right: 0.5rem;
            background: #ff4444;
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            min-width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 4px;
        }

/* Mobilde body'ye bottom padding ekle ki içerik navbar altında kalmasın */
@media (max-width: 991.98px) {
    body {
        padding-bottom: 70px;
    }
}

/* ==========================================
   SEARCH OVERLAY - FIX #6
   ========================================== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
}

    .search-overlay.active {
        display: flex;
    }

.search-overlay-content {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.2s ease;
}

    .search-close:hover {
        transform: rotate(90deg);
    }

.search-form-overlay {
    display: flex;
    gap: 1rem;
}

    .search-form-overlay .search-input {
        flex: 1;
        padding: 1rem 1.5rem;
        border: none;
        border-radius: 50px;
        font-size: 1.1rem;
        background: #fff;
    }

    .search-form-overlay .btn {
        padding: 1rem 2rem;
        border-radius: 50px;
        white-space: nowrap;
    }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   VARIANT SELECTOR (Beden Seçimi)
   ========================================== */
.variant-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.variant-option {
    position: relative;
}

    .variant-option input[type="radio"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

.variant-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    background: #fff;
}

    .variant-label:hover {
        border-color: var(--primary-color, #f8b4c6);
        background: rgba(248, 180, 198, 0.1);
    }

.variant-option input[type="radio"]:checked + .variant-label {
    border-color: var(--primary-color, #f8b4c6);
    background: var(--primary-color, #f8b4c6);
    color: #fff;
}

.variant-option input[type="radio"]:disabled + .variant-label {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
}

.variant-stock-info {
    font-size: 0.75rem;
    color: #999;
    display: block;
    margin-top: 0.25rem;
}

/* ==========================================
   ADMIN VARIANT TABLE
   ========================================== */
.variants-table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
}

    .variants-table th,
    .variants-table td {
        padding: 0.75rem;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }

    .variants-table th {
        background: #f5f5f5;
        font-weight: 600;
        color: #333;
    }

.variant-row-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-remove-variant {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

    .btn-remove-variant:hover {
        background: #c82333;
    }

.btn-add-variant {
    margin-top: 1rem;
}

/* ==========================================
   CITY SELECT (Şehir Seçimi - FIX #9)
   ========================================== */
.city-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
}

    .city-select:focus {
        outline: none;
        border-color: var(--primary-color, #f8b4c6);
        box-shadow: 0 0 0 3px rgba(248, 180, 198, 0.1);
    }

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991.98px) {
    /* Desktop search'ü gizle */
    .navbar .search-form {
        display: none !important;
    }

    /* Mobil için cart badge stil düzeltmesi */
    .bottom-navbar .cart-count {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    /* Desktop'ta bottom navbar gizle */
    .bottom-navbar {
        display: none !important;
    }
}

/* ==========================================
   CART STYLES (Güncellendi)
   ========================================== */
.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

    .cart-item .item-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

        .cart-item .item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

    .cart-item .item-details {
        flex: 1;
        min-width: 0;
    }

        .cart-item .item-details h5 {
            margin: 0 0 0.5rem 0;
            font-size: 1rem;
            color: #333;
        }

    .cart-item .item-size {
        display: inline-block;
        padding: 0.25rem 0.5rem;
        background: #f0f0f0;
        border-radius: 4px;
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 0.5rem;
    }

    .cart-item .item-price {
        color: #999;
        font-size: 0.9rem;
    }

    .cart-item .quantity-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cart-item .qty-btn {
        width: 32px;
        height: 32px;
        border: 1px solid #ddd;
        background: #fff;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
        font-size: 1.2rem;
        color: #666;
    }

        .cart-item .qty-btn:hover {
            background: var(--primary-color, #f8b4c6);
            border-color: var(--primary-color, #f8b4c6);
            color: #fff;
        }

    .cart-item .qty-value {
        min-width: 30px;
        text-align: center;
        font-weight: 600;
        color: #333;
    }

    .cart-item .item-total {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-color, #f8b4c6);
    }

    .cart-item .btn-remove {
        background: #fff;
        border: 1px solid #ff4444;
        color: #ff4444;
        padding: 0.5rem;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .cart-item .btn-remove:hover {
            background: #ff4444;
            color: #fff;
        }

/* Cart Summary */
.cart-summary {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

    .cart-summary h4 {
        margin-bottom: 1rem;
        font-size: 1.2rem;
        color: #333;
    }

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #666;
}

    .summary-row.total {
        font-size: 1.2rem;
        font-weight: 700;
        color: #333;
        padding-top: 0.75rem;
        border-top: 2px solid #e0e0e0;
    }

/* ==========================================
   EMPTY STATE
   ========================================== */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

    .empty-state .icon {
        font-size: 5rem;
        margin-bottom: 1rem;
        opacity: 0.5;
    }

    .empty-state h3 {
        margin-bottom: 0.5rem;
        color: #333;
    }

    .empty-state p {
        color: #999;
        margin-bottom: 2rem;
    }

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-primary {
    color: var(--primary-color, #f8b4c6) !important;
}

.bg-primary {
    background-color: var(--primary-color, #f8b4c6) !important;
}

.border-primary {
    border-color: var(--primary-color, #f8b4c6) !important;
}

/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.2s ease;
}

    /* Focus states */
    input:focus, select:focus, textarea:focus {
        outline: none;
        border-color: var(--primary-color, #f8b4c6);
        box-shadow: 0 0 0 3px rgba(248, 180, 198, 0.1);
    }
/* ========================================
   BOTTOM NAVIGATION BAR - PROFESYONEL TASARIM
   site.css dosyanızın sonuna ekleyin
   ======================================== */

/* Bottom Navbar - Ana Container */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0 12px;
    z-index: 1000;
    border-top: 1px solid #f0f0f0;
}

/* Navigation Items */
.bottom-nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666666;
    padding: 6px 16px;
    min-width: 70px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    cursor: pointer;
}

    .bottom-nav-item i {
        font-size: 24px;
        margin-bottom: 4px;
        transition: all 0.3s ease;
    }

    .bottom-nav-item span {
        font-size: 11px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    /* Hover Effects */
    .bottom-nav-item:hover {
        color: #FF6B6B;
        background: rgba(255, 107, 107, 0.06);
        transform: translateY(-2px);
    }

        .bottom-nav-item:hover i {
            transform: scale(1.15);
        }

    /* Active State */
    .bottom-nav-item.active {
        color: #FF6B6B;
        font-weight: 600;
    }

        .bottom-nav-item.active i {
            color: #FF6B6B;
            transform: scale(1.1);
        }

        .bottom-nav-item.active span {
            font-weight: 600;
        }

/* Sepet Badge */
.bottom-cart-badge {
    position: absolute;
    top: 0;
    right: 10px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: white;
    border-radius: 12px;
    padding: 2px 7px;
    font-size: 10px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Bottom Navbar Spacer (içerik navbar'ın altında kalmasın) */
.bottom-navbar-spacer {
    height: 70px;
}

/* Tablet ve masaüstünde gizle */
@media (min-width: 768px) {
    .bottom-navbar,
    .bottom-navbar-spacer {
        display: none !important;
    }
}

/* Mobil Optimizasyonu */
@media (max-width: 767px) {
    .bottom-navbar {
        padding: 8px 0 10px;
    }

    .bottom-nav-item {
        padding: 6px 14px;
        min-width: 65px;
    }

        .bottom-nav-item i {
            font-size: 22px;
        }

        .bottom-nav-item span {
            font-size: 10px;
        }
}

/* Çok küçük ekranlar için (iPhone SE, vb.) */
@media (max-width: 375px) {
    .bottom-navbar {
        padding: 6px 0 8px;
    }

    .bottom-nav-item {
        padding: 5px 10px;
        min-width: 60px;
    }

        .bottom-nav-item i {
            font-size: 20px;
            margin-bottom: 3px;
        }

        .bottom-nav-item span {
            font-size: 9px;
        }

    .bottom-cart-badge {
        right: 6px;
        padding: 2px 5px;
        font-size: 9px;
        min-width: 18px;
        height: 18px;
    }
}

/* iPhone notch ve home indicator için güvenli alan */
@supports (padding: max(0px)) {
    .bottom-navbar {
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}

/* PWA için (standalone mode) */
@media (display-mode: standalone) {
    .bottom-navbar {
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}

/* Dark Mode Support (isteğe bağlı) */
@media (prefers-color-scheme: dark) {
    .bottom-navbar {
        background: #1a1a1a;
        border-top-color: #333333;
    }

    .bottom-nav-item {
        color: #999999;
    }

        .bottom-nav-item:hover {
            color: #FF6B6B;
            background: rgba(255, 107, 107, 0.1);
        }

        .bottom-nav-item.active {
            color: #FF6B6B;
        }
}

/* Ripple effect (opsiyonel, daha interaktif için) */
.bottom-nav-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 107, 107, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bottom-nav-item:active::before {
    width: 80px;
    height: 80px;
}

/* Accessibility: Focus state */
.bottom-nav-item:focus {
    outline: 2px solid #FF6B6B;
    outline-offset: 2px;
}

    .bottom-nav-item:focus:not(:focus-visible) {
        outline: none;
    }

/* Loading animation (sayfa geçişlerinde) */
.bottom-nav-item.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
/* Beden Seçenekleri (Chips) */
.variant-option {
    border: 1.5px solid #eee;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    min-width: 55px;
    text-align: center;
}

    .variant-option:hover:not(.disabled) {
        border-color: #FF6B6B;
        color: #FF6B6B;
    }

    .variant-option.selected {
        background-color: #FF6B6B;
        border-color: #FF6B6B;
        color: white;
    }

    .variant-option.disabled {
        background-color: #f8f9fa;
        color: #ccc;
        text-decoration: line-through;
        cursor: not-allowed;
    }

/* Ana Sayfadaki Butonun Yerleşimi */
.product-card .add-to-cart-quick {
    background: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border: none;
    transition: 0.3s;
}