/* ================================
   CSS Variables - Merkezi Stil Tanımları
   ================================ */
:root {
    /* Primary Colors */
    --color-primary: #c1272d;
    --color-primary-dark: #a61f24;
    --color-primary-light: #dc3545;
    
    /* Secondary Colors */
    --color-secondary: #1f2937;
    --color-secondary-dark: #111827;
    --color-secondary-light: #374151;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    
    /* Status Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* Background Colors */
    --bg-body: #e5e5e5;
    --bg-white: #ffffff;
    --bg-dark: #1f2937;
    
    /* Typography */
    --font-family: 'Lato', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 0.9375rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.125rem;
    --font-size-2xl: 1.25rem;
    --font-size-3xl: 1.5rem;
    --font-size-4xl: 2rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-navbar: 1000;
    --z-modal: 10000;
    --z-tooltip: 10001;
    
    /* Container */
    --container-max: 1440px;
    --container-padding: 20px;
}

.container {
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* Base Reset */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    background: var(--bg-body);
    font: var(--font-size-base)/1.6 var(--font-family);
    font-weight: 500;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover Animations */
.hover-scale {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Top Search Bar */
.top-search-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 1rem;
    max-width: 300px;
    position: relative;
    z-index: 10;
}

.top-search-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 250px;
    transform: scaleX(1);
    transform-origin: center;
}

.top-search-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: scaleX(1.05);
    max-width: 280px;
}

.top-search-trigger i {
    font-size: 1rem;
}

.top-search-trigger span {
    flex: 1;
    text-align: left;
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active {
    display: flex;
    opacity: 1;
}

.search-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-modal.active .search-modal-overlay {
    opacity: 1;
}

.search-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 5rem auto auto;
    background: #f9fafb;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-30px) scale(0.96);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: calc(100vh - 10rem);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-modal.active .search-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.search-modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    color: #9ca3af;
    font-size: 1.125rem;
    pointer-events: none;
}

.search-modal-input {
    width: 100%;
    padding: 0.875rem 3.5rem 0.875rem 3rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: #fff;
    color: #374151;
}

.search-modal-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    background: #fff;
}

.search-modal-input:focus + .search-shortcut {
    opacity: 0;
}

.search-shortcut {
    position: absolute;
    right: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.search-shortcut kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #6b7280;
    min-width: 1.5rem;
    height: 1.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-close-btn {
    position: absolute;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-btn:hover {
    background: #f3f4f6;
    color: #dc2626;
}

.search-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(100vh - 20rem);
    flex: 1;
}

.search-placeholder-text {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    padding: 2rem 0;
}

/* Search Results */
.search-results {
    display: none;
}

.search-results.active {
    display: block;
}

.search-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.search-results-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.search-view-all {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* Search History */
.search-history {
    padding: 1rem;
}

.search-history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.search-history-title {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 600;
}

.search-history-clear {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    font-size: 0.8125rem;
}

.search-history-clear:hover {
    color: #dc2626;
    background: #fee2e2;
}

.search-history-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-history-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #fff;
    transition: all 0.2s ease;
}

.search-history-item:hover {
    border-color: #dc2626;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.1);
}

.search-history-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    text-decoration: none;
    color: #374151;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.search-history-link:hover {
    color: #dc2626;
}

.search-history-link i {
    color: #9ca3af;
    font-size: 0.875rem;
}

.search-history-remove {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
    opacity: 0;
}

.search-history-item:hover .search-history-remove {
    opacity: 1;
}

.search-history-remove:hover {
    color: #dc2626;
    background: #fee2e2;
}

.search-view-all:hover {
    color: #b91c1c;
}

.search-results-list {
    display: grid;
    gap: 1rem;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    background: #fff;
}

.search-result-item:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
    background: #fff;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.375rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.5rem;
    flex-shrink: 0;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
}

.search-result-image.category-icon {
    background: #e0e7ff;
    color: #6366f1;
    font-size: 1.75rem;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.25rem;
    font-size: 0.9375rem;
}

.search-result-category {
    color: #6b7280;
    font-size: 0.8125rem;
}

.search-result-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    white-space: nowrap;
}

.search-result-price .price-current {
    color: #dc2626;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.search-result-price .price-old {
    color: #9ca3af;
    font-size: 0.8125rem;
    text-decoration: line-through;
    line-height: 1.2;
}

/* Mobile Search Modal */
@media screen and (max-width: 767px) {
    .top-search-container {
        max-width: 120px;
        margin: 0 0.25rem;
        order: 2;
    }
    
    .top-search-trigger {
        max-width: 120px;
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .top-search-trigger span {
        display: none;
    }
    
    .search-modal-content {
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
        height: 100%;
    }
    
    .search-modal-header {
        padding: 1rem;
    }
    
    .search-modal-body {
        padding: 1rem;
        max-height: calc(100vh - 8rem);
    }
    
    .search-result-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
    
    .search-shortcut {
        display: none;
    }
    
    .search-modal-input {
        padding: 0.875rem 3rem 0.875rem 3rem;
    }
    
    /* Mobilde header düzeni */
    .col-12.flex.justify-between {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .col-12.flex.justify-between > a:first-child {
        order: 1;
    }
    
    .col-12.flex.justify-between > .flex.items-center.gap-2:last-child {
        order: 3;
    }
}

/* Navigation Menu */
.navbar {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    isolation: isolate; /* Yeni stacking context oluştur */
}

.navbar .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: block;
    object-fit: contain;
    object-position: center;
}

.logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #374151;
    font-weight: 500;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #dc2626;
}

.nav-menu a i {
    font-size: 0.875rem;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu'ler parent dropdown aktif olsa bile görünmemeli, sadece kendi parent'ları aktif olduğunda görünmeli */
/* Sadece desktop için geçerli */
@media screen and (min-width: 1024px) {
    .dropdown.active .dropdown-submenu > .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-10px);
    }

    /* Submenu aktif olduğunda görünür olmalı (parent dropdown aktif olsa bile) */
    .dropdown.active .dropdown-submenu.active > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    /* Daha Fazla linkine background ekle - Turuncu dikkat çekici renk */
    .dropdown-more > a {
        background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
        color: #fff !important;
        padding: 0.5rem 1rem;
        border-radius: 0.375rem;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    }
    
    .dropdown-more > a:hover {
        background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
        color: #fff !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(249, 115, 22, 0.5);
    }
    
    /* Blog linkine özel stil - Mavi gradient ile farklı görünüm */
    .nav-blog-link {
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
        color: #fff !important;
        padding: 0.5rem 1rem !important;
        border-radius: 0.375rem;
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
        font-weight: 600 !important;
        transform: translateY(0);
        transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .nav-blog-link:hover {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
        color: #fff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 16px rgba(59, 130, 246, 0.5);
    }
    
    .dropdown-more > a i {
        color: #fff;
    }
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    color: #dc2626;
}

/* Dropdown Divider */
.dropdown-divider {
    height: 1px;
    margin: 0.5rem 0;
    overflow: hidden;
    background-color: #e5e7eb;
    border: none;
}

/* Submenu (Multi-level Dropdown) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.5rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-submenu.active > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Desktop'ta submenu ile parent menü arasında köprü oluştur - hover sorununu çöz */
@media screen and (min-width: 1024px) {
    /* Submenu açıkken parent menü ile submenu arasında görünmez köprü */
    .dropdown-submenu.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 100%;
        width: 15px;
        height: 100%;
        z-index: 999;
        background: transparent;
    }
    
    /* Submenu'nun sol tarafına padding ekle - mouse geçişi için */
    .dropdown-submenu > .dropdown-menu {
        margin-left: -15px;
        padding-left: 0;
    }
    
    /* Submenu aktif olduğunda da aynı padding'i koru */
    .dropdown-submenu.active > .dropdown-menu {
        margin-left: -15px;
        padding-left: 0;
    }
}

.dropdown-submenu > a .fa-chevron-right {
    margin-left: auto;
    font-size: 0.75rem;
}

/* Navbar Actions (Cart, Auth & Mobile Toggle) */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.auth-btn {
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    color: #374151;
    background: transparent;
}

.auth-btn:hover {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.auth-btn-primary {
    background: #dc2626;
    color: #fff;
}

.auth-btn-primary:hover {
    background: #b91c1c;
    color: #fff;
}

.logout-form {
    display: inline-block;
    margin: 0;
}

.logout-btn {
    border: none;
    background: #dc2626;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-btn:hover {
    background: #b91c1c;
    color: #fff;
}

.cart-icon {
    color: #374151;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon:hover {
    color: #dc2626;
}

.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #dc2626;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 18px;
}

/* ================================
   NOTIFICATION ICON & DROPDOWN
   ================================ */
.notification-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.notification-icon {
    color: #374151;
    font-size: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.notification-icon:hover {
    color: #dc2626;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #dc2626;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: notification-pulse 2s infinite;
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.4);
}

@keyframes notification-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.notification-dropdown {
    display: none !important;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 360px;
    max-height: 480px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
}

.notification-dropdown.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform: translateY(0);
}

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.notification-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.mark-all-read-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mark-all-read-btn:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.notification-list {
    max-height: 360px;
    overflow-y: auto;
}

.notification-list::-webkit-scrollbar {
    width: 6px;
}

.notification-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.notification-item {
    display: flex;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.notification-item:hover {
    background: #f9fafb;
}

.notification-item.unread {
    background: #fef3c7;
}

.notification-item.unread:hover {
    background: #fde68a;
}

.notification-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f3f4f6;
}

.notification-item-icon i {
    font-size: 1rem;
}

.notification-item-content {
    flex: 1;
    min-width: 0;
}

.notification-item-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1f2937;
    margin-bottom: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-item-message {
    font-size: 0.8125rem;
    color: #6b7280;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.notification-item-time {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 4px;
}

.notification-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #9ca3af;
    font-size: 0.875rem;
    padding: 40px 20px;
    text-align: center;
}

.notification-empty i {
    font-size: 2.5rem;
    opacity: 0.5;
}

.notification-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 40px 20px;
    color: #6b7280;
}

.notification-loading i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

/* Notification Icon Colors */
.notification-item-icon.text-blue-500 { background: #dbeafe; color: #3b82f6; }
.notification-item-icon.text-yellow-500 { background: #fef3c7; color: #f59e0b; }
.notification-item-icon.text-purple-500 { background: #ede9fe; color: #8b5cf6; }
.notification-item-icon.text-green-500 { background: #d1fae5; color: #10b981; }
.notification-item-icon.text-red-500 { background: #fee2e2; color: #ef4444; }
.notification-item-icon.text-orange-500 { background: #ffedd5; color: #f97316; }
.notification-item-icon.text-pink-500 { background: #fce7f3; color: #ec4899; }
.notification-item-icon.text-indigo-500 { background: #e0e7ff; color: #6366f1; }
.notification-item-icon.text-gray-500 { background: #f3f4f6; color: #6b7280; }

/* Responsive */
@media (max-width: 768px) {
    .notification-dropdown {
        position: fixed;
        top: 70px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: calc(100vh - 100px);
        border-radius: 12px;
    }
    
    .notification-wrapper {
        margin-left: 4px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #374151;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle:hover {
    color: #dc2626;
}

/* 1024px için menü optimizasyonu */
@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .nav-menu {
        gap: 0.75rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.5rem 0.25rem;
    }
    
    .auth-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .navbar-actions {
        gap: 0.75rem;
    }
    
    .logo img {
        max-width: 120px;
    }
}

/* Mobile Menu */
@media screen and (max-width: 1023px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar-content {
        flex-wrap: wrap;
    }
    
    .auth-buttons {
        order: 1;
        display: flex;
        gap: 0.5rem;
    }
    
    .auth-btn {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .cart-icon {
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    /* Mobilde dropdown açıldığında arrow'u döndür */
    .dropdown.active > a .fa-chevron-down {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown > a .fa-chevron-down {
        transition: transform 0.3s ease;
    }
    
    /* Mobilde submenu açıldığında arrow'u döndür */
    .dropdown-submenu.active > a .fa-chevron-right {
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }
    
    .dropdown-submenu > a .fa-chevron-right {
        transition: transform 0.3s ease;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    .nav-menu {
        order: 4;
        width: calc(100% - 40px);
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        box-shadow: none;
        border-radius: 0.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
        margin-top: 0.5rem;
        border: none;
        opacity: 0;
        visibility: hidden;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 120px);
        padding: 0.5rem 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(220, 38, 38, 0.5) rgba(243, 244, 246, 0.3);
    }
    
    /* Webkit tarayıcılar için scrollbar stilleri */
    .nav-menu.active::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-menu.active::-webkit-scrollbar-track {
        background: rgba(243, 244, 246, 0.3);
        border-radius: 10px;
    }
    
    .nav-menu.active::-webkit-scrollbar-thumb {
        background: rgba(220, 38, 38, 0.5);
        border-radius: 10px;
    }
    
    .nav-menu.active::-webkit-scrollbar-thumb:hover {
        background: rgba(220, 38, 38, 0.7);
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
    }
    
    .nav-menu > li > a {
        padding: 1rem 1.5rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: #374151;
        font-weight: 500;
    }
    
    .nav-menu > li > a:hover {
        background: rgba(220, 38, 38, 0.05);
        color: #dc2626;
    }
    
    .navbar-actions {
        order: 2;
        gap: 0.5rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: rgba(249, 250, 251, 0.8);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: calc(100vh - 200px);
        padding: 0.5rem 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        display: block !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(220, 38, 38, 0.5) rgba(243, 244, 246, 0.3);
    }
    
    /* Dropdown menu scrollbar stilleri */
    .dropdown.active .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .dropdown.active .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(243, 244, 246, 0.3);
        border-radius: 10px;
    }
    
    .dropdown.active .dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(220, 38, 38, 0.5);
        border-radius: 10px;
    }
    
    .dropdown.active .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(220, 38, 38, 0.7);
    }
    
    /* Dropdown menu içindeki TÜM li elementleri görünür olmalı */
    .dropdown.active .dropdown-menu li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-height: none !important;
    }
    
    /* Submenu'ler mobilde de açılabilir olmalı */
    /* Mobilde submenu linkleri her zaman görünür olmalı */
    .dropdown.active .dropdown-menu .dropdown-submenu,
    .dropdown.active .dropdown-menu li.dropdown-submenu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    .dropdown.active .dropdown-menu .dropdown-submenu > a,
    .dropdown.active .dropdown-menu li.dropdown-submenu > a {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        height: auto !important;
        padding: 0.5rem 1.5rem !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(229, 231, 235, 0.3) !important;
    }
    
    /* Son submenu linkinin border'ını kaldır */
    .dropdown.active .dropdown-menu li.dropdown-submenu:last-child > a {
        border-bottom: none !important;
    }
    
    /* Submenu alt menüleri */
    .dropdown.active .dropdown-submenu > .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Submenu aktif olduğunda açılmalı - daha spesifik kural */
    .dropdown.active .dropdown-submenu.active > .dropdown-menu {
        max-height: 300px !important;
        padding: 0 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: thin !important;
        scrollbar-color: rgba(220, 38, 38, 0.5) rgba(243, 244, 246, 0.3) !important;
        margin: 0 !important;
    }
    
    /* Submenu scrollbar stilleri - mobil */
    .dropdown.active .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar {
        width: 6px !important;
    }
    
    .dropdown.active .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(243, 244, 246, 0.3) !important;
        border-radius: 10px !important;
    }
    
    .dropdown.active .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(220, 38, 38, 0.5) !important;
        border-radius: 10px !important;
    }
    
    .dropdown.active .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(220, 38, 38, 0.7) !important;
    }
    
    .dropdown-submenu > .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-left: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        background: rgba(243, 244, 246, 0.8);
    }
    
    .dropdown-submenu.active > .dropdown-menu {
        max-height: calc(100vh - 250px);
        padding: 0.5rem 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(220, 38, 38, 0.5) rgba(243, 244, 246, 0.3);
    }
    
    /* Submenu scrollbar stilleri */
    .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar-track {
        background: rgba(243, 244, 246, 0.3);
        border-radius: 10px;
    }
    
    .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar-thumb {
        background: rgba(220, 38, 38, 0.5);
        border-radius: 10px;
    }
    
    .dropdown-submenu.active > .dropdown-menu::-webkit-scrollbar-thumb:hover {
        background: rgba(220, 38, 38, 0.7);
    }
    
    .dropdown-menu li {
        display: block !important;
        visibility: visible !important;
        margin: 0 !important;
        padding: 0 !important;
        border-bottom: none !important;
    }
    
    /* Normal dropdown linkleri için border */
    .dropdown-menu > li > a {
        border-bottom: 1px solid rgba(229, 231, 235, 0.3) !important;
    }
    
    /* Submenu'lerin kendisi li elementi olduğu için border'ı kaldır */
    .dropdown-menu li.dropdown-submenu {
        border-bottom: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .dropdown-menu li:last-child > a {
        border-bottom: none !important;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        display: block !important;
        visibility: visible !important;
        color: #6b7280;
        font-size: 0.9rem;
        margin: 0 !important;
    }
    
    /* Dropdown aktif olduğunda tüm linkler görünür */
    .dropdown.active .dropdown-menu a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Submenu linkleri flex olarak kalmalı */
    .dropdown.active .dropdown-menu .dropdown-submenu > a {
        display: flex !important;
    }
    
    /* Submenu linkleri - mobilde */
    .dropdown-submenu > a {
        padding: 0.75rem 1.5rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(229, 231, 235, 0.3) !important;
        color: #6b7280 !important;
        font-size: 0.9rem !important;
    }
    
    /* Son submenu'nun border'ını kaldır */
    .dropdown-menu > li.dropdown-submenu:last-child > a {
        border-bottom: none !important;
    }
    
    /* Submenu alt menü linkleri */
    .dropdown-submenu .dropdown-menu a {
        padding: 0.75rem 1.5rem 0.75rem 2.5rem !important;
        margin: 0 !important;
        display: block !important;
        color: #6b7280 !important;
        font-size: 0.9rem !important;
    }
    
    /* Submenu linklerinde arrow görünür olmalı */
    .dropdown-submenu > a .fa-chevron-right {
        display: inline-block !important;
        margin-left: auto !important;
        flex-shrink: 0 !important;
    }
    
    .dropdown-menu a:hover {
        background: rgba(220, 38, 38, 0.05);
        color: #dc2626;
    }
}

@media screen and (max-width: 767px) {
    .auth-buttons {
        gap: 0.25rem;
    }
    
    .auth-btn {
        padding: 0.35rem 0.6rem;
        font-size: 0.75rem;
    }
    
    .logo span {
        font-size: 1.25rem;
    }
}

p {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

input,
select,
button,
textarea {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    border: none;
}

/* Remove spinner arrows from number inputs */
input[type="number"],
input[type="number"]:focus,
input[type="number"]:hover {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]:hover::-webkit-outer-spin-button,
input[type="number"]:hover::-webkit-inner-spin-button,
input[type="number"]:focus::-webkit-outer-spin-button,
input[type="number"]:focus::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}

/* Layout Utilities */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.float-left { float: left; }
.float-right { float: right; }
.float-none { float: none; }
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

/* Font Sizes */
.text-xs { font-size: 0.75rem; }    /* 12px */
.text-sm { font-size: 0.875rem; }   /* 14px */
.text-base { font-size: 1rem; }     /* 16px */
.text-lg { font-size: 1.125rem; }   /* 18px */
.text-xl { font-size: 1.25rem; }    /* 20px */
.text-2xl { font-size: 1.5rem; }    /* 24px */

/* Legacy Font Sizes (for backward compatibility) */
.font-10 { font-size: 10px; }
.font-11 { font-size: 11px; }
.font-12 { font-size: 12px; }
.font-13 { font-size: 13px; }
.font-14 { font-size: 14px; }
.font-15 { font-size: 15px; }

/* Font Weight */
.font-thin { font-weight: 100; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

/* Font Style */
.font-italic { font-style: italic; }
.font-normal-style { font-style: normal; }

/* Spacing - Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }

/* Spacing - Margin */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-auto { margin: auto; }

.mx-0 { margin-left: 0; margin-right: 0; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.my-5 { margin-top: 1.25rem; margin-bottom: 1.25rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }

/* Margin Top */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

/* Margin Bottom */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Width & Height */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }

h2 { margin-top:0px !important; }

/* Fixed Width & Height */
.w-8 { width: 2rem; }    /* 32px */
.w-10 { width: 2.5rem; }  /* 40px */
.w-12 { width: 3rem; }    /* 48px */
.w-16 { width: 4rem; }    /* 64px */
.w-20 { width: 5rem; }    /* 80px */
.w-24 { width: 6rem; }    /* 96px */

.h-8 { height: 2rem; }     /* 32px */
.h-10 { height: 2.5rem; }  /* 40px */
.h-12 { height: 3rem; }    /* 48px */
.h-16 { height: 4rem; }    /* 64px */
.h-20 { height: 5rem; }    /* 80px */
.h-24 { height: 6rem; }    /* 96px */

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Absolute Positioning Utilities */
.-top-1 { top: -0.25rem; }
.-top-2 { top: -0.5rem; }
.-top-3 { top: -0.75rem; }
.-right-1 { right: -0.25rem; }
.-right-2 { right: -0.5rem; }
.-right-3 { right: -0.75rem; }
.-bottom-1 { bottom: -0.25rem; }
.-bottom-2 { bottom: -0.5rem; }
.-left-1 { left: -0.25rem; }
.-left-2 { left: -0.5rem; }

/* Border Radius */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 0.125rem; }    /* 2px */
.rounded { border-radius: 0.25rem; }         /* 4px */
.rounded-md { border-radius: 0.375rem; }     /* 6px */
.rounded-lg { border-radius: 0.5rem; }       /* 8px */
.rounded-xl { border-radius: 0.75rem; }      /* 12px */
.rounded-2xl { border-radius: 1rem; }        /* 16px */
.rounded-3xl { border-radius: 1.5rem; }      /* 24px */
.rounded-full { border-radius: 9999px; }

/* Border Radius - Top */
.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-t-sm { border-top-left-radius: 0.125rem; border-top-right-radius: 0.125rem; }
.rounded-t { border-top-left-radius: 0.25rem; border-top-right-radius: 0.25rem; }
.rounded-t-md { border-top-left-radius: 0.375rem; border-top-right-radius: 0.375rem; }
.rounded-t-lg { border-top-left-radius: 0.5rem; border-top-right-radius: 0.5rem; }
.rounded-t-xl { border-top-left-radius: 0.75rem; border-top-right-radius: 0.75rem; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }
.rounded-t-full { border-top-left-radius: 9999px; border-top-right-radius: 9999px; }

/* Border Radius - Bottom */
.rounded-b-none { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.rounded-b-sm { border-bottom-left-radius: 0.125rem; border-bottom-right-radius: 0.125rem; }
.rounded-b { border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-b-md { border-bottom-left-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }
.rounded-b-lg { border-bottom-left-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.rounded-b-xl { border-bottom-left-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }
.rounded-b-2xl { border-bottom-left-radius: 1rem; border-bottom-right-radius: 1rem; }
.rounded-b-full { border-bottom-left-radius: 9999px; border-bottom-right-radius: 9999px; }

/* Border Radius - Left */
.rounded-l-none { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.rounded-l-sm { border-top-left-radius: 0.125rem; border-bottom-left-radius: 0.125rem; }
.rounded-l { border-top-left-radius: 0.25rem; border-bottom-left-radius: 0.25rem; }
.rounded-l-md { border-top-left-radius: 0.375rem; border-bottom-left-radius: 0.375rem; }
.rounded-l-lg { border-top-left-radius: 0.5rem; border-bottom-left-radius: 0.5rem; }
.rounded-l-xl { border-top-left-radius: 0.75rem; border-bottom-left-radius: 0.75rem; }
.rounded-l-2xl { border-top-left-radius: 1rem; border-bottom-left-radius: 1rem; }
.rounded-l-full { border-top-left-radius: 9999px; border-bottom-left-radius: 9999px; }

/* Border Radius - Right */
.rounded-r-none { border-top-right-radius: 0; border-bottom-right-radius: 0; }
.rounded-r-sm { border-top-right-radius: 0.125rem; border-bottom-right-radius: 0.125rem; }
.rounded-r { border-top-right-radius: 0.25rem; border-bottom-right-radius: 0.25rem; }
.rounded-r-md { border-top-right-radius: 0.375rem; border-bottom-right-radius: 0.375rem; }
.rounded-r-lg { border-top-right-radius: 0.5rem; border-bottom-right-radius: 0.5rem; }
.rounded-r-xl { border-top-right-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }
.rounded-r-2xl { border-top-right-radius: 1rem; border-bottom-right-radius: 1rem; }
.rounded-r-full { border-top-right-radius: 9999px; border-bottom-right-radius: 9999px; }

/* Border Radius - Top Left */
.rounded-tl-none { border-top-left-radius: 0; }
.rounded-tl-sm { border-top-left-radius: 0.125rem; }
.rounded-tl { border-top-left-radius: 0.25rem; }
.rounded-tl-md { border-top-left-radius: 0.375rem; }
.rounded-tl-lg { border-top-left-radius: 0.5rem; }
.rounded-tl-xl { border-top-left-radius: 0.75rem; }
.rounded-tl-2xl { border-top-left-radius: 1rem; }
.rounded-tl-full { border-top-left-radius: 9999px; }

/* Border Radius - Top Right */
.rounded-tr-none { border-top-right-radius: 0; }
.rounded-tr-sm { border-top-right-radius: 0.125rem; }
.rounded-tr { border-top-right-radius: 0.25rem; }
.rounded-tr-md { border-top-right-radius: 0.375rem; }
.rounded-tr-lg { border-top-right-radius: 0.5rem; }
.rounded-tr-xl { border-top-right-radius: 0.75rem; }
.rounded-tr-2xl { border-top-right-radius: 1rem; }
.rounded-tr-full { border-top-right-radius: 9999px; }

/* Border Radius - Bottom Left */
.rounded-bl-none { border-bottom-left-radius: 0; }
.rounded-bl-sm { border-bottom-left-radius: 0.125rem; }
.rounded-bl { border-bottom-left-radius: 0.25rem; }
.rounded-bl-md { border-bottom-left-radius: 0.375rem; }
.rounded-bl-lg { border-bottom-left-radius: 0.5rem; }
.rounded-bl-xl { border-bottom-left-radius: 0.75rem; }
.rounded-bl-2xl { border-bottom-left-radius: 1rem; }
.rounded-bl-full { border-bottom-left-radius: 9999px; }

/* Border Radius - Bottom Right */
.rounded-br-none { border-bottom-right-radius: 0; }
.rounded-br-sm { border-bottom-right-radius: 0.125rem; }
.rounded-br { border-bottom-right-radius: 0.25rem; }
.rounded-br-md { border-bottom-right-radius: 0.375rem; }
.rounded-br-lg { border-bottom-right-radius: 0.5rem; }
.rounded-br-xl { border-bottom-right-radius: 0.75rem; }
.rounded-br-2xl { border-bottom-right-radius: 1rem; }
.rounded-br-full { border-bottom-right-radius: 9999px; }

/* Background Opacity Utilities */
.bg-opacity-10 { background-color: rgba(0, 0, 0, 0.1); }
.bg-opacity-20 { background-color: rgba(0, 0, 0, 0.2); }
.bg-opacity-30 { background-color: rgba(0, 0, 0, 0.3); }
.bg-opacity-40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-opacity-50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-opacity-60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-opacity-70 { background-color: rgba(0, 0, 0, 0.7); }
.bg-opacity-80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-opacity-90 { background-color: rgba(0, 0, 0, 0.9); }

/* Background Colors with Opacity - Red */
.bg-red-500-opacity-10 { background-color: rgba(239, 68, 68, 0.1); }
.bg-red-500-opacity-20 { background-color: rgba(239, 68, 68, 0.2); }
.bg-red-500-opacity-30 { background-color: rgba(239, 68, 68, 0.3); }
.bg-red-500-opacity-40 { background-color: rgba(239, 68, 68, 0.4); }
.bg-red-500-opacity-50 { background-color: rgba(239, 68, 68, 0.5); }
.bg-red-500-opacity-60 { background-color: rgba(239, 68, 68, 0.6); }
.bg-red-500-opacity-70 { background-color: rgba(239, 68, 68, 0.7); }
.bg-red-500-opacity-80 { background-color: rgba(239, 68, 68, 0.8); }
.bg-red-500-opacity-90 { background-color: rgba(239, 68, 68, 0.9); }

.bg-red-600-opacity-10 { background-color: rgba(220, 38, 38, 0.1); }
.bg-red-600-opacity-20 { background-color: rgba(220, 38, 38, 0.2); }
.bg-red-600-opacity-30 { background-color: rgba(220, 38, 38, 0.3); }
.bg-red-600-opacity-40 { background-color: rgba(220, 38, 38, 0.4); }
.bg-red-600-opacity-50 { background-color: rgba(220, 38, 38, 0.5); }
.bg-red-600-opacity-60 { background-color: rgba(220, 38, 38, 0.6); }
.bg-red-600-opacity-70 { background-color: rgba(220, 38, 38, 0.7); }
.bg-red-600-opacity-80 { background-color: rgba(220, 38, 38, 0.8); }
.bg-red-600-opacity-90 { background-color: rgba(220, 38, 38, 0.9); }

/* Background Colors with Opacity - Blue */
.bg-blue-500-opacity-10 { background-color: rgba(59, 130, 246, 0.1); }
.bg-blue-500-opacity-20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-blue-500-opacity-30 { background-color: rgba(59, 130, 246, 0.3); }
.bg-blue-500-opacity-40 { background-color: rgba(59, 130, 246, 0.4); }
.bg-blue-500-opacity-50 { background-color: rgba(59, 130, 246, 0.5); }
.bg-blue-500-opacity-60 { background-color: rgba(59, 130, 246, 0.6); }
.bg-blue-500-opacity-70 { background-color: rgba(59, 130, 246, 0.7); }
.bg-blue-500-opacity-80 { background-color: rgba(59, 130, 246, 0.8); }
.bg-blue-500-opacity-90 { background-color: rgba(59, 130, 246, 0.9); }

.bg-blue-600-opacity-10 { background-color: rgba(37, 99, 235, 0.1); }
.bg-blue-600-opacity-20 { background-color: rgba(37, 99, 235, 0.2); }
.bg-blue-600-opacity-30 { background-color: rgba(37, 99, 235, 0.3); }
.bg-blue-600-opacity-40 { background-color: rgba(37, 99, 235, 0.4); }
.bg-blue-600-opacity-50 { background-color: rgba(37, 99, 235, 0.5); }
.bg-blue-600-opacity-60 { background-color: rgba(37, 99, 235, 0.6); }
.bg-blue-600-opacity-70 { background-color: rgba(37, 99, 235, 0.7); }
.bg-blue-600-opacity-80 { background-color: rgba(37, 99, 235, 0.8); }
.bg-blue-600-opacity-90 { background-color: rgba(37, 99, 235, 0.9); }

/* Background Colors with Opacity - Gray */
.bg-gray-800-opacity-10 { background-color: rgba(31, 41, 55, 0.1); }
.bg-gray-800-opacity-20 { background-color: rgba(31, 41, 55, 0.2); }
.bg-gray-800-opacity-30 { background-color: rgba(31, 41, 55, 0.3); }
.bg-gray-800-opacity-40 { background-color: rgba(31, 41, 55, 0.4); }
.bg-gray-800-opacity-50 { background-color: rgba(31, 41, 55, 0.5); }
.bg-gray-800-opacity-60 { background-color: rgba(31, 41, 55, 0.6); }
.bg-gray-800-opacity-70 { background-color: rgba(31, 41, 55, 0.7); }
.bg-gray-800-opacity-80 { background-color: rgba(31, 41, 55, 0.8); }
.bg-gray-800-opacity-90 { background-color: rgba(31, 41, 55, 0.9); }

/* Color System - Background Colors */
/* Red */
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-200 { background-color: #fecaca; }
.bg-red-300 { background-color: #fca5a5; }
.bg-red-400 { background-color: #f87171; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600 { background-color: #dc2626; }
.bg-red-700 { background-color: #b91c1c; }
.bg-red-800 { background-color: #991b1b; }
.bg-red-900 { background-color: #7f1d1d; }

/* Blue */
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-100 { background-color: #dbeafe; }
.bg-blue-200 { background-color: #bfdbfe; }
.bg-blue-300 { background-color: #93c5fd; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-blue-800 { background-color: #1e40af; }
.bg-blue-900 { background-color: #1e3a8a; }

/* Green */
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-200 { background-color: #bbf7d0; }
.bg-green-300 { background-color: #86efac; }
.bg-green-400 { background-color: #4ade80; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-green-700 { background-color: #15803d; }
.bg-green-800 { background-color: #166534; }
.bg-green-900 { background-color: #14532d; }

/* Yellow */
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-100 { background-color: #fef9c3; }
.bg-yellow-200 { background-color: #fef08a; }
.bg-yellow-300 { background-color: #fde047; }
.bg-yellow-400 { background-color: #facc15; }
.bg-yellow-500 { background-color: #eab308; }
.bg-yellow-600 { background-color: #ca8a04; }
.bg-yellow-700 { background-color: #a16207; }
.bg-yellow-800 { background-color: #854d0e; }
.bg-yellow-900 { background-color: #713f12; }

/* Purple */
.bg-purple-50 { background-color: #faf5ff; }
.bg-purple-100 { background-color: #f3e8ff; }
.bg-purple-200 { background-color: #e9d5ff; }
.bg-purple-300 { background-color: #d8b4fe; }
.bg-purple-400 { background-color: #c084fc; }
.bg-purple-500 { background-color: #a855f7; }
.bg-purple-600 { background-color: #9333ea; }
.bg-purple-700 { background-color: #7e22ce; }
.bg-purple-800 { background-color: #6b21a8; }
.bg-purple-900 { background-color: #581c87; }

/* Gray */
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-300 { background-color: #d1d5db; }
.bg-gray-400 { background-color: #9ca3af; }
.bg-gray-500 { background-color: #6b7280; }
.bg-gray-600 { background-color: #4b5563; }
.bg-gray-700 { background-color: #374151; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }

/* Orange */
.bg-orange-50 { background-color: #fff7ed; }
.bg-orange-100 { background-color: #ffedd5; }
.bg-orange-200 { background-color: #fed7aa; }
.bg-orange-300 { background-color: #fdba74; }
.bg-orange-400 { background-color: #fb923c; }
.bg-orange-500 { background-color: #f97316; }
.bg-orange-600 { background-color: #ea580c; }
.bg-orange-700 { background-color: #c2410c; }
.bg-orange-800 { background-color: #9a3412; }
.bg-orange-900 { background-color: #7c2d12; }

/* Pink */
.bg-pink-50 { background-color: #fdf2f8; }
.bg-pink-100 { background-color: #fce7f3; }
.bg-pink-200 { background-color: #fbcfe8; }
.bg-pink-300 { background-color: #f9a8d4; }
.bg-pink-400 { background-color: #f472b6; }
.bg-pink-500 { background-color: #ec4899; }
.bg-pink-600 { background-color: #db2777; }
.bg-pink-700 { background-color: #be185d; }
.bg-pink-800 { background-color: #9f1239; }
.bg-pink-900 { background-color: #831843; }

/* Indigo */
.bg-indigo-50 { background-color: #eef2ff; }
.bg-indigo-100 { background-color: #e0e7ff; }
.bg-indigo-200 { background-color: #c7d2fe; }
.bg-indigo-300 { background-color: #a5b4fc; }
.bg-indigo-400 { background-color: #818cf8; }
.bg-indigo-500 { background-color: #6366f1; }
.bg-indigo-600 { background-color: #4f46e5; }
.bg-indigo-700 { background-color: #4338ca; }
.bg-indigo-800 { background-color: #3730a3; }
.bg-indigo-900 { background-color: #312e81; }

/* Teal */
.bg-teal-50 { background-color: #f0fdfa; }
.bg-teal-100 { background-color: #ccfbf1; }
.bg-teal-200 { background-color: #99f6e4; }
.bg-teal-300 { background-color: #5eead4; }
.bg-teal-400 { background-color: #2dd4bf; }
.bg-teal-500 { background-color: #14b8a6; }
.bg-teal-600 { background-color: #0d9488; }
.bg-teal-700 { background-color: #0f766e; }
.bg-teal-800 { background-color: #115e59; }
.bg-teal-900 { background-color: #134e4a; }

/* Basic Colors */
.bg-white { background-color: #ffffff; }
.bg-black { background-color: #000000; }
.bg-transparent { background-color: transparent; }

/* Color System - Text Colors */
/* Red */
.text-red-50 { color: #fef2f2; }
.text-red-100 { color: #fee2e2; }
.text-red-200 { color: #fecaca; }
.text-red-300 { color: #fca5a5; }
.text-red-400 { color: #f87171; }
.text-red-500 { color: #ef4444; }
.text-red-600 { color: #dc2626; }
.text-red-700 { color: #b91c1c; }
.text-red-800 { color: #991b1b; }
.text-red-900 { color: #7f1d1d; }

/* Blue */
.text-blue-50 { color: #eff6ff; }
.text-blue-100 { color: #dbeafe; }
.text-blue-200 { color: #bfdbfe; }
.text-blue-300 { color: #93c5fd; }
.text-blue-400 { color: #60a5fa; }
.text-blue-500 { color: #3b82f6; }
.text-blue-600 { color: #2563eb; }
.text-blue-700 { color: #1d4ed8; }
.text-blue-800 { color: #1e40af; }
.text-blue-900 { color: #1e3a8a; }

/* Green */
.text-green-50 { color: #f0fdf4; }
.text-green-100 { color: #dcfce7; }
.text-green-200 { color: #bbf7d0; }
.text-green-300 { color: #86efac; }
.text-green-400 { color: #4ade80; }
.text-green-500 { color: #22c55e; }
.text-green-600 { color: #16a34a; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-green-900 { color: #14532d; }

/* Yellow */
.text-yellow-50 { color: #fefce8; }
.text-yellow-100 { color: #fef9c3; }
.text-yellow-200 { color: #fef08a; }
.text-yellow-300 { color: #fde047; }
.text-yellow-400 { color: #facc15; }
.text-yellow-500 { color: #eab308; }
.text-yellow-600 { color: #ca8a04; }
.text-yellow-700 { color: #a16207; }
.text-yellow-800 { color: #854d0e; }
.text-yellow-900 { color: #713f12; }

/* Purple */
.text-purple-50 { color: #faf5ff; }
.text-purple-100 { color: #f3e8ff; }
.text-purple-200 { color: #e9d5ff; }
.text-purple-300 { color: #d8b4fe; }
.text-purple-400 { color: #c084fc; }
.text-purple-500 { color: #a855f7; }
.text-purple-600 { color: #9333ea; }
.text-purple-700 { color: #7e22ce; }
.text-purple-800 { color: #6b21a8; }
.text-purple-900 { color: #581c87; }

/* Gray */
.text-gray-50 { color: #f9fafb; }
.text-gray-100 { color: #f3f4f6; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-gray-900 { color: #111827; }

/* Orange */
.text-orange-50 { color: #fff7ed; }
.text-orange-100 { color: #ffedd5; }
.text-orange-200 { color: #fed7aa; }
.text-orange-300 { color: #fdba74; }
.text-orange-400 { color: #fb923c; }
.text-orange-500 { color: #f97316; }
.text-orange-600 { color: #ea580c; }
.text-orange-700 { color: #c2410c; }
.text-orange-800 { color: #9a3412; }
.text-orange-900 { color: #7c2d12; }

/* Pink */
.text-pink-50 { color: #fdf2f8; }
.text-pink-100 { color: #fce7f3; }
.text-pink-200 { color: #fbcfe8; }
.text-pink-300 { color: #f9a8d4; }
.text-pink-400 { color: #f472b6; }
.text-pink-500 { color: #ec4899; }
.text-pink-600 { color: #db2777; }
.text-pink-700 { color: #be185d; }
.text-pink-800 { color: #9f1239; }
.text-pink-900 { color: #831843; }

/* Indigo */
.text-indigo-50 { color: #eef2ff; }
.text-indigo-100 { color: #e0e7ff; }
.text-indigo-200 { color: #c7d2fe; }
.text-indigo-300 { color: #a5b4fc; }
.text-indigo-400 { color: #818cf8; }
.text-indigo-500 { color: #6366f1; }
.text-indigo-600 { color: #4f46e5; }
.text-indigo-700 { color: #4338ca; }
.text-indigo-800 { color: #3730a3; }
.text-indigo-900 { color: #312e81; }

/* Teal */
.text-teal-50 { color: #f0fdfa; }
.text-teal-100 { color: #ccfbf1; }
.text-teal-200 { color: #99f6e4; }
.text-teal-300 { color: #5eead4; }
.text-teal-400 { color: #2dd4bf; }
.text-teal-500 { color: #14b8a6; }
.text-teal-600 { color: #0d9488; }
.text-teal-700 { color: #0f766e; }
.text-teal-800 { color: #115e59; }
.text-teal-900 { color: #134e4a; }

/* Basic Text Colors */
.text-white { color: #ffffff; }
.text-black { color: #000000; }

/* Row & Column System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* Column Spans (12 column grid) */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Auto column */
.col-auto { flex: 0 0 auto; width: auto; max-width: 100%; }

/* Grid System (Alternative) */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-span-9 { grid-column: span 9 / span 9; }
.col-span-10 { grid-column: span 10 / span 10; }
.col-span-11 { grid-column: span 11 / span 11; }
.col-span-12 { grid-column: span 12 / span 12; }

/* Tablet ve Küçük Desktop (1024px - 1439px) */
@media screen and (max-width: 1439px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

/* 1024px için container optimizasyonu */
@media screen and (min-width: 1024px) and (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .navbar .container {
        padding: 0 20px;
    }
    
    .footer .container {
        padding: 0 20px;
    }
}

/* Desktop Column Classes (1024px ve üzeri) */
@media screen and (min-width: 1024px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

/* Tablet (768px - 1023px) */
@media screen and (max-width: 1023px) {
    .container {
        padding: 0 25px;
    }
    
    /* Tablet Column Spans */
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    
    .col-md-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
}

/* Mobil (480px - 767px) */
@media screen and (max-width: 767px) {
    .container {
        padding: 0 15px;
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Mobile Column Spans */
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
    
    .col-sm-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
    
    /* Default columns to full width on mobile */
    [class*="col-"]:not([class*="col-sm-"]):not([class*="col-md-"]) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Küçük Mobil (480px ve altı) */
@media screen and (max-width: 479px) {
    .container {
        padding: 0 10px;
    }
    
    .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .row > * {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    /* Extra Small Column Spans */
    .col-xs-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xs-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xs-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xs-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xs-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xs-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xs-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xs-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xs-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xs-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xs-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xs-12 { flex: 0 0 100%; max-width: 100%; }
    
    .col-xs-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
    
    /* Force all columns to full width on extra small screens unless specified */
    [class*="col-"]:not([class*="col-xs-"]) {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Footer */
.footer {
    position: relative;
    background: #1f2937;
    color: #e5e7eb;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../img/bg-footer.png") no-repeat center center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    padding: 0;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dc2626;
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #dc2626;
    padding-left: 0.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-contact i {
    color: #dc2626;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #dc2626;
}

.footer-contact span {
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #374151;
    color: #9ca3af;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.social-icon:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
}

/* Footer Payment & Security Icons */
.footer-payment-security {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payment-methods,
.footer-security {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-payment-label,
.footer-security-label {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-payment-icons,
.footer-security-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 32px;
    background: #fff;
    border-radius: 0.375rem;
    color: #1f2937;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.payment-icon.fa-cc-visa {
    color: #1434CB;
}

.payment-icon.fa-cc-mastercard {
    color: #EB001B;
}

.security-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 0.375rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.security-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

.security-icon i {
    font-size: 1rem;
}

.security-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.footer-legal {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #dc2626;
}

.footer-legal-links .separator {
    color: #4b5563;
    margin: 0 0.25rem;
}

.footer-copyright {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.footer-copyright p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Desktop görünümünde Sözleşmeler başlığını gizle */
@media screen and (min-width: 1025px) {
    .footer-legal-title {
        display: none;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: #b91c1c;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(1);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Scroll to Top Button Responsive */
@media screen and (max-width: 767px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1.1rem;
    }
}

/* Footer Tablet (768px - 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        padding: 0;
    }
    
    /* Tablet'te row yapısını koru, flexbox ile 2 sütunlu yapı */
    .footer-content .row {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px;
    }
    
    /* Footer içindeki col-md-* class'larını tablet için 2 sütunlu yap */
    .footer-content .row > .col-md-3,
    .footer-content .row > .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Footer içindeki col-12'yi koru */
    .footer-content .row > .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .footer-content .row > div {
        margin-bottom: 0;
        border-bottom: none;
    }
    
    /* Accordion özelliklerini kaldır */
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0;
        cursor: default;
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-title::after {
        display: none;
    }
    
    .footer-links,
    .footer-contact {
        max-height: none !important;
        padding: 0 !important;
        display: block !important;
    }
    
    .footer-legal-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding: 0;
        cursor: default;
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-legal-title::after {
        display: none;
    }
    
    .footer-legal-links {
        max-height: none !important;
        padding: 0 !important;
        display: flex !important;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer-legal .col-12 {
        border-bottom: none;
    }
    
    .footer-logo img {
        max-width: 140px;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-legal {
        border-top: 1px solid #374151;
        padding-top: 2rem;
        margin-top: 2rem;
    }
    
    .footer-copyright {
        border-top: 1px solid #374151;
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* Footer Responsive - Modern Mobile Design */
@media screen and (max-width: 767px) {
    .footer {
        padding: 0;
        margin-top: 2rem;
        background: linear-gradient(180deg, #1a1f2e 0%, #0f1218 100%);
    }
    
    .footer::before {
        display: none;
    }
    
    .footer-content {
        padding: 0;
    }
    
    /* İlk bölüm - Logo, sosyal medya, ödeme */
    .footer .row > div:first-child {
        background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 2rem 1.25rem !important;
        margin-bottom: 0 !important;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        max-width: 140px;
        filter: brightness(1.1);
    }
    
    .footer-text {
        font-size: 0.875rem;
        line-height: 1.6;
        color: rgba(255,255,255,0.7);
        margin-bottom: 1.5rem;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Sosyal medya ikonları - modern */
    .footer-social {
        display: flex !important;
        justify-content: center;
        gap: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-social .social-icon {
        width: 44px;
        height: 44px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.125rem;
        color: #fff;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .footer-social .social-icon:hover {
        background: var(--color-primary);
        border-color: var(--color-primary);
        transform: translateY(-2px);
    }
    
    /* Ödeme & SSL - yatay kart tasarımı */
    .footer-payment-security {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0;
        padding: 1rem;
        background: rgba(0,0,0,0.2);
        border-radius: 12px;
    }
    
    .footer-payment-methods,
    .footer-security {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0;
    }
    
    .footer-payment-label,
    .footer-security-label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: rgba(255,255,255,0.5);
    }
    
    .footer-payment-icons,
    .footer-security-icons {
        display: flex;
        gap: 0.5rem;
    }
    
    .payment-icon {
        width: 48px;
        height: 30px;
        background: rgba(255,255,255,0.1);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: #fff;
    }
    
    .security-icon {
        padding: 0.5rem 0.75rem;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        border-radius: 6px;
        font-size: 0.75rem;
    }
    
    /* Accordion menüler - modern tasarım */
    .footer .row > div:not(:first-child) {
        margin: 0.5rem 0 !important;
        margin-left: 1.25rem !important;
        margin-right: 1.25rem !important;
        padding: 0 !important;
        background: rgba(255,255,255,0.03);
        border-radius: 12px;
        border: 1px solid rgba(255,255,255,0.06);
        overflow: hidden;
        width: calc(100% - 2.5rem) !important;
        max-width: calc(100% - 2.5rem) !important;
    }
    
    .footer-title {
        font-size: 0.9375rem;
        font-weight: 600;
        letter-spacing: 0.3px;
        margin-bottom: 0 !important;
        padding: 1rem 1.25rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        user-select: none;
        transition: all 0.3s ease;
        text-align: left;
        position: relative;
        color: #fff;
        background: transparent;
    }
    
    .footer-title:active {
        background: rgba(255,255,255,0.03);
    }
    
    .footer-title::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.7rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: rgba(255,255,255,0.4);
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.05);
        border-radius: 8px;
        position: static;
    }
    
    .footer-title.active {
        color: var(--color-primary);
    }
    
    .footer-title.active::after {
        transform: rotate(180deg);
        background: rgba(220, 38, 38, 0.15);
        color: var(--color-primary);
    }
    
    .footer-links,
    .footer-contact {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 1.25rem;
        margin: 0;
        background: rgba(0,0,0,0.1);
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    
    .footer-title.active + .footer-links,
    .footer-title.active + .footer-contact {
        max-height: 500px;
        padding: 0.75rem 1.25rem 1rem;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-links a {
        display: flex;
        align-items: center;
        padding: 0.625rem 0 0.625rem 0.5rem;
        color: rgba(255,255,255,0.6) !important;
        font-size: 0.875rem;
        font-weight: 400 !important;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        transition: all 0.2s ease;
    }
    
    .footer-links li:last-child a {
        border-bottom: none;
    }
    
    .footer-links a:hover,
    .footer-links a:active {
        color: #fff !important;
        padding-left: 0.75rem;
    }
    
    .footer-links a::before {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.45rem;
        margin-right: 0.75rem;
        color: var(--color-primary);
        opacity: 0.5;
    }
    
    .footer-contact li {
        display: flex;
        align-items: flex-start;
        padding: 0.625rem 0 0.625rem 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        margin-bottom: 0;
    }
    
    .footer-contact li:last-child {
        border-bottom: none;
    }
    
    .footer-contact i {
        width: 28px;
        height: 28px;
        background: rgba(220, 38, 38, 0.15);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        color: var(--color-primary);
        margin-right: 0.75rem;
        flex-shrink: 0;
    }
    
    .footer-contact a,
    .footer-contact span {
        color: rgba(255,255,255,0.6) !important;
        font-size: 0.8125rem;
        font-weight: 400 !important;
        line-height: 1.5;
    }
    
    /* İlk bölüm özel */
    .footer .row > div:first-child .footer-title {
        display: none;
    }
    
    .footer .row > div:first-child {
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    /* Sözleşmeler - Düz linkler (accordion değil) */
    .footer-legal {
        padding: 1.5rem 1.25rem 1rem !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        border-top: 1px solid rgba(255,255,255,0.08) !important;
    }
    
    .footer-legal .row {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-legal .col-12 {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-legal-title {
        display: none !important;
    }
    
    .footer-legal-links {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.5rem 1rem;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    
    .footer-legal-links a {
        display: inline-block;
        padding: 0.375rem 0;
        color: rgba(255,255,255,0.5) !important;
        font-size: 0.75rem;
        font-weight: 400 !important;
        border: none !important;
        transition: color 0.2s ease;
    }
    
    .footer-legal-links a::before {
        display: none;
    }
    
    .footer-legal-links a:hover,
    .footer-legal-links a:active {
        color: #fff !important;
        padding-left: 0;
    }
    
    .footer-legal-links .separator {
        display: inline-block;
        color: rgba(255,255,255,0.2);
        font-size: 0.75rem;
    }
    
    /* Copyright - minimal */
    .footer-copyright {
        border-top: none;
        padding: 1.5rem 1.25rem;
        margin-top: 0.5rem;
        background: transparent;
    }
    
    .footer-copyright p {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.35);
        margin: 0;
        text-align: center;
    }
}

/* 18 Yaş Doğrulama Modal */
.age-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-modal.show {
    opacity: 1;
    visibility: visible;
}

.age-modal-content {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.age-modal-icon {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.age-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.age-modal-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.age-modal-question {
    color: #374151;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.age-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.age-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.age-btn-confirm {
    background: #dc2626;
    color: #fff;
}

.age-btn-confirm:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.age-btn-decline {
    background: #e5e7eb;
    color: #374151;
}

.age-btn-decline:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    animation: cookieSlideUp 0.3s ease;
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-modal-content {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.cookie-modal-header {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-modal-header i {
    font-size: 1.5rem;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-modal-body p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cookie-modal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cookie-modal-links a {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-modal-links a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    background: #f9fafb;
    display: flex;
    gap: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cookie-btn-accept {
    background: #dc2626;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.cookie-btn-decline {
    background: #e5e7eb;
    color: #374151;
}

.cookie-btn-decline:hover {
    background: #d1d5db;
    transform: translateY(-2px);
}

/* Cookie Modal Responsive */
@media screen and (max-width: 767px) {
    .cookie-modal {
        bottom: 1rem;
        width: 95%;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .age-modal-content {
        padding: 2rem 1.5rem;
    }
    
    .age-modal-icon {
        font-size: 3rem;
    }
    
    .age-modal-title {
        font-size: 1.5rem;
    }
}

/* Products Section */
.products-section {
    padding: 0;
}

/* ================================
   MODERN TITLE STYLES
   ================================ */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Title with underline animation */
.section-title.animated-title {
    padding-bottom: 1rem;
}

.section-title.animated-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.animated-title.visible::after {
    width: 80px;
}

/* Title with gradient text */
.section-title.gradient-title {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Title with decorative elements */
.section-title.decorative-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title.decorative-title::before,
.section-title.decorative-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.decorative-title.visible::before,
.section-title.decorative-title.visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.section-title.decorative-title::before {
    transform-origin: right;
}

.section-title.decorative-title::after {
    transform-origin: left;
}

/* Title with icon */
.section-title.with-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.section-title.with-icon i {
    color: #dc2626;
    font-size: 1.75rem;
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.with-icon.visible i {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Title fade in animation */
.section-title.fade-title {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-title.fade-title.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Title slide in from left */
.section-title.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Title slide in from right */
.section-title.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Title scale animation */
.section-title.scale-title {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title.scale-title.visible {
    opacity: 1;
    transform: scale(1);
}

/* Title with shadow effect */
.section-title.shadow-title {
    text-shadow: 0 2px 8px rgba(220, 38, 38, 0.2);
    transition: text-shadow 0.3s ease;
}

.section-title.shadow-title:hover {
    text-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
}

/* Title with letter spacing animation */
.section-title.letter-spacing-title {
    letter-spacing: 0.1em;
    transition: letter-spacing 0.6s ease;
}

.section-title.letter-spacing-title.visible {
    letter-spacing: 0.05em;
}

/* Responsive titles */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title.with-icon i {
        font-size: 1.5rem;
    }
    
    .section-title.decorative-title {
        gap: 0.75rem;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Products Grid Section (4x4) */
.products-grid-section {
    padding: 3rem 0;
}

.products-grid-header {
    margin-bottom: 2rem;
}

.products-grid-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 1023px) {
    .products-grid-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .products-grid-section {
        padding: 2rem 0;
    }
    
    .products-grid-section .products-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.5rem;
    }
}

/* Products Carousel */
.products-carousel-wrapper {
    position: relative;
    padding: 1rem 0 3rem 0;
    overflow: visible;
}

.products-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.products-carousel-header .section-title {
    margin-bottom: 0;
    text-align: left;
}

.carousel-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.products-carousel {
    overflow-x: hidden;
    overflow-y: visible;
    position: relative;
    padding: 1rem 0;
}

.products-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.products-carousel-track:active {
    cursor: grabbing;
}

.products-carousel-track .product-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 0;
}

@media screen and (min-width: 1024px) {
    .products-carousel-track .product-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}

.products-carousel-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.carousel-btn {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #1f2937;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #dc2626;
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background: #9ca3af;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .products-carousel-track .product-card {
        flex: 0 0 calc(50% - 1rem);
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .products-carousel-track .product-card {
        flex: 0 0 100%;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .product-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }
}

/* Categories Section */
.categories-section-wrapper {
    width: 100%;
    background: hsl(276, 5%, 30%);
}

.categories-section {
    padding: 3rem 0;
}

.categories-header {
    margin-bottom: 2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    display: block;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1 / 1;
    min-height: 250px;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .category-card.category-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .category-card.category-medium {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .category-card.category-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    /* 6'dan fazla kategori varsa son elemanı gizle (grid düzeni için) */
    .category-card:nth-child(n+7):last-child {
        display: none;
    }
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2rem 1.5rem 1.5rem;
    z-index: 2;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.category-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .categories-section {
        padding: 2.5rem 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .category-card {
        aspect-ratio: 1 / 1;
        min-height: 0;
    }
    
    .category-card.category-large,
    .category-card.category-medium,
    .category-card.category-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .category-title {
        font-size: 1.25rem;
    }
    
    .category-overlay {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .categories-section {
        padding: 2rem 0;
    }
    
    .categories-header {
        margin-bottom: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .category-card {
        min-height: 180px;
        aspect-ratio: 1 / 1;
    }
    
    .category-card.category-large,
    .category-card.category-medium,
    .category-card.category-small {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.75rem;
    }
    
    .category-overlay {
        padding: 1.25rem 1rem 1rem;
    }
}

/* Blog Section */
/* Blog Section */
.blog-section-wrapper {
    width: 100%;
    background: hsl(276, 5%, 30%);
}

.blog-section {
    padding: 3rem 0;
}

.blog-header {
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #dc2626;
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-date i {
    font-size: 0.75rem;
}

.blog-category {
    color: #dc2626;
    font-weight: 500;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.blog-read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .blog-read-more {
    gap: 0.75rem;
}

.blog-read-more i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
}

@media screen and (max-width: 1023px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .blog-section {
        padding: 2rem 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}


/* Product Card */
.product-card {
    background: #fff;
    border-radius: 0.75rem;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    margin-bottom: 1rem;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 10;
    pointer-events: none;
    box-shadow: inset 0 0 0 0 rgba(220, 38, 38, 0);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-card:hover::before {
    border-color: #dc2626;
    box-shadow: inset 0 0 0 2px rgba(220, 38, 38, 0.2);
}

/* Product Card Hover Overlay - HTML'de .product-overlay kullanılıyor */
.product-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f4f6;
    z-index: 0;
    border-radius: 0.75rem 0.75rem 0 0;
}

.product-images-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem 0.75rem 0 0;
    overflow: hidden;
}

.product-image .product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 0.75rem 0.75rem 0 0;
}

.product-image .product-img.active {
    opacity: 1;
    z-index: 1;
    border-radius: 0.75rem 0.75rem 0 0;
}

/* Gallery Bullets */
.product-gallery-bullets {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.gallery-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #000;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
}

.gallery-bullet.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

.gallery-bullet:hover {
    background: rgba(255, 255, 255, 0.8);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale {
    background: #10b981;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.product-category {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem 0;
}

.stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
    font-size: 0.875rem;
}

.stars i {
    display: inline-block;
    line-height: 1;
}

.stars i.fa-star-half-stroke {
    color: #fbbf24;
}

.stars i.fa-regular.fa-star {
    color: #e5e7eb;
}

.rating-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.price-current {
    font-size: 1.15rem;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.3;
    white-space: nowrap;
    display: block;
    word-break: keep-all;
}

.price-old {
    font-size: 0.8125rem;
    color: #9ca3af;
    text-decoration: line-through;
    line-height: 1.3;
    font-weight: 400;
    white-space: nowrap;
    display: block;
    word-break: keep-all;
}

/* İndirimli fiyat varsa mevcut fiyatı daha belirgin yap */
.product-price.has-discount .price-current {
    font-size: 1.25rem;
}

.product-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.product-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.product-btn:active {
    transform: translateY(0);
}

/* Variant Button Styles */
.product-btn.variant-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
    text-decoration: none;
    color: #fff;
}

.product-btn.variant-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Out of Stock Styles */
.product-card.out-of-stock {
    opacity: 0.7;
    position: relative;
}

.product-card.out-of-stock::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.75rem;
    z-index: 1;
    pointer-events: none;
}

.product-card.out-of-stock:hover {
    transform: translateY(-4px);
}

.product-card.out-of-stock .product-image img {
    filter: grayscale(30%);
}

.product-badge.out-of-stock-badge {
    background: #6b7280;
    color: #fff;
}

.product-btn.out-of-stock-btn {
    background: #9ca3af;
    color: #fff;
    cursor: not-allowed;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-btn.out-of-stock-btn:hover {
    background: #9ca3af;
    transform: none;
    box-shadow: none;
}

.product-btn.out-of-stock-btn:disabled {
    opacity: 0.8;
}

/* Stok Bildirimi Butonu */
.product-btn.notify-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.product-btn.notify-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.product-btn.notify-btn.notified {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    cursor: default;
}

.product-btn.notify-btn.notified:hover {
    transform: none;
    box-shadow: none;
}

/* Products Responsive */
@media screen and (max-width: 1023px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
}

@media screen and (max-width: 767px) {
    .products-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        aspect-ratio: 1 / 1;
        height: auto;
    }
}



/* Calculator Modals */
.calculator-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.calculator-modal.active {
    display: block;
}

.calculator-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.calculator-modal-content {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.calculator-modal-content.calculator-modal-large {
    max-width: 900px;
}

.calculator-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10002;
}

.calculator-modal-close:hover {
    background: #dc2626;
    color: #fff;
    transform: rotate(90deg);
}

.calculator-header {
    text-align: center;
    margin-bottom: 2rem;
}

.calculator-header h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.calculator-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.calculator-input-group {
    margin-bottom: 1.5rem;
}

.calculator-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.calculator-input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.calculator-input-group input[type="number"],
.calculator-input-group input[type="number"]:focus,
.calculator-input-group input[type="number"]:hover {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    padding-right: 0.75rem !important;
}

.calculator-input-group input[type="number"]::-webkit-outer-spin-button,
.calculator-input-group input[type="number"]::-webkit-inner-spin-button,
.calculator-input-group input[type="number"]:hover::-webkit-outer-spin-button,
.calculator-input-group input[type="number"]:hover::-webkit-inner-spin-button,
.calculator-input-group input[type="number"]:focus::-webkit-outer-spin-button,
.calculator-input-group input[type="number"]:focus::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}

.calculator-input-group select {
    width: 100%;
    padding: 0.75rem;
    padding-right: 2.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    cursor: pointer;
}

.calculator-input-group input:focus,
.calculator-input-group select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.calculator-input-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.calculator-input-group input.error,
.calculator-input-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.calculator-error-message {
    display: none;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #fef2f2;
    border-left: 3px solid #ef4444;
    border-radius: 0.25rem;
    color: #dc2626;
    font-size: 0.875rem;
    animation: slideDown 0.3s ease;
}

.calculator-error-message.show {
    display: block;
}

.calculator-error-message i {
    margin-right: 0.5rem;
    color: #ef4444;
}

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

.calculator-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.calculator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.calculator-result-container {
    display: none;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 2px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.calculator-result-container.show {
    display: block;
}

.calculator-result-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.calculator-result-value {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.calculator-result-unit {
    color: #6b7280;
    font-size: 0.875rem;
}

.calculator-results-table-container {
    display: none;
    margin-bottom: 1.5rem;
}

.calculator-results-table-container.show {
    display: block;
}

.calculator-results-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calculator-results-table thead {
    background: #dc2626;
    color: #fff;
}

.calculator-results-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.calculator-results-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.calculator-results-table tbody tr:hover {
    background: #f9fafb;
}

.calculator-results-table tbody tr:last-child td {
    border-bottom: none;
}

.calculator-fps-value {
    font-weight: 600;
    color: #dc2626;
}

.calculator-info-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    border-radius: 0.5rem;
}

.calculator-info-box h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.calculator-info-box p {
    color: #1e3a8a;
    font-size: 0.875rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media screen and (max-width: 767px) {
    .calculator-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .calculator-header h2 {
        font-size: 1.5rem;
    }
    
    .calculator-results-table {
        font-size: 0.875rem;
    }
    
    .calculator-results-table th,
    .calculator-results-table td {
        padding: 0.5rem;
    }
}

/* Auth Modals */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.auth-modal.active {
    display: block;
}

.auth-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.auth-modal-content {
    position: relative;
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.auth-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: #e5e7eb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10002;
}

.auth-modal-close:hover {
    background: #dc2626;
    color: #fff;
    transform: rotate(90deg);
}

.auth-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-modal-header h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.auth-modal-header p {
    color: #6b7280;
    font-size: 0.875rem;
}

.auth-input-group {
    margin-bottom: 1.5rem;
}

.auth-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
}

.auth-input-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.auth-input-group input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.auth-input-group input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #374151;
    line-height: 1.5;
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
    position: relative;
    box-sizing: border-box;
}

.auth-checkbox input[type="checkbox"]:checked {
    background-color: #dc2626;
    border-color: #dc2626;
}

.auth-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 9px;
    margin-left: -3px;
    margin-top: -6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block;
}

.auth-checkbox input[type="checkbox"]:hover {
    border-color: #dc2626;
}

.auth-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.auth-checkbox span {
    flex: 1;
}

.auth-link {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.auth-divider span {
    position: relative;
    background: #fff;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.auth-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-social-btn {
    width: 100%;
    padding: 0.75rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #374151;
}

.auth-social-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.auth-footer p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.auth-checkbox-group {
    margin-bottom: 1.5rem;
}

.auth-checkbox-group .auth-checkbox {
    font-size: 0.875rem;
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .auth-modal-content {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .auth-modal-header h2 {
        font-size: 1.5rem;
    }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100000;
    display: none;
    animation: slideInRight 0.3s ease;
}

.toast-notification.show {
    display: block;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 300px;
    max-width: 500px;
}

.toast-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-message {
    color: #1f2937;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Toast Types */
.toast-notification.success .toast-content {
    border-left: 4px solid #10b981;
}

.toast-notification.success .toast-icon {
    color: #10b981;
}

.toast-notification.error .toast-content {
    border-left: 4px solid #ef4444;
}

.toast-notification.error .toast-icon {
    color: #ef4444;
}

.toast-notification.warning .toast-content {
    border-left: 4px solid #f59e0b;
}

.toast-notification.warning .toast-icon {
    color: #f59e0b;
}

.toast-notification.info .toast-content {
    border-left: 4px solid #3b82f6;
}

.toast-notification.info .toast-icon {
    color: #3b82f6;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.toast-notification.hide {
    animation: slideOutRight 0.3s ease;
}

@media screen and (max-width: 767px) {
    .toast-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .toast-content {
        min-width: auto;
        max-width: 100%;
    }
}

/* ============================================
   Category Page Styles
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
    color: #666;
}

.breadcrumb a {
    color: #dc2626;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #991b1b;
}

.breadcrumb i {
    font-size: 0.75rem;
    color: #999;
}

.breadcrumb span {
    color: #333;
}

/* Breadcrumb Mobile - Kısaltılmış görünüm */
.breadcrumb-ellipsis {
    color: #999;
    font-size: 0.875rem;
}

.breadcrumb-ellipsis.fa-chevron-right {
    font-size: 0.75rem;
}

@media screen and (max-width: 767px) {
    .breadcrumb {
        flex-wrap: nowrap;
        overflow: hidden;
    }
    
    /* Son item (ürün adı) için max-width ve truncate */
    .breadcrumb > span:last-child,
    .breadcrumb > a:last-of-type {
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        flex-shrink: 1;
    }
}

/* Category Page Wrapper */
.category-page-wrapper {
    padding: 2rem 0;
    background: #e5e5e5;
    min-height: calc(100vh - 200px);
}

.category-page-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

/* Category Sidebar */
.category-sidebar {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.filter-title i {
    color: #dc2626;
    font-size: 0.875rem;
}

/* Sub Categories List */
.sub-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-categories-list li {
    margin-bottom: 0.5rem;
}

.sub-categories-list a {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #666;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.sub-categories-list a:hover,
.sub-categories-list a.active {
    background: #dc2626;
    color: #fff;
}

/* Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.price-inputs input {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 120px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    box-sizing: border-box;
}

.price-inputs input[type="number"],
.price-inputs input[type="number"]:focus,
.price-inputs input[type="number"]:hover {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

.price-inputs input[type="number"]::-webkit-outer-spin-button,
.price-inputs input[type="number"]::-webkit-inner-spin-button,
.price-inputs input[type="number"]:hover::-webkit-outer-spin-button,
.price-inputs input[type="number"]:hover::-webkit-inner-spin-button,
.price-inputs input[type="number"]:focus::-webkit-outer-spin-button,
.price-inputs input[type="number"]:focus::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
    display: none !important;
}

.price-inputs input:focus {
    outline: none;
    border-color: #dc2626;
}

.price-inputs span {
    color: #666;
    font-weight: 600;
    flex-shrink: 0;
}

.filter-apply-btn {
    padding: 0.5rem 1rem;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.filter-apply-btn:hover {
    background: #991b1b;
}

/* Filter Checkboxes */
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 180px; /* ~4 items visible */
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom scrollbar for filter checkboxes */
.filter-checkboxes::-webkit-scrollbar {
    width: 4px;
}

.filter-checkboxes::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.filter-checkboxes::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.filter-checkboxes::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
}

.filter-checkbox:hover {
    color: #333;
}

.filter-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
    position: relative;
    box-sizing: border-box;
}

.filter-checkbox input[type="checkbox"]:hover {
    border-color: #dc2626;
}

.filter-checkbox input[type="checkbox"]:checked {
    background-color: #dc2626;
    border-color: #dc2626;
}

.filter-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 10px;
    margin-left: -3px;
    margin-top: -6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block;
}

.filter-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.filter-checkbox .rating-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    font-size: 0.75rem;
}

.filter-count {
    margin-left: auto;
    color: #999;
    font-size: 0.75rem;
}

/* Clear Filters Button */
.clear-filters-btn {
    width: 100%;
    padding: 0.75rem;
    background: #f3f4f6;
    color: #666;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.clear-filters-btn:hover {
    background: #e5e5e5;
    color: #333;
}

/* Category Main */
.category-main {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Category Header */
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e5e5;
}

.category-title-section h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.category-description {
    color: #666;
    font-size: 0.875rem;
    margin: 0;
}

.category-description strong {
    color: #dc2626;
    font-weight: 700;
}

.category-filters-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1.5rem;
}

.category-sort {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-sort label {
    font-size: 0.875rem;
    color: #666;
    font-weight: 600;
}

.sort-select {
    padding: 0.5rem 1rem;
    padding-right: 2.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.875rem;
    background: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
    color: #333;
    cursor: pointer;
    min-width: 200px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.sort-select:focus {
    outline: none;
    border-color: #dc2626;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23dc2626' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.stock-only-checkbox,
.stock-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    margin-left: 0.5rem;
}

.stock-only-checkbox input[type="checkbox"],
.stock-filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
    position: relative;
    box-sizing: border-box;
}

.stock-only-checkbox input[type="checkbox"]:hover,
.stock-filter-checkbox input[type="checkbox"]:hover {
    border-color: #dc2626;
}

.stock-only-checkbox input[type="checkbox"]:checked,
.stock-filter-checkbox input[type="checkbox"]:checked {
    background-color: #dc2626;
    border-color: #dc2626;
}

.stock-only-checkbox input[type="checkbox"]:checked::after,
.stock-filter-checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 9px;
    margin-left: -3px;
    margin-top: -6px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: block;
}

.stock-only-checkbox input[type="checkbox"]:focus,
.stock-filter-checkbox input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.stock-only-checkbox span,
.stock-filter-checkbox span {
    user-select: none;
}

/* Category Products Grid */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    color: #666;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: #f3f4f6;
    border-color: #dc2626;
}

.pagination-number.active {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .category-page-content {
        grid-template-columns: 260px 1fr;
        gap: 1.5rem;
    }
    
    .category-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1rem;
    }
}

/* Mobile Filter Toggle Button */
.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 0.875rem 1rem;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.mobile-filter-toggle:hover {
    background: #b91c1c;
}

.mobile-filter-toggle i {
    font-size: 1rem;
}

.filter-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #fff;
    color: #dc2626;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 10px;
    margin-left: 0.25rem;
}

/* Mobile Filter Overlay */
.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.filter-overlay.active {
    opacity: 1;
}

/* Mobile Sidebar Close Button */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #666;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-close-btn:hover {
    background: #dc2626;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .category-page-content {
        grid-template-columns: 1fr;
    }
    
    .mobile-filter-toggle {
        display: flex;
    }
    
    .filter-overlay {
        display: block;
        pointer-events: none;
    }
    
    .filter-overlay.active {
        pointer-events: auto;
    }
    
    .category-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        overflow-y: auto;
        padding: 3.5rem 1.25rem 1.5rem;
        margin: 0;
        border-radius: 0;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .category-sidebar.open {
        transform: translateX(0);
    }
    
    .sidebar-close-btn {
        display: flex;
    }
    
    .category-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-sort {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .sort-select {
        flex: 1;
        min-width: auto;
        width: 100%;
    }
    
    .stock-only-checkbox,
    .stock-filter-checkbox {
        margin-left: 0;
        width: 100%;
    }
    
    .category-filters-inline {
        margin-right: 0;
        width: 100%;
    }
    
    .category-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .pagination-numbers {
        flex-wrap: wrap;
    }
    
    /* Body scroll lock when filter is open */
    body.filter-open {
        overflow: hidden;
    }
}

@media screen and (max-width: 480px) {
    .category-products-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination-btn {
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.75rem;
    }
}

/* ============================================
   Product Detail Page Styles
   ============================================ */

.product-detail-wrapper {
    padding: 2rem 0;
    background: #e5e5e5;
    min-height: calc(100vh - 200px);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Product Images */
.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.product-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f4f6;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
}

.product-main-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.image-zoom-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.image-zoom-btn:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: scale(1.1);
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #dc2626 #f3f4f6;
}

.product-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.product-thumbnails::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.product-thumbnails::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 3px;
}

.product-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

.thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: #dc2626;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #dc2626;
    border-width: 3px;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-video {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumbnail-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    pointer-events: none;
}

.thumbnail:hover .video-play-icon {
    background: rgba(220, 38, 38, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.image-zoom-modal.active {
    opacity: 1;
    visibility: visible;
}

.image-zoom-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.image-zoom-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-zoom-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10001;
}

.image-zoom-modal-close:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: scale(1.1);
}

.image-zoom-modal-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
}

.image-zoom-modal-image-container img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.image-zoom-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
}

.image-zoom-modal-prev,
.image-zoom-modal-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    pointer-events: all;
}

.image-zoom-modal-prev:hover,
.image-zoom-modal-next:hover {
    background: rgba(220, 38, 38, 0.9);
    transform: scale(1.1);
}

.image-zoom-modal-prev {
    left: 1rem;
}

.image-zoom-modal-next {
    right: 1rem;
}

@media screen and (max-width: 767px) {
    .image-zoom-modal-content {
        width: 95%;
    }
    
    .image-zoom-modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .image-zoom-modal-prev,
    .image-zoom-modal-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Product Info */
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-detail-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.product-detail-category {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem 0;
}

.product-detail-category a {
    color: #dc2626;
    transition: color 0.3s ease;
}

.product-detail-category a:hover {
    color: #991b1b;
    text-decoration: underline;
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.rating-count {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Product Info Section */
.product-info-section {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-label {
    font-weight: 600;
    color: #6b7280;
    min-width: 120px;
    font-size: 0.875rem;
}

.info-value {
    color: #1f2937;
    font-weight: 500;
    font-size: 0.875rem;
}

.product-detail-price {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.price-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-current {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
}

.price-old {
    font-size: 1.25rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.price-save {
    font-size: 0.875rem;
    color: #10b981;
    font-weight: 600;
}

.price-foreign {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.price-foreign-amount {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
}

.price-foreign-note {
    font-size: 0.75rem;
    color: #6b7280;
}

.product-detail-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
}

.product-detail-stock i {
    font-size: 1.25rem;
}

.stock-count {
    color: #6b7280;
    font-weight: 400;
}

.product-detail-description {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

.product-detail-features {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.product-detail-features h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: #1f2937;
}

.product-detail-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-detail-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.product-detail-features i {
    color: #10b981;
    font-size: 0.875rem;
}

/* Product Actions */
.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-action-buttons {
    display: flex;
    gap: 1rem;
}

.product-action-buttons button {
    flex: 1;
}

.product-share-wishlist {
    display: flex;
    gap: 1rem;
}

.product-share-wishlist button {
    flex: 1;
}

.product-detail-buy-now {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.product-detail-buy-now:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Share Modal */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-modal.active .share-modal-overlay {
    opacity: 1;
}

.share-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    width: 90%;
    max-width: 560px;
    z-index: 10000;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    animation: modalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes modalSlideUp {
    from {
        transform: translateY(30px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
    position: relative;
}

.share-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
}

.share-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.share-modal-close {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.share-modal-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-modal-close i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.share-modal-close:hover {
    transform: scale(1.05) rotate(90deg);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.share-modal-close:hover::before {
    opacity: 1;
}

.share-modal-close:hover i {
    color: #fff;
}

.share-modal-body {
    padding: 2rem;
    background: #ffffff;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.share-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, rgba(220, 38, 38, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.share-option:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
    border-color: #dc2626;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 8px 24px rgba(220, 38, 38, 0.2),
        0 0 0 1px rgba(220, 38, 38, 0.1) inset;
}

.share-option:hover::before {
    opacity: 1;
}

.share-option-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.share-option-icon.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #1565c0 100%);
}

.share-option-icon.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.share-option-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.share-option-icon.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.share-option-icon.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006ba3 100%);
}

.share-option-icon.copy {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.share-option:hover .share-option-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.share-option:hover .share-option-icon.facebook {
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.share-option:hover .share-option-icon.twitter {
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.share-option:hover .share-option-icon.whatsapp {
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.share-option:hover .share-option-icon.linkedin {
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.share-option:hover .share-option-icon.telegram {
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.share-option:hover .share-option-icon.copy {
    box-shadow: 0 8px 20px rgba(107, 114, 128, 0.4);
}

@media screen and (max-width: 640px) {
    .share-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .share-modal-content {
        width: 95%;
        border-radius: 20px;
    }
    
    .share-modal-header {
        padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    }
    
    .share-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .share-modal-body {
        padding: 1.5rem;
    }
    
    .share-option {
        padding: 1.25rem 0.75rem;
    }
    
    .share-option-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

.product-detail-share {
    width: 100%;
    padding: 0.75rem 2rem;
    background: #fff;
    color: #374151;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.product-detail-share:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-selector label {
    font-weight: 600;
    color: #374151;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #374151;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #f3f4f6;
    color: #dc2626;
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.product-detail-add-cart {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.product-detail-add-cart:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.product-detail-wishlist {
    width: 100%;
    padding: 0.75rem 2rem;
    background: #fff;
    color: #374151;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.product-detail-wishlist:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.product-detail-wishlist.active {
    background: #fee2e2;
    border-color: #dc2626;
    color: #dc2626;
}

.product-detail-wishlist.active i {
    color: #dc2626;
}

/* Installments */
.product-installments {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.installments-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.installments-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.installment-bank-section {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .installment-bank-section.col-md-4 {
        flex: 0 0 calc(33.333333% - 1rem);
        max-width: calc(33.333333% - 1rem);
        width: calc(33.333333% - 1rem);
    }
}

.installment-bank-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e5e5;
}

.installment-bank-title i {
    color: #dc2626;
    font-size: 1rem;
}

/* Installment Table */
.installment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.installment-table thead {
    background: #dc2626;
    color: #fff;
}

.installment-table th {
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.installment-table tbody tr {
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s ease;
}

.installment-table tbody tr:hover {
    background: #f9fafb;
}

.installment-table tbody tr:last-child {
    border-bottom: none;
}

.installment-table td {
    padding: 0.75rem;
    font-size: 0.875rem;
    text-align: center;
    color: #374151;
    border-right: 1px solid #e5e5e5;
}

.installment-table td:last-child {
    border-right: none;
}

.installment-table tbody td:nth-child(2),
.installment-table tbody td:nth-child(3) {
    font-weight: 600;
    color: #dc2626;
}

.installments-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
    margin: 0;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e5e5;
}

.installments-note i {
    color: #dc2626;
}

.product-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.875rem;
}

.product-meta-item i {
    color: #dc2626;
    font-size: 1rem;
}

/* Product Tabs */
.product-tabs {
    margin-top: 3rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-tabs-header {
    display: flex;
    border-bottom: 2px solid #e5e5e5;
}

.tab-btn {
    flex: 1;
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab-btn:hover {
    color: #dc2626;
    background: #f9fafb;
}

.tab-btn.active {
    color: #dc2626;
    border-bottom-color: #dc2626;
}

.product-tabs-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1f2937;
}

.tab-panel h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    color: #1f2937;
}

.tab-panel p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tab-panel ul {
    list-style: disc;
    padding-left: 2rem;
    color: #374151;
    line-height: 1.8;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr {
    border-bottom: 1px solid #e5e5e5;
}

.specifications-table td {
    padding: 1rem;
    font-size: 1rem;
}

.specifications-table td:first-child,
.specifications-table .spec-key {
    font-weight: 600;
    color: #1f2937;
    width: 40%;
    background: #f9fafb;
}

.specifications-table td:last-child,
.specifications-table .spec-value {
    color: #374151;
}

/* Reviews */
.reviews-summary {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
}

.reviews-content {
    padding: 2rem 0;
}

.reviews-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.reviews-empty i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.reviews-empty p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.reviews-empty span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Review Form */
.review-form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.review-form-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.review-form-group {
    margin-bottom: 1.5rem;
}

.review-form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.review-rating-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-rating-input input[type="radio"] {
    display: none;
}

.review-rating-input .rating-star {
    cursor: pointer;
    font-size: 1.75rem;
    color: #d1d5db;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.review-rating-input .rating-star:hover {
    transform: scale(1.1);
}

.review-rating-input .rating-star i.fa-solid {
    color: #fbbf24;
}

.review-rating-input .rating-star i.fa-regular {
    color: #d1d5db;
}

.rating-text {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-left: 0.5rem;
    min-height: 1.25rem;
}

.review-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s ease;
}

.review-form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.review-submit-btn {
    padding: 0.75rem 2rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.review-submit-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.review-login-prompt {
    text-align: center;
    padding: 3rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    margin-bottom: 2rem;
}

.review-login-prompt i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.review-login-prompt p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.review-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #dc2626;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.review-login-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.reviews-list {
    margin-top: 2rem;
}

.rank-discount {
    background: #10b981 !important;
    margin-left: 0.5rem;
}

/* Member Discount Card - Üye İndirimi */
.member-discount-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    margin-top: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.member-discount-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.member-discount-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.member-discount-icon {
    font-size: 1.5rem;
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.member-discount-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.member-discount-label {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-discount-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.member-discount-rank {
    font-size: 0.75rem;
    opacity: 0.85;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .member-discount-card {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .member-discount-percentage {
        font-size: 1.25rem;
    }
    
    .member-discount-icon {
        font-size: 1.25rem;
    }
}

/* Bank Transfer Discount */
.bank-transfer-discount {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px dashed #e5e5e5;
}

.bank-transfer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.bank-transfer-badge i {
    font-size: 1rem;
}

.bank-transfer-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bank-transfer-label {
    font-size: 0.9375rem;
    color: #6b7280;
    font-weight: 500;
}

.bank-transfer-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.bank-transfer-savings {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 8px;
    border: 1px solid #93c5fd;
    font-size: 0.875rem;
    color: #1e40af;
}

.bank-transfer-savings i {
    color: #3b82f6;
    font-size: 1rem;
}

.bank-transfer-savings strong {
    color: #1e3a8a;
    font-weight: 700;
}

@media (max-width: 768px) {
    .bank-transfer-amount {
        font-size: 1.25rem;
    }
    
    .bank-transfer-savings {
        font-size: 0.8125rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Question & Answer Styles */
.questions-content {
    padding: 1rem 0;
}

.question-form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.question-form-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.question-form-group {
    margin-bottom: 1.5rem;
}

.question-form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.question-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s ease;
}

.question-form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.question-submit-btn {
    padding: 0.75rem 2rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.question-submit-btn:hover:not(:disabled) {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.question-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.question-login-prompt {
    text-align: center;
    padding: 3rem 1rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    margin-bottom: 3rem;
}

.question-login-prompt i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.question-login-prompt p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

.question-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #dc2626;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.question-login-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.questions-list {
    margin-top: 2rem;
}

.questions-list h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.question-item {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.question-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.question-item.question-pending {
    background: #fef3c7;
    border-color: #fbbf24;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.question-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.question-author strong {
    font-size: 0.9375rem;
    color: #1f2937;
    font-weight: 600;
}

.question-status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.question-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.question-text {
    margin-bottom: 1rem;
}

.question-text p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.question-answer {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    border-radius: 6px;
}

.answer-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.answer-header i {
    color: #10b981;
    font-size: 1rem;
}

.answer-header strong {
    font-size: 0.9375rem;
    color: #1f2937;
    font-weight: 600;
}

.answer-date {
    font-size: 0.75rem;
    color: #6b7280;
    margin-left: auto;
}

.answer-text {
    color: #374151;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.question-answer-pending {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #fef3c7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #92400e;
    font-size: 0.875rem;
}

.question-answer-pending i {
    color: #f59e0b;
}

.questions-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.questions-empty i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.questions-empty p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.questions-empty span {
    font-size: 0.875rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .question-form-section {
        padding: 1.5rem;
    }
    
    .question-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .answer-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .answer-date {
        margin-left: 0;
    }
}

/* Review Items */
.review-item {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-author strong {
    font-size: 1rem;
    color: #1f2937;
}

.verified-badge {
    color: #10b981;
    font-size: 0.875rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.review-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.review-comment {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.reviews-average {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviews-rating {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
}

.reviews-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.review-author strong {
    color: #1f2937;
    font-size: 1rem;
}

.review-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.review-text {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   Compatibility Section (Tag-based)
   ============================================ */
.compatibility-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 0.75rem;
    border: 1px solid #2d3748;
}

.compatibility-section-alt {
    background: linear-gradient(135deg, #1e3a5f 0%, #0d2137 100%);
    border-color: #1e4976;
}

.compatibility-section-alt .compatibility-tag {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.3);
}

.compatibility-section-alt .compatibility-tab.active {
    background: #3b82f6;
    border-color: #3b82f6;
}

.compatibility-section-alt .compat-nav-btn {
    background: rgba(59, 130, 246, 0.9);
}

.compatibility-section-alt .compat-nav-btn:hover {
    background: #3b82f6;
}

.compatibility-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.compatibility-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.compatibility-title i {
    color: #dc2626;
}

.compatibility-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.compatibility-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background: rgba(220, 38, 38, 0.15);
    color: #f87171;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 9999px;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

/* Compatibility Tabs */
.compatibility-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #374151;
}

.compatibility-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #374151;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.compatibility-tab:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: #4b5563;
}

.compatibility-tab.active {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.compatibility-tab .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.compatibility-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.2);
}

/* Compatibility Products Slider */
.compatibility-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compatibility-products-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.5rem 0;
    flex: 1;
}

.compatibility-products-slider::-webkit-scrollbar {
    display: none;
}

/* Navigation Buttons */
.compat-nav-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.compat-nav-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.compat-nav-btn i {
    font-size: 1rem;
}

.compat-product-card {
    position: relative;
    flex: 0 0 180px;
    background: #1f2937;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #374151;
}

.compat-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: #dc2626;
}

.compat-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.compat-product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #111827;
    overflow: hidden;
}

.compat-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.compat-product-card:hover .compat-product-image img {
    transform: scale(1.05);
}

.compat-discount-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: #dc2626;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
}

.compat-product-info {
    padding: 0.75rem;
}

.compat-product-category {
    display: block;
    font-size: 0.6875rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.compat-product-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.compat-product-price {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.compat-old-price {
    font-size: 0.75rem;
    color: #6b7280;
    text-decoration: line-through;
}

.compat-current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #dc2626;
}

.compat-add-cart-btn {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.8);
}

.compat-product-card:hover .compat-add-cart-btn {
    opacity: 1;
    transform: scale(1);
}

.compat-add-cart-btn:hover {
    background: #b91c1c;
    transform: scale(1.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .compatibility-section {
        margin: 1.5rem -1rem 0;
        border-radius: 0;
        padding: 1rem;
    }

    .compatibility-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .compatibility-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.75rem;
        margin: 0 -1rem 1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .compatibility-tabs::-webkit-scrollbar {
        display: none;
    }

    .compatibility-tab {
        flex-shrink: 0;
        font-size: 0.8125rem;
        padding: 0.375rem 0.75rem;
    }

    .compatibility-slider-wrapper {
        margin: 0 -1rem;
        padding: 0 0.5rem;
    }

    .compat-nav-btn {
        width: 32px;
        height: 32px;
    }

    .compat-nav-btn i {
        font-size: 0.875rem;
    }

    .compat-product-card {
        flex: 0 0 150px;
    }

    .compat-add-cart-btn {
        opacity: 1;
        transform: scale(1);
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 480px) {
    .compat-product-card {
        flex: 0 0 140px;
    }

    .compat-product-title {
        font-size: 0.8125rem;
    }

    .compat-current-price {
        font-size: 0.875rem;
    }

    .compat-nav-btn {
        width: 28px;
        height: 28px;
    }
}

/* Compatible Products Section (Manual) */
.compatible-products-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.compatible-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
}

.compatible-section-title i {
    color: #dc2626;
    font-size: 1.25rem;
}

.compatible-products-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 5rem) / 6);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
    margin: -0.5rem 0;
}

.compatible-products-slider::-webkit-scrollbar {
    display: none;
}

.compatible-product-card {
    min-width: 0;
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.compatible-product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
    border-color: #dc2626 !important;
}

.compatible-product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.compatible-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.375rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
    background: #f9fafb;
}

.compatible-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.compatible-product-card:hover .compatible-product-image img {
    transform: scale(1.05);
}

.compatible-product-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.compatible-product-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compatible-product-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #374151;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.compatible-product-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.625rem;
}

.compatible-add-cart {
    width: 100%;
    padding: 0.5rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: auto;
}

.compatible-add-cart:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3) !important;
}

.compatible-add-cart i {
    font-size: 0.6875rem;
}

/* Responsive Compatible Products */
@media screen and (max-width: 1200px) {
    .compatible-products-slider {
        grid-auto-columns: calc((100% - 4rem) / 5);
    }
}

@media screen and (max-width: 1024px) {
    .compatible-products-slider {
        grid-auto-columns: calc((100% - 3rem) / 4);
    }
}

@media screen and (max-width: 768px) {
    .compatible-products-section {
        margin: 1.5rem -1rem 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .compatible-products-slider {
        grid-auto-columns: 150px;
    }
}

@media screen and (max-width: 480px) {
    .compatible-products-slider {
        grid-auto-columns: 140px;
    }
}

@media screen and (max-width: 480px) {
    .compatible-section-title {
        font-size: 1rem;
    }
    
    .compatible-product-card {
        flex: 0 0 130px;
        min-width: 130px;
        padding: 0.625rem;
    }
    
    .compatible-product-title {
        font-size: 0.75rem;
    }
    
    .compatible-product-price {
        font-size: 0.875rem;
    }
}

/* Related Products */
.related-products-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-products-grid .product-card {
    margin-bottom: 0;
}

.related-products-grid .product-card .product-image-wrapper {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.related-products-grid .product-card .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f9fafb;
}

.related-products-grid .product-card .product-info {
    padding: 1rem;
}

.related-products-grid .product-card .product-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.related-products-grid .product-card .product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.related-products-grid .product-card .price-current {
    font-size: 1.125rem;
    font-weight: 700;
    color: #dc2626;
}

.related-products-grid .product-card .price-old {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Related Products Slider for Tablet */
    .related-products-section {
        overflow: hidden;
    }
    
    .related-products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1rem;
        padding-bottom: 1rem;
        margin: 2rem -1rem 0;
        padding-left: 1rem;
        padding-right: 1rem;
        grid-template-columns: none;
    }
    
    .related-products-grid::-webkit-scrollbar {
        display: none;
    }
    
    .related-products-grid .product-card {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        scroll-snap-align: start;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .product-detail-content {
        padding: 1.5rem;
    }
    
    .product-detail-header h1 {
        font-size: 1.5rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .product-action-buttons {
        flex-direction: column;
    }
    
    .product-share-wishlist {
        flex-direction: column;
    }
    
    .product-tabs-header {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid #e5e5e5;
        border-left: 3px solid transparent;
        text-align: left;
    }
    
    .tab-btn.active {
        border-left-color: #dc2626;
        border-bottom-color: #e5e5e5;
    }
    
    /* Related Products Slider for Mobile */
    .related-products-grid .product-card {
        flex: 0 0 calc(75% - 0.5rem);
        min-width: calc(75% - 0.5rem);
        max-width: calc(75% - 0.5rem);
    }
    
    .installment-bank-section {
        padding: 1rem;
    }
    
    .installment-bank-title {
        font-size: 1rem;
    }
    
    .installment-table {
        font-size: 0.75rem;
    }
    
    .installment-table th,
    .installment-table td {
        padding: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    .product-detail-wrapper {
        padding: 1rem 0;
    }
    
    .product-detail-content {
        padding: 1rem;
    }
    
    .product-thumbnails {
        gap: 0.5rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    /* Related Products Slider for Small Mobile */
    .related-products-grid .product-card {
        flex: 0 0 calc(85% - 0.5rem);
        min-width: calc(85% - 0.5rem);
        max-width: calc(85% - 0.5rem);
    }
    
    .installment-table {
        font-size: 0.7rem;
    }
    
    .installment-table th,
    .installment-table td {
        padding: 0.4rem 0.25rem;
    }
}

/* Blog Page Styles */
.blog-page-wrapper {
    padding: 2rem 0 4rem;
    background: #f9fafb;
    min-height: calc(100vh - 200px);
}

.blog-page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.blog-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.blog-page-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

.blog-page-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Blog Sidebar */
.blog-sidebar {
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.blog-sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.blog-sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-list li {
    margin-bottom: 0.5rem;
}

.blog-category-link {
    display: block;
    padding: 0.5rem 0.75rem;
    color: #6b7280;
    text-decoration: none;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.blog-category-link:hover,
.blog-category-link.active {
    background: #dc2626;
    color: #fff;
}

/* Popular Posts */
.blog-popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-popular-post {
    display: flex;
}

.blog-popular-link {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.blog-popular-link:hover {
    opacity: 0.8;
}

.blog-popular-image {
    width: 80px;
    height: 60px;
    border-radius: 0.375rem;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-popular-content {
    flex: 1;
}

.blog-popular-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-popular-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Blog Tags */
.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    transform: translateY(0);
    box-shadow: none;
    will-change: transform, background-color, box-shadow;
}

.blog-tag:hover {
    background: #dc2626 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3) !important;
}

/* Blog Main Content */
.blog-main {
    flex: 1;
}

.blog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-results-count {
    font-size: 0.9375rem;
    color: #6b7280;
}

.blog-results-count strong {
    color: #1f2937;
    font-weight: 600;
}

.blog-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.blog-sort label {
    font-size: 0.9375rem;
    color: #6b7280;
}

.blog-sort-select {
    padding: 0.5rem 2.5rem 0.5rem 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.9375rem;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    transition: border-color 0.2s ease;
}

.blog-sort-select:hover {
    border-color: #dc2626;
}

.blog-sort-select:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Blog Grid (Updated for blog page) */
.blog-page-content .blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.pagination-number:hover,
.pagination-number.active {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
}

.pagination-dots {
    color: #6b7280;
    padding: 0 0.25rem;
}

/* Responsive */
@media screen and (max-width: 1023px) {
    .blog-page-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-sidebar {
        position: static;
        order: 2;
    }

    .blog-main {
        order: 1;
    }

    .blog-page-content .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 767px) {
    .blog-page-title {
        font-size: 2rem;
    }

    .blog-page-subtitle {
        font-size: 1rem;
    }

    .blog-toolbar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .blog-sort {
        justify-content: space-between;
    }

    .blog-page-content .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-pagination {
        flex-wrap: wrap;
    }

    .pagination-numbers {
        flex-wrap: wrap;
    }
}

/* Blog Detail Page Styles */
.blog-detail-wrapper {
    padding: 2rem 0 4rem;
    background: #f9fafb;
    min-height: calc(100vh - 200px);
}

.blog-detail-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

/* Blog Detail Main Content */
.blog-detail-main {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-article {
    margin-bottom: 3rem;
}

.blog-article-header {
    margin-bottom: 2rem;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-article-meta i {
    font-size: 0.75rem;
    color: #dc2626;
}

.blog-article-category {
    color: #dc2626;
    font-weight: 500;
}

.blog-article-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.blog-article-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.blog-article-featured-image {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #dc2626;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.blog-article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.blog-article-intro {
    font-size: 1.1875rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 2rem 0;
    padding: 1.5rem;
    background: #f3f4f6;
    border-left: 4px solid #dc2626;
    border-radius: 0.375rem;
}

.blog-article-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.4;
}

.blog-article-content h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.blog-article-content p {
    margin: 0 0 1.5rem 0;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 1.5rem 2rem;
    padding: 0;
}

.blog-article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-article-content a {
    color: #dc2626;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.blog-article-content a:hover {
    border-bottom-color: #dc2626;
}

/* Blog Article Tags */
.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin: 3rem 0 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.blog-tags-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9375rem;
}

/* Blog Share Buttons */
.blog-article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.blog-share-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9375rem;
}

/* Blog Share Buttons - Old style (for blog-article-share, keep for backward compatibility) */
.blog-article-share .blog-share-buttons {
    display: flex;
    gap: 0.75rem;
}

.blog-article-share .blog-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.375rem;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    will-change: transform, background, box-shadow;
}

.blog-article-share .blog-share-btn i {
    color: #fff !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-size: 1rem;
    display: inline-block;
}

.blog-share-facebook {
    background: #1877f2;
}

.blog-share-facebook:hover {
    background: #166fe5 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4) !important;
}

.blog-share-facebook:hover i {
    transform: scale(1.1) !important;
}

.blog-share-twitter {
    background: #1da1f2;
}

.blog-share-twitter:hover {
    background: #1a91da !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4) !important;
}

.blog-share-twitter:hover i {
    transform: scale(1.1) !important;
}

.blog-share-whatsapp {
    background: #25d366;
}

.blog-share-whatsapp:hover {
    background: #20ba5a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
}

.blog-share-whatsapp:hover i {
    transform: scale(1.1) !important;
}

.blog-share-linkedin {
    background: #0077b5;
}

.blog-share-linkedin:hover {
    background: #006399 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4) !important;
}

.blog-share-linkedin:hover i {
    transform: scale(1.1) !important;
}

.blog-share-copy {
    background: #6b7280;
}

.blog-share-copy:hover {
    background: #4b5563 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4) !important;
}

.blog-share-copy:hover i {
    transform: scale(1.1) !important;
}

/* Related Posts Section */
.blog-related-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.blog-related-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 2rem 0;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Blog Detail Article */
.blog-detail-article {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-category {
    margin-bottom: 1rem;
}

.blog-detail-category a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #dc2626;
    color: #fff;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-detail-category a:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.blog-detail-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-detail-date,
.blog-detail-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-date i,
.blog-detail-views i {
    font-size: 0.75rem;
    color: #dc2626;
}

.blog-detail-image {
    width: 100%;
    margin: 2rem 0;
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-body {
    margin: 2rem 0;
}

.blog-detail-excerpt {
    font-size: 1.1875rem;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 2rem 0;
    padding: 1.5rem;
    background: #f3f4f6;
    border-left: 4px solid #dc2626;
    border-radius: 0.375rem;
}

.blog-detail-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
}

.blog-detail-text h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2.5rem 0 1rem 0;
    line-height: 1.4;
}

.blog-detail-text h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 1rem 0;
    line-height: 1.4;
}

.blog-detail-text p {
    margin: 0 0 1.5rem 0;
}

.blog-detail-text ul,
.blog-detail-text ol {
    margin: 0 0 1.5rem 2rem;
    padding: 0;
}

.blog-detail-text li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-detail-text a {
    color: #dc2626;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.blog-detail-text a:hover {
    border-bottom-color: #dc2626;
}

.blog-detail-text img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.blog-detail-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.blog-detail-text table th,
.blog-detail-text table td {
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.blog-detail-text table th {
    background: #f3f4f6;
    font-weight: 600;
    color: #1f2937;
}

/* Blog Content Table Wrapper */
.blog-table-wrapper {
    margin: 1.5rem 0;
    overflow-x: auto;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.blog-content-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 100%;
}

.blog-content-table thead {
    background: #f3f4f6;
}

.blog-content-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
}

.blog-content-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.blog-content-table tbody tr:hover {
    background: #f9fafb;
}

.blog-content-table tbody tr:last-child td {
    border-bottom: none;
}

@media screen and (max-width: 767px) {
    .blog-table-wrapper {
        margin: 1rem 0;
        border-radius: 0.375rem;
    }
    
    .blog-content-table th,
    .blog-content-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
}

.blog-detail-text blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid #dc2626;
    background: #f9fafb;
    border-radius: 0.375rem;
    font-style: italic;
    color: #4b5563;
}

.blog-detail-text code {
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: #dc2626;
    font-family: 'Courier New', monospace;
}

.blog-detail-text pre {
    background: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-detail-text pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.blog-detail-tags {
    margin: 3rem 0 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.blog-detail-tags-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-detail-tags-title i {
    color: #dc2626;
}

.blog-detail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-detail-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-detail-tag:hover {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.blog-detail-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.75rem;
}

.blog-detail-share-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.blog-detail-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Blog Detail Share Buttons - Override general blog-share-btn */
.blog-detail-share-buttons .blog-share-btn {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.625rem 1.25rem !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: #fff !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.blog-detail-share-buttons .blog-share-btn i {
    font-size: 1rem !important;
    color: #fff !important;
}

.blog-detail-share-buttons .blog-share-facebook {
    background: #1877f2 !important;
}

.blog-detail-share-buttons .blog-share-facebook:hover {
    background: #166fe5 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4) !important;
}

.blog-detail-share-buttons .blog-share-twitter {
    background: #1da1f2 !important;
}

.blog-detail-share-buttons .blog-share-twitter:hover {
    background: #1a91da !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4) !important;
}

.blog-detail-share-buttons .blog-share-whatsapp {
    background: #25d366 !important;
}

.blog-detail-share-buttons .blog-share-whatsapp:hover {
    background: #20ba5a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
}

.blog-detail-share-buttons .blog-share-copy {
    background: #6b7280 !important;
}

.blog-detail-share-buttons .blog-share-copy:hover {
    background: #4b5563 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.4) !important;
}

/* Blog Related Posts */
.blog-related-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-related-item {
    margin-bottom: 0;
}

.blog-related-link {
    display: flex;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.blog-related-link:hover {
    background: #f3f4f6;
    opacity: 1;
}

.blog-related-image {
    width: 80px;
    height: 60px;
    border-radius: 0.375rem;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-related-content {
    flex: 1;
}

.blog-related-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-related-date {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Blog Tags Cloud */
.blog-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tag-link {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-tag-link:hover,
.blog-tag-link.active {
    background: #dc2626;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 38, 38, 0.3);
}

.blog-tag-count {
    font-size: 0.75rem;
    opacity: 0.8;
    margin-left: 0.25rem;
}

/* Blog Category Count */
.blog-category-count {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.blog-empty i {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 1rem;
    display: block;
}

.blog-empty p {
    font-size: 1.125rem;
    margin: 0;
}

/* Blog Detail Sidebar */
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media screen and (max-width: 1023px) {
    .blog-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-detail-sidebar {
        position: static;
        order: 2;
    }

    .blog-detail-article {
        order: 1;
    }

    .blog-detail-title {
        font-size: 1.875rem;
    }

    .blog-detail-text h2 {
        font-size: 1.5rem;
    }

    .blog-detail-text h3 {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .blog-detail-article {
        padding: 1.5rem;
    }

    .blog-detail-title {
        font-size: 1.5rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .blog-detail-share-buttons {
        flex-direction: column;
    }

    .blog-share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   CART DRAWER (Sağdan Açılan Sepet)
   ================================ */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.cart-drawer.active {
    pointer-events: auto;
    visibility: visible;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cart-drawer.active .cart-drawer-overlay {
    opacity: 1;
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Cart Drawer Header */
.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
}

.cart-drawer-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.cart-drawer-title i {
    font-size: 1.25rem;
}

.cart-drawer-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.5rem;
    background: #dc2626;
    color: #fff;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.cart-drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Cart Drawer Body */
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Empty Cart */
.cart-drawer-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #9ca3af;
}

.cart-drawer-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.cart-drawer-empty p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 0.5rem 0;
}

.cart-drawer-empty span {
    font-size: 0.875rem;
}

.cart-drawer-empty.hidden {
    display: none;
}

/* Cart Items */
.cart-drawer-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-drawer-items:empty + .cart-drawer-empty {
    display: flex;
}

.cart-drawer-items:not(:empty) ~ .cart-drawer-empty {
    display: none;
}

/* Cart Item */
.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    animation: cartItemSlideIn 0.3s ease;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-category {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.cart-item-variant {
    display: block;
    font-size: 0.75rem;
    color: #059669;
    font-weight: 500;
    margin-bottom: 0.25rem;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    width: fit-content;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #dc2626;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.cart-item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 0.875rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    background: #fee2e2;
    color: #dc2626;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    padding: 0.25rem;
}

.cart-item-quantity button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    color: #6b7280;
    font-size: 0.75rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.cart-item-quantity button:hover {
    background: #f3f4f6;
    color: #1f2937;
}

.cart-item-quantity span {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

/* Cart Drawer Footer */
.cart-drawer-footer {
    padding: 1.5rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.cart-drawer-footer.hidden {
    display: none;
}

.cart-drawer-summary {
    margin-bottom: 1rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #6b7280;
}

.cart-summary-row.cart-total-row {
    border-top: 1px solid #e5e7eb;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
}

.cart-total {
    color: #dc2626;
}

.cart-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-continue-btn,
.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-continue-btn {
    background: #fff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.cart-continue-btn:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.cart-checkout-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.cart-checkout-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* Cart Added Notification - Sol Üst Köşe */
.cart-added-notification {
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 10001;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.cart-added-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.cart-added-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 0.75rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    min-width: 280px;
    max-width: 350px;
}

.cart-added-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.cart-added-info {
    display: flex;
    flex-direction: column;
}

.cart-added-title {
    font-size: 0.875rem;
    font-weight: 600;
}

.cart-added-product {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Responsive Cart Drawer */
@media screen and (max-width: 480px) {
    .cart-drawer-content {
        width: 100%;
    }
    
    .cart-drawer-header {
        padding: 1rem;
    }
    
    .cart-drawer-body {
        padding: 1rem;
    }
    
    .cart-drawer-footer {
        padding: 1rem;
    }
    
    .cart-item {
        padding: 0.75rem;
    }
    
    .cart-item-image {
        width: 70px;
        height: 70px;
    }
}

/* ================================
   PRODUCT VIDEO BADGE
   ================================ */
.product-video-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    border: none;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-video-badge i {
    font-size: 0.875rem;
    animation: videoPulse 2s infinite;
}

@keyframes videoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.product-video-badge:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.5);
}

.product-video-badge span {
    letter-spacing: 0.5px;
}

/* ================================
   VIDEO MODAL
   ================================ */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s, opacity 0.3s;
}

.video-modal.active {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 900px;
    background: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-modal.active .video-modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.video-modal-title i {
    color: #dc2626;
    font-size: 1.25rem;
}

.video-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.video-modal-close:hover {
    background: rgba(220, 38, 38, 0.5);
}

.video-modal-body {
    padding: 0;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Video Modal */
@media screen and (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        border-radius: 0.75rem;
    }
    
    .video-modal-header {
        padding: 0.875rem 1rem;
    }
    
    .video-modal-title {
        font-size: 1rem;
    }
}

/* ================================
   CONTRACTS PAGE (Sözleşmeler)
   ================================ */
.contracts-page-wrapper {
    padding: 2rem 0 4rem;
    background: #f9fafb;
    min-height: calc(100vh - 200px);
}

.contracts-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

/* Sidebar */
.contracts-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contracts-sidebar-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    margin: 0;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.contracts-sidebar-title i {
    color: #dc2626;
}

.contracts-nav {
    display: flex;
    flex-direction: column;
}

.contracts-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9375rem;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.contracts-nav-link i {
    font-size: 0.625rem;
    color: #9ca3af;
    transition: transform 0.2s ease, color 0.2s ease;
}

.contracts-nav-link:hover {
    background: #f9fafb;
    color: #dc2626;
}

.contracts-nav-link:hover i {
    color: #dc2626;
    transform: translateX(4px);
}

.contracts-nav-link.active {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.04) 100%);
    color: #dc2626;
    font-weight: 600;
    border-left: 3px solid #dc2626;
}

.contracts-nav-link.active i {
    color: #dc2626;
}

.contracts-nav-link:last-child {
    border-bottom: none;
}

/* Main Content */
.contracts-main {
    min-width: 0;
}

.contract-article {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contract-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e5e7eb;
}

.contract-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.contract-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contract-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.contract-meta i {
    color: #dc2626;
}

.contract-body {
    padding: 2rem;
}

.contract-section {
    margin-bottom: 2rem;
}

.contract-section:last-child {
    margin-bottom: 0;
}

.contract-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #dc2626;
}

.contract-section h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.75rem 0;
}

.contract-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0 0 1rem 0;
}

.contract-section ul,
.contract-section ol {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.contract-section li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 0.5rem;
}

.contract-section li strong {
    color: #1f2937;
}

/* Contract Highlight Box */
.contract-highlight {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 0.5rem;
    border-left: 4px solid #f59e0b;
    margin: 1rem 0;
}

.contract-highlight i {
    color: #f59e0b;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contract-highlight p {
    margin: 0;
    color: #92400e;
}

/* Contract Table */
.contract-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9375rem;
}

.contract-table th,
.contract-table td {
    padding: 0.875rem 1rem;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.contract-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #1f2937;
}

.contract-table td {
    color: #4b5563;
}

.contract-table tr:nth-child(even) td {
    background: #fafafa;
}

/* Contract Footer */
.contract-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

.contract-print-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #1f2937;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.contract-print-btn:hover {
    background: #374151;
}

.contract-contact p {
    margin: 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.contract-contact a {
    color: #dc2626;
    font-weight: 500;
}

/* Responsive Contracts */
@media screen and (max-width: 1024px) {
    .contracts-content {
        grid-template-columns: 240px 1fr;
    }
}

@media screen and (max-width: 768px) {
    .contracts-content {
        grid-template-columns: 1fr;
    }
    
    .contracts-sidebar {
        position: static;
    }
    
    .contracts-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contracts-nav-link {
        padding: 0.875rem 1rem;
        font-size: 0.8125rem;
        border-bottom: 1px solid #f3f4f6;
        border-right: 1px solid #f3f4f6;
    }
    
    .contracts-nav-link:nth-child(2n) {
        border-right: none;
    }
    
    .contract-header {
        padding: 1.5rem;
    }
    
    .contract-title {
        font-size: 1.5rem;
    }
    
    .contract-body {
        padding: 1.5rem;
    }
    
    .contract-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .contracts-nav {
        grid-template-columns: 1fr;
    }
    
    .contracts-nav-link {
        border-right: none;
    }
    
    .contract-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Print Styles */
@media print {
    .contracts-sidebar,
    .contract-footer,
    .navbar,
    .footer {
        display: none !important;
    }
    
    .contracts-content {
        grid-template-columns: 1fr;
    }
    
    .contract-article {
        box-shadow: none;
    }
}

/* ================================
   CUSTOM TOOLTIP SYSTEM
   ================================ */
.custom-tooltip {
    position: fixed;
    z-index: 10001; /* Navbar'dan (1000) daha yüksek ama modal'lardan (10000) daha düşük */
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    transform: translateY(4px) scale(0.95);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    max-width: 250px;
    word-wrap: break-word;
    line-height: 1.4;
}

.custom-tooltip.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Tooltip arrow - varsayılan: aşağı bakıyor (tooltip üstte) */
.custom-tooltip::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top-color: #1f2937;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.custom-tooltip.show::before {
    opacity: 1;
}

/* Tooltip altta gösterildiğinde: arrow yukarı bakıyor */
.custom-tooltip.tooltip-bottom::before {
    border-top-color: transparent;
    border-bottom-color: #1f2937;
    bottom: auto;
    top: -12px;
}

/* Payment icon tooltip özel stili */
.payment-icon:hover + .custom-tooltip,
.security-icon:hover + .custom-tooltip {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.custom-tooltip.show.payment-tooltip {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.custom-tooltip.show.payment-tooltip::before {
    border-top-color: #dc2626;
}

/* Responsive tooltip */
@media screen and (max-width: 768px) {
    .custom-tooltip {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        max-width: 200px;
    }
}

/* ================================
   User Dashboard Modal
   ================================ */

/* Modal Container */
.dashboard-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dashboard-modal.active {
    display: flex;
}

.dashboard-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.dashboard-modal-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    max-height: 85vh;
    background: var(--color-white);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Fullscreen Mode */
.dashboard-modal.fullscreen .dashboard-modal-container {
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    border-radius: 0;
}

.dashboard-modal.fullscreen {
    padding: 0;
}

/* Modal Header */
.dashboard-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.dashboard-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.dashboard-header-left i {
    font-size: 1.5rem;
}

.dashboard-header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-fullscreen-btn,
.dashboard-close-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.dashboard-fullscreen-btn:hover,
.dashboard-close-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Modal Body */
.dashboard-modal-body {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar */
.dashboard-sidebar {
    width: 280px;
    background: var(--color-gray-50);
    border-right: 1px solid var(--color-gray-200);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.dashboard-user-info {
    padding: 1.5rem;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dashboard-user-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

.dashboard-user-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-user-email {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-user-rank {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-warning);
    background: rgba(245, 158, 11, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    width: fit-content;
}

.dashboard-user-rank i {
    font-size: 0.625rem;
}

/* Menu */
.dashboard-menu {
    flex: 1;
    padding: 1rem 0;
}

.dashboard-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: var(--color-gray-700);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dashboard-menu-item:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.dashboard-menu-item.active {
    background: var(--color-white);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
    font-weight: 600;
}

.dashboard-menu-item i {
    width: 1.25rem;
    text-align: center;
    font-size: 1rem;
}

.dashboard-menu-item span:first-of-type {
    flex: 1;
}

.dashboard-menu-badge {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 999px;
    min-width: 1.25rem;
    text-align: center;
}

.dashboard-menu-badge:empty {
    display: none;
}

/* Menu Footer */
.dashboard-menu-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.dashboard-logout-form {
    margin: 0;
}

.dashboard-logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: transparent;
    border: 1px solid var(--color-gray-300);
    color: var(--color-gray-600);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-logout-btn:hover {
    background: var(--color-error);
    border-color: var(--color-error);
    color: var(--color-white);
}

/* Content Area */
.dashboard-content {
    flex: 1;
    overflow-y: auto;
    background: var(--color-white);
}

.dashboard-section {
    display: none;
    height: 100%;
}

.dashboard-section.active {
    display: flex;
    flex-direction: column;
}

.dashboard-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-gray-200);
    background: var(--color-gray-50);
}

.dashboard-section-header h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;
}

.dashboard-section-header h2 i {
    color: var(--color-primary);
}

.dashboard-add-btn,
.dashboard-mark-all-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-add-btn:hover,
.dashboard-mark-all-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.dashboard-section-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

/* Loading State */
.dashboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    color: var(--color-gray-500);
}

.dashboard-loading i {
    font-size: 2rem;
    color: var(--color-primary);
}

/* Empty State */
.dashboard-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem;
    text-align: center;
    color: var(--color-gray-500);
}

.dashboard-empty i {
    font-size: 3rem;
    color: var(--color-gray-300);
}

.dashboard-empty p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.dashboard-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: all 0.2s ease;
}

.dashboard-empty-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* Form Styles */
.dashboard-form {
    max-width: 600px;
}

.dashboard-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.dashboard-form-group {
    margin-bottom: 1.25rem;
}

.dashboard-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
}

.dashboard-form-group input,
.dashboard-form-group select,
.dashboard-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    color: var(--color-gray-900);
    background: var(--color-white);
    transition: all 0.2s ease;
}

.dashboard-form-group input:focus,
.dashboard-form-group select:focus,
.dashboard-form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1);
}

.dashboard-form-group input:disabled {
    background: var(--color-gray-100);
    cursor: not-allowed;
}

.dashboard-form-hint {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.dashboard-form-checkbox {
    margin-bottom: 1.25rem;
}

.dashboard-form-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dashboard-form-checkbox input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--color-primary);
}

.dashboard-form-checkbox span {
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.dashboard-form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.dashboard-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-submit-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.dashboard-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.dashboard-cancel-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--color-gray-600);
    border: 1px solid var(--color-gray-300);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-cancel-btn:hover {
    background: var(--color-gray-100);
}

/* Address Form Popup */
.dashboard-address-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.dashboard-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.dashboard-form-popup {
    position: relative;
    width: 100%;
    max-width: 550px;
    max-height: 90vh;
    background: var(--color-white);
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.dashboard-form-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
}

.dashboard-form-popup-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin: 0;
}

.dashboard-form-popup-close {
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: var(--color-gray-500);
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.dashboard-form-popup-close:hover {
    background: var(--color-gray-200);
    color: var(--color-gray-700);
}

.dashboard-form-popup .dashboard-form {
    max-width: 100%;
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

/* Orders List */
.dashboard-orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-order-card {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.dashboard-order-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboard-order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
}

.dashboard-order-id {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.dashboard-order-date {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

.dashboard-order-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-order-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.dashboard-order-status.processing {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.dashboard-order-status.shipped {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.dashboard-order-status.delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.dashboard-order-status.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dashboard-order-body {
    padding: 1rem 1.25rem;
}

.dashboard-order-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--color-gray-100);
    flex-shrink: 0;
}

.dashboard-order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-order-item-info {
    flex: 1;
}

.dashboard-order-item-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.dashboard-order-item-variant {
    display: inline-block;
    font-size: 0.75rem;
    color: #059669;
    font-weight: 500;
    background: rgba(5, 150, 105, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    margin-bottom: 0.25rem;
}

.dashboard-order-item-qty {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
}

.dashboard-order-item-price {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-primary);
}

.dashboard-order-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-gray-200);
    background: var(--color-gray-50);
}

.dashboard-order-total {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
}

.dashboard-order-total span {
    color: var(--color-primary);
}

.dashboard-order-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dashboard-order-detail-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Addresses List */
.dashboard-addresses-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.dashboard-address-card {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    position: relative;
    transition: all 0.2s ease;
}

.dashboard-address-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboard-address-card.default {
    border-color: var(--color-primary);
    background: rgba(193, 39, 45, 0.02);
}

.dashboard-address-default-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
}

.dashboard-address-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-address-title i {
    color: var(--color-primary);
}

.dashboard-address-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gray-800);
    margin-bottom: 0.5rem;
}

.dashboard-address-text {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.dashboard-address-phone {
    font-size: 0.8125rem;
    color: var(--color-gray-500);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.dashboard-address-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-gray-200);
}

.dashboard-address-edit-btn,
.dashboard-address-delete-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.75rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-address-edit-btn {
    background: var(--color-gray-100);
    color: var(--color-gray-700);
}

.dashboard-address-edit-btn:hover {
    background: var(--color-gray-200);
}

.dashboard-address-delete-btn {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.dashboard-address-delete-btn:hover {
    background: #dc2626;
    color: var(--color-white);
}

/* Favorites Grid */
.dashboard-favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.dashboard-favorite-card {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.dashboard-favorite-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.dashboard-favorite-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--color-gray-100);
}

.dashboard-favorite-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-favorite-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: var(--color-white);
    color: var(--color-error);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.dashboard-favorite-remove:hover {
    background: var(--color-error);
    color: var(--color-white);
    transform: scale(1.1);
}

.dashboard-favorite-info {
    padding: 1rem;
}

.dashboard-favorite-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dashboard-favorite-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.dashboard-favorite-add-cart {
    width: 100%;
    padding: 0.75rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-favorite-add-cart:hover {
    background: var(--color-primary-dark);
}

/* Reviews List */
.dashboard-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-review-card {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.dashboard-review-card:hover {
    border-color: var(--color-gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.dashboard-review-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.dashboard-review-product-image {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--color-gray-100);
    flex-shrink: 0;
}

.dashboard-review-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-review-product-info {
    flex: 1;
}

.dashboard-review-product-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.dashboard-review-date {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.dashboard-review-stars {
    color: #fbbf24;
    font-size: 0.875rem;
}

.dashboard-review-stars i.empty {
    color: var(--color-gray-300);
}

.dashboard-review-text {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

.dashboard-review-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    margin-top: 0.75rem;
}

.dashboard-review-status.approved {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.dashboard-review-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

/* Notifications List */
.dashboard-notifications-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-notification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.dashboard-notification-item.unread {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.dashboard-notification-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.dashboard-notification-icon.order {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.dashboard-notification-icon.stock {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.dashboard-notification-icon.promo {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.dashboard-notification-icon.system {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.dashboard-notification-content {
    flex: 1;
}

.dashboard-notification-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 0.25rem;
}

.dashboard-notification-text {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    margin-bottom: 0.375rem;
}

.dashboard-notification-time {
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

/* Responsive - Tablet */
@media screen and (max-width: 992px) {
    .dashboard-modal-container {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        border-radius: 0;
    }

    .dashboard-modal {
        padding: 0;
    }

    .dashboard-sidebar {
        width: 240px;
    }

    .dashboard-form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Mobile */
@media screen and (max-width: 768px) {
    .dashboard-modal-body {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        max-height: none;
        border-right: none;
        border-bottom: 1px solid var(--color-gray-200);
    }

    .dashboard-user-info {
        padding: 1rem;
    }

    .dashboard-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .dashboard-menu {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0;
        gap: 0;
        -webkit-overflow-scrolling: touch;
    }

    .dashboard-menu-item {
        flex-direction: column;
        padding: 0.75rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        font-size: 0.75rem;
        gap: 0.375rem;
    }

    .dashboard-menu-item.active {
        border-bottom-color: var(--color-primary);
    }

    .dashboard-menu-item i {
        font-size: 1.25rem;
    }

    .dashboard-menu-badge {
        position: absolute;
        top: 0.25rem;
        right: 0.25rem;
        font-size: 0.625rem;
        padding: 0.125rem 0.375rem;
    }

    .dashboard-menu-footer {
        display: none;
    }

    .dashboard-content {
        flex: 1;
        min-height: 300px;
    }

    .dashboard-section-header {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .dashboard-section-body {
        padding: 1rem;
    }

    .dashboard-addresses-list {
        grid-template-columns: 1fr;
    }

    .dashboard-favorites-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .dashboard-fullscreen-btn {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .dashboard-favorites-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .dashboard-order-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .dashboard-order-detail-btn {
        justify-content: center;
    }
}

/* ================================
   Dashboard Improvements
   ================================ */

/* Navbar Profile Button */
.auth-btn-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white) !important;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.auth-btn-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(193, 39, 45, 0.3);
}

.auth-btn-profile i.fa-user-circle {
    font-size: 1.25rem;
}

.auth-profile-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.auth-profile-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.auth-profile-text .auth-user-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.auth-profile-arrow {
    font-size: 0.625rem;
    margin-left: 0.25rem;
    transition: transform 0.2s ease;
}

.auth-btn-profile:hover .auth-profile-arrow {
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
    .auth-btn-profile {
        padding: 0.5rem 0.75rem;
    }
    
    .auth-profile-text {
        display: none;
    }
    
    .auth-profile-arrow {
        display: none;
    }
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    font-size: 0.875rem;
    pointer-events: none;
    z-index: 1;
}

.input-with-icon input {
    padding-left: 2.75rem !important;
}

/* Select Wrapper with Arrow */
.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.5rem !important;
    cursor: pointer;
    background-color: var(--color-white);
}

.select-wrapper .select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray-400);
    font-size: 0.75rem;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.select-wrapper select:focus + .select-arrow {
    color: var(--color-primary);
    transform: translateY(-50%) rotate(180deg);
}

/* Required Field Indicator */
.dashboard-form-group label .required {
    color: var(--color-error);
    margin-left: 0.125rem;
}

/* Dashboard Form Wide */
.dashboard-form-wide {
    max-width: 800px;
}

/* Dashboard Checkbox Group */
.dashboard-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.dashboard-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.dashboard-checkbox-item:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
}

.dashboard-checkbox-item input[type="checkbox"] {
    display: none;
}

.dashboard-checkbox-item .checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--color-gray-300);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dashboard-checkbox-item .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--color-white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.dashboard-checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.dashboard-checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.dashboard-checkbox-item .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

.dashboard-checkbox-item .checkbox-label i {
    color: var(--color-gray-400);
    width: 1rem;
    text-align: center;
}

.dashboard-checkbox-item input[type="checkbox"]:checked ~ .checkbox-label {
    color: var(--color-gray-900);
    font-weight: 500;
}

.dashboard-checkbox-item input[type="checkbox"]:checked ~ .checkbox-label i {
    color: var(--color-primary);
}

/* Dashboard Back Button */
.dashboard-back-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-gray-600);
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
    margin-right: 0.75rem;
}

.dashboard-back-btn:hover {
    background: var(--color-gray-200);
    color: var(--color-gray-900);
}

.dashboard-section-header .dashboard-back-btn + h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Flatpickr Custom Styles */
.flatpickr-calendar {
    background: var(--color-white) !important;
    border: none !important;
    border-radius: 1rem !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    font-family: var(--font-family) !important;
    padding: 1rem !important;
    width: 320px !important;
}

.flatpickr-months {
    padding: 0.5rem 0 !important;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    height: 40px !important;
}

.flatpickr-current-month {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--color-gray-900) !important;
    padding: 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700 !important;
    background: transparent !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: var(--color-gray-600) !important;
    padding: 0.5rem !important;
    border-radius: 0.5rem !important;
    transition: all 0.2s ease !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    background: var(--color-gray-100) !important;
    fill: var(--color-primary) !important;
}

.flatpickr-weekdays {
    background: transparent !important;
    padding: 0.5rem 0 !important;
}

.flatpickr-weekday {
    color: var(--color-gray-500) !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
}

.flatpickr-days {
    width: 100% !important;
}

.dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
}

.flatpickr-day {
    max-width: none !important;
    width: 14.285% !important;
    height: 40px !important;
    line-height: 40px !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    color: var(--color-gray-700) !important;
    transition: all 0.2s ease !important;
    border: none !important;
}

.flatpickr-day:hover {
    background: var(--color-gray-100) !important;
    color: var(--color-gray-900) !important;
}

.flatpickr-day.today {
    border: 2px solid var(--color-primary) !important;
    background: transparent !important;
    color: var(--color-primary) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary) !important;
}

.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: var(--color-gray-300) !important;
}

.flatpickr-day.disabled {
    color: var(--color-gray-300) !important;
    cursor: not-allowed !important;
}

/* Dashboard Form Checkbox Original Fix */
.dashboard-form-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.dashboard-form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
}

/* Address Form Views */
#addressListView,
#addressFormView {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#addressFormView .dashboard-section-header {
    display: flex;
    align-items: center;
}

/* Cancel Button Style Update */
.dashboard-cancel-btn i {
    margin-right: 0.25rem;
}

/* Address Card Improvements */
.dashboard-address-card {
    position: relative;
}

.dashboard-address-type-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.dashboard-address-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    background: var(--color-gray-100);
    color: var(--color-gray-600);
    border-radius: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 500;
}

.dashboard-address-type-badge.shipping {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.dashboard-address-type-badge.billing {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

/* ================================
   Dashboard Fixes
   ================================ */

/* Profile Button Hover Fix */
.auth-btn-profile:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, #8a1a1e 100%);
    color: var(--color-white) !important;
    opacity: 1;
}

.auth-btn-profile:hover .auth-profile-label,
.auth-btn-profile:hover .auth-user-name,
.auth-btn-profile:hover .auth-profile-arrow {
    color: var(--color-white) !important;
    opacity: 1 !important;
}

/* Flatpickr Calendar Fixes */
.flatpickr-calendar {
    width: 340px !important;
}

.flatpickr-day {
    width: calc(100% / 7) !important;
    max-width: calc(100% / 7) !important;
    height: 42px !important;
    line-height: 42px !important;
}

.dayContainer {
    min-width: 100% !important;
    max-width: 100% !important;
}

/* Dashboard Form Select - All Selects Should Have Arrow */
.dashboard-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8.825L1.175 4 2.238 2.938 6 6.7l3.763-3.762L10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.5rem !important;
    cursor: pointer;
}

.dashboard-form select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c1272d' d='M6 3.175L10.825 8 9.762 9.062 6 5.3 2.237 9.062 1.175 8z'/%3E%3C/svg%3E");
}

/* Checkbox Group Fixes - Prevent Line Break */
.dashboard-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dashboard-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.dashboard-checkbox-item .checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    .dashboard-checkbox-item {
        padding: 0.625rem 0.75rem;
    }
    
    .dashboard-checkbox-item .checkbox-label {
        font-size: 0.8125rem;
    }
}

/* ================================
   Dashboard Questions Styles
   ================================ */
.dashboard-questions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-question-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
}

.dashboard-question-card.status-approved {
    border-left: 3px solid var(--color-success);
}

.dashboard-question-card.status-pending {
    border-left: 3px solid var(--color-warning);
}

.dashboard-question-card.status-rejected {
    border-left: 3px solid var(--color-error);
}

.dashboard-question-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-100);
}

.dashboard-question-product-image {
    width: 50px;
    height: 50px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.dashboard-question-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-question-product-info {
    flex: 1;
    min-width: 0;
}

.dashboard-question-product-name {
    display: block;
    font-weight: 600;
    color: var(--color-gray-800);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.dashboard-question-product-name:hover {
    color: var(--color-primary);
}

.dashboard-question-date {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.dashboard-question-status {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
}

.dashboard-question-status.approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.dashboard-question-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
}

.dashboard-question-status.rejected {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
}

.dashboard-question-content {
    padding: 1rem;
}

.dashboard-question-text {
    margin-bottom: 1rem;
}

.dashboard-question-text strong {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-500);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-question-text p {
    color: var(--color-gray-700);
    line-height: 1.5;
    margin: 0;
}

.dashboard-answer-text {
    background: var(--color-gray-50);
    border-radius: 0.5rem;
    padding: 1rem;
    border-left: 3px solid var(--color-primary);
}

.dashboard-answer-text strong {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dashboard-answer-text p {
    color: var(--color-gray-700);
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
}

.dashboard-answer-date {
    font-size: 0.6875rem;
    color: var(--color-gray-400);
}

.dashboard-answer-pending {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 0.5rem;
    color: var(--color-warning);
    font-size: 0.875rem;
}

.dashboard-answer-pending i {
    animation: pulse-warning 2s ease-in-out infinite;
}

@keyframes pulse-warning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Review Stars Empty State */
.dashboard-review-stars .fa-star.empty {
    color: var(--color-gray-300);
}

/* Review Card Status Improvements */
.dashboard-review-status.approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

.dashboard-review-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-warning);
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
}

/* ================================
   Dashboard Fixes V2
   ================================ */

/* Flatpickr Improved Styles */
.flatpickr-calendar {
    width: 320px !important;
    padding: 0.75rem !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    z-index: 100001 !important; /* Modal'ın üstünde görünsün */
}

/* Modal içinde flatpickr için özel ayar */
.dashboard-modal-container .flatpickr-calendar {
    position: absolute !important;
}

.flatpickr-months {
    padding-bottom: 0.5rem !important;
    border-bottom: 1px solid var(--color-gray-100) !important;
    margin-bottom: 0.5rem !important;
}

.flatpickr-current-month {
    padding: 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    padding: 0.25rem 0.5rem !important;
    border-radius: 0.375rem !important;
    transition: background 0.2s ease !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover,
.flatpickr-current-month input.cur-year:hover {
    background: var(--color-gray-100) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    border: 1px solid var(--color-gray-200) !important;
    appearance: auto !important;
    -webkit-appearance: menulist !important;
}

.flatpickr-current-month input.cur-year {
    border: 1px solid var(--color-gray-200) !important;
    width: 70px !important;
}

.flatpickr-weekdays {
    background: transparent !important;
    margin-top: 0.25rem !important;
}

.flatpickr-weekday {
    color: var(--color-gray-400) !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
}

.flatpickr-day {
    width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    line-height: 38px !important;
    margin: 2px !important;
    border-radius: 50% !important;
    font-size: 0.8125rem !important;
}

.dayContainer {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    justify-content: space-between !important;
}

/* Dashboard Empty Button Fix */
.dashboard-empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    margin-top: 1rem;
}

.dashboard-empty-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* Checkbox Layout Fix - Horizontal */
.dashboard-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dashboard-checkbox-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.875rem 1rem !important;
    background: var(--color-gray-50);
    border: 1px solid var(--color-gray-200);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-checkbox-item:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
}

.dashboard-checkbox-item input[type="checkbox"] {
    display: none !important;
}

.dashboard-checkbox-item .checkbox-custom {
    width: 1.25rem !important;
    height: 1.25rem !important;
    min-width: 1.25rem !important;
    border: 2px solid var(--color-gray-300);
    border-radius: 0.25rem;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease;
    order: 0 !important;
}

.dashboard-checkbox-item .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.625rem;
    color: var(--color-white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.15s ease;
}

.dashboard-checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.dashboard-checkbox-item input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.dashboard-checkbox-item .checkbox-label {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    font-size: 0.875rem !important;
    color: var(--color-gray-700);
    flex: 1 !important;
    order: 1 !important;
}

.dashboard-checkbox-item .checkbox-label i {
    color: var(--color-gray-400);
    width: 1.125rem;
    text-align: center;
    font-size: 0.875rem;
}

.dashboard-checkbox-item input[type="checkbox"]:checked ~ .checkbox-label {
    color: var(--color-gray-900);
    font-weight: 500;
}

.dashboard-checkbox-item input[type="checkbox"]:checked ~ .checkbox-label i {
    color: var(--color-primary);
}

/* Billing Section Title */
.dashboard-form-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid var(--color-gray-200);
}

.dashboard-form-section-title i {
    color: var(--color-primary);
}

/* Billing Fields Container */
.billing-fields-container {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(193, 39, 45, 0.03);
    border: 1px dashed var(--color-gray-300);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.billing-fields-container.active {
    display: flex;
}

.billing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--color-warning-light, #fef3c7);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-warning-dark, #92400e);
}

.billing-note i {
    margin-top: 0.125rem;
}

/* ================================
   Dashboard Button Size Fix
   ================================ */
.dashboard-empty-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.625rem 1.25rem !important;
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none !important;
    border-radius: 0.5rem !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-decoration: none !important;
    margin-top: 1rem !important;
    min-width: auto !important;
    width: auto !important;
    max-width: fit-content !important;
}

.dashboard-empty-btn:hover {
    background: var(--color-primary-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(193, 39, 45, 0.25) !important;
}

.dashboard-empty-btn i {
    font-size: 0.875rem !important;
}

/* Empty state container */
.dashboard-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    text-align: center;
}

.dashboard-empty i:first-child {
    font-size: 3rem;
    color: var(--color-gray-300);
    margin-bottom: 1rem;
}

.dashboard-empty p {
    color: var(--color-gray-500);
    font-size: 1rem;
    margin: 0;
}

/* ================================
   Bank Accounts Modal
   ================================ */
.bank-accounts-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.bank-accounts-modal.active {
    display: flex;
}

.bank-accounts-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.bank-accounts-modal-content {
    position: relative;
    background: var(--color-white);
    border-radius: 1rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease;
}

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

.bank-accounts-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: var(--color-white);
}

.bank-accounts-modal-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.bank-accounts-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--color-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.bank-accounts-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.bank-accounts-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
}

.bank-accounts-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-info-light, #e8f4fd);
    border-radius: 0.5rem;
    color: var(--color-info, #0d6efd);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.bank-accounts-info i {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.bank-accounts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bank-account-card {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.bank-account-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bank-account-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--color-gray-50);
    border-bottom: 1px solid var(--color-gray-200);
}

.bank-account-header i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.bank-account-header .bank-name {
    font-weight: 600;
    color: var(--color-gray-800);
    font-size: 1rem;
}

.bank-account-details {
    padding: 1rem;
}

.bank-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--color-gray-100);
}

.bank-detail-row:last-child {
    border-bottom: none;
}

.bank-detail-label {
    color: var(--color-gray-500);
    font-size: 0.8125rem;
}

.bank-detail-value {
    color: var(--color-gray-800);
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bank-detail-value.iban-value {
    font-family: 'Courier New', monospace;
    font-size: 0.8125rem;
    letter-spacing: 0.5px;
}

.copy-iban-btn {
    background: var(--color-gray-100);
    border: none;
    color: var(--color-gray-600);
    width: 28px;
    height: 28px;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

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

.copy-iban-btn.copied {
    background: var(--color-success);
    color: var(--color-white);
}

.bank-accounts-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    text-align: center;
    color: var(--color-gray-400);
}

.bank-accounts-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bank-accounts-empty p {
    margin: 0;
    font-size: 0.9375rem;
}

/* Bank Card */
.bank-account-card {
    border: 1px solid var(--color-gray-200);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.2s ease;
}

.bank-account-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.bank-account-card .bank-account-header {
    border-radius: 0;
}

.bank-account-card .bank-account-details {
    flex: 1;
}

@media (max-width: 576px) {
    .bank-accounts-modal-content {
        width: 95%;
        margin: 1rem;
    }

    .bank-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .bank-detail-value.iban-value {
        font-size: 0.75rem;
        word-break: break-all;
    }
}

/* ================================
   SEARCH PAGE STYLES
   ================================ */

/* Search Page - Uses same styles as category page */
/* Search page has no sidebar, so make it full width */
.search-page .category-page-content {
    grid-template-columns: 1fr;
}

/* Category Content Section (SEO) - Outside category-page-content grid */
.category-content-section {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

/* Product Variants */
.product-variants {
    margin: 1.5rem 0;
    padding: 1rem 0;
}

.variant-attribute-group {
    margin-bottom: 1rem;
}

.variant-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.95rem;
}

.variant-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.variant-value-btn {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    color: #333;
}

.variant-value-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.variant-value-btn.active {
    border-color: #3b82f6;
    background: #3b82f6;
    color: #fff;
}

.cart-item-variant {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.category-content-scroll {
    max-height: 250px;
    overflow-y: auto;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.category-content-scroll::-webkit-scrollbar {
    width: 8px;
}

.category-content-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.category-content-scroll::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 4px;
}

.category-content-scroll::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

.category-content-scroll p {
    margin: 0 0 1rem 0;
    color: #374151;
    line-height: 1.6;
    font-size: 0.9375rem;
}

.category-content-scroll p:last-child {
    margin-bottom: 0;
}

.category-content-scroll h1,
.category-content-scroll h2,
.category-content-scroll h3,
.category-content-scroll h4,
.category-content-scroll h5,
.category-content-scroll h6 {
    margin: 0 0 0.75rem 0;
    color: #1f2937;
    font-weight: 600;
}

.category-content-scroll ul,
.category-content-scroll ol {
    margin: 0 0 1rem 1.5rem;
    padding: 0;
    color: #374151;
}

.category-content-scroll a {
    color: #dc2626;
    text-decoration: underline;
}

.category-content-scroll a:hover {
    color: #b91c1c;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9fafb;
    border-radius: 1rem;
    margin: 2rem 0;
}

.no-results i {
    font-size: 4rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    display: block;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.no-results p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.no-results .btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #dc2626;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.no-results .btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* Search Page - Products Grid Centered when few results */
.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* When there are 1-3 products, center them */
.category-products-grid:has(.product-card:nth-child(3):last-child) {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.category-products-grid:has(.product-card:nth-child(2):last-child) {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.category-products-grid:has(.product-card:nth-child(1):last-child) {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Search Page */
@media screen and (max-width: 768px) {
    .no-results {
        padding: 3rem 1.5rem;
    }
    
    .no-results i {
        font-size: 3rem;
    }
    
    .no-results h3 {
        font-size: 1.25rem;
    }
    
    .category-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
}

/* ================================
   İletişim Sayfası Stilleri
   ================================ */
.contact-page {
    padding: 20px 0 60px;
}
.contact-page .page-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-page .page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}
.contact-page .page-header p {
    font-size: 16px;
    color: var(--color-gray-500);
}
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.info-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.info-icon i {
    font-size: 20px;
    color: white;
}
.info-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-500);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.info-card a, .info-card span {
    font-size: 15px;
    color: var(--color-gray-900);
    text-decoration: none;
}
.info-card a:hover {
    color: var(--color-primary);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}
.contact-form-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid var(--color-gray-200);
}
.contact-form-wrapper h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-gray-900);
}
.contact-form-wrapper > p {
    color: var(--color-gray-500);
    margin-bottom: 25px;
    font-size: 15px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 576px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-form .form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-gray-900);
}
.contact-form .form-group label .required {
    color: var(--color-error);
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--color-gray-200);
    border-radius: 8px;
    background: var(--bg-body);
    color: var(--color-gray-900);
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(193, 39, 45, 0.1);
}
.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .char-counter {
    font-size: 12px;
    color: var(--color-gray-500);
    text-align: right;
}
.contact-form .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form .submit-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}
.contact-page .alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}
.contact-page .alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.contact-page .alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--color-error);
    border: 1px solid rgba(239, 68, 68, 0.2);
    flex-direction: column;
    align-items: flex-start;
}
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.sidebar-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid var(--color-gray-200);
}
.sidebar-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}
.sidebar-card > p {
    font-size: 14px;
    color: var(--color-gray-500);
    margin-bottom: 15px;
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: transform 0.3s;
}
.social-btn:hover {
    transform: translateX(5px);
}
.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}
.social-btn.twitter {
    background: #1DA1F2;
    color: white;
}
.social-btn.youtube {
    background: #FF0000;
    color: white;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--color-gray-200);
}
.faq-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.faq-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 5px;
}
.faq-item p {
    font-size: 13px;
    color: var(--color-gray-500);
    line-height: 1.5;
}

/* ================================
   Hakkımızda Sayfası Stilleri
   ================================ */
.about-page {
    padding: 20px 0 60px;
}
.about-hero {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}
.about-hero-content {
    position: relative;
    z-index: 1;
}
.about-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.about-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}
.about-content {
    max-width: 900px;
    margin: 0 auto;
}
.about-section {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid var(--color-gray-200);
}
.about-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.about-icon i {
    font-size: 24px;
    color: white;
}
.about-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-gray-900);
}
.about-section p {
    color: var(--color-gray-600);
    line-height: 1.8;
    font-size: 16px;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}
.feature-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--color-gray-200);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.feature-icon i {
    font-size: 20px;
    color: white;
}
.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-gray-900);
}
.feature-card p {
    font-size: 14px;
    color: var(--color-gray-500);
}
.why-us h2 {
    text-align: center;
    margin-bottom: 25px;
}
.why-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-body);
    border-radius: 8px;
}
.why-list li i {
    color: var(--color-success);
    font-size: 16px;
}
.why-list li span {
    color: var(--color-gray-600);
    font-size: 15px;
}
.about-cta {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-body));
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border: 1px solid var(--color-gray-200);
}
.about-cta h2 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}
.about-cta p {
    color: var(--color-gray-500);
    margin-bottom: 25px;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.about-page .btn-primary,
.about-page .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
}
.about-page .btn-primary {
    background: var(--color-primary);
    color: white;
}
.about-page .btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}
.about-page .btn-secondary {
    background: var(--bg-white);
    color: var(--color-gray-900);
    border: 1px solid var(--color-gray-200);
}
.about-page .btn-secondary:hover {
    background: var(--bg-body);
    border-color: var(--color-primary);
}
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 20px;
    }
    .about-title {
        font-size: 32px;
    }
    .about-section {
        padding: 20px;
    }
    .about-cta {
        padding: 30px 20px;
    }
}

/* ================================
   Tüm Ürünler Sayfası Stilleri
   ================================ */
.sub-categories-nested {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}
.sub-categories-nested li a {
    font-size: 13px;
    opacity: 0.85;
}
.category-parent > a {
    font-weight: 500;
}
.brands-list {
    max-height: 250px;
    overflow-y: auto;
}
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-inputs input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--color-gray-200);
    border-radius: 6px;
    background: var(--bg-white);
    color: var(--color-gray-900);
    font-size: 14px;
}
.price-filter-btn {
    padding: 10px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}
.price-filter-btn:hover {
    background: var(--color-primary-dark);
}
.stock-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.stock-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary);
}
.clear-filters-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-error);
    font-size: 14px;
    text-decoration: none;
    padding: 10px;
    border-radius: 6px;
    background: rgba(239, 68, 68, 0.1);
    transition: all 0.3s;
}
.clear-filters-btn:hover {
    background: rgba(239, 68, 68, 0.2);
}
.no-products {
    text-align: center;
    padding: 60px 20px;
}
.no-products i {
    font-size: 64px;
    color: var(--color-gray-400);
    margin-bottom: 20px;
}
.no-products h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--color-gray-900);
}
.no-products p {
    color: var(--color-gray-500);
    margin-bottom: 20px;
}
.no-products .btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}
