/* 
 * Slyvia Studio - 3D Baskı Dekor E-Ticaret
 * Modern, Minimalist, Sıcak Tonlu Tasarım
 */

:root {
    /* Colors - Warm Theme */
    --primary: #C9A86C;
    --primary-dark: #B8956A;
    --primary-light: #E5D4B3;
    --secondary: #8B7355;
    --accent: #D4AF37;
    
    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FDF8F3;
    --beige: #F5EDE4;
    --beige-dark: #E8DDD0;
    --gray-100: #F7F7F7;
    --gray-200: #EEEEEE;
    --gray-300: #DDDDDD;
    --gray-400: #BBBBBB;
    --gray-500: #888888;
    --gray-600: #666666;
    --gray-700: #444444;
    --gray-800: #333333;
    --gray-900: #222222;
    --black: #111111;
    
    /* Status */
    --success: #4CAF50;
    --warning: #FF9800;
    --error: #F44336;
    --info: #2196F3;
    
    /* Typography - Modular Scale (1.25 ratio) */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px - eklendi */
    
    /* Spacing - 8px Grid System */
    --spacing-xs: 0.25rem;  /* 4px */
    --spacing-sm: 0.5rem;   /* 8px */
    --spacing-md: 1rem;     /* 16px */
    --spacing-lg: 1.5rem;   /* 24px */
    --spacing-xl: 2rem;     /* 32px */
    --spacing-2xl: 2.5rem;  /* 40px - düzeltildi */
    --spacing-3xl: 3rem;    /* 48px - düzeltildi */
    --spacing-4xl: 4rem;    /* 64px - eklendi */
    
    /* Borders - Daha yumuşak köşeler */
    --border-radius-sm: 8px;
    --border-radius: 16px;
    --border-radius-lg: 20px;
    --border-radius-xl: 28px;
    --border-radius-full: 9999px;
    
    /* Shadows - Daha yumuşak gölgeler */
    --shadow-sm: 0 2px 8px rgba(201, 168, 108, 0.08);
    --shadow: 0 4px 15px rgba(201, 168, 108, 0.12);
    --shadow-md: 0 8px 25px rgba(201, 168, 108, 0.15);
    --shadow-lg: 0 12px 40px rgba(201, 168, 108, 0.18);
    --shadow-xl: 0 20px 60px rgba(201, 168, 108, 0.22);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Layout */
    --container-max: 1280px;
    --header-height: 140px;
    
    /* Aspect Ratios */
    --ratio-square: 1;
    --ratio-landscape: 4/3;
    --ratio-portrait: 3/4;
    --ratio-product: 4/5;
    --ratio-hero: 16/9;
}

/* Dark Mode Variables - Elegant Warm Dark Theme */
.dark-mode,
html.dark-mode {
    /* Footer tarzı sıcak koyu tonlar */
    --white: #2C2C2C;
    --cream: #1E1E1E;
    --beige: #262626;
    --beige-dark: #2E2E2E;
    --gray-100: #333333;
    --gray-200: #3D3D3D;
    --gray-300: #4A4A4A;
    --gray-400: #6B6B6B;
    --gray-500: #8C8C8C;
    --gray-600: #A8A8A8;
    --gray-700: #C4C4C4;
    --gray-800: #E0E0E0;
    --gray-900: #F0F0F0;
    --black: #FFFFFF;
    
    /* Altın sarısı vurgu rengi */
    --primary: #C9A86C;
    --primary-light: #D4B87A;
    --primary-dark: #B8956A;
    
    /* Yumuşak gölgeler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.35);
    
    /* Genel metin renkleri - tüm elementler için */
    color: #E0E0E0;
}

/* Dark Mode - Genel Metin Renkleri (Zorunlu Override) */
.dark-mode body {
    color: #E0E0E0 !important;
}

.dark-mode * {
    border-color: #3D3D3D;
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, 
.dark-mode h4, .dark-mode h5, .dark-mode h6 {
    color: #F0F0F0 !important;
}

.dark-mode p {
    color: #C4C4C4 !important;
}

.dark-mode span:not(.badge):not(.price):not(.nav-badge) {
    color: inherit;
}

.dark-mode a:not(.btn):not(.nav-menu a):not(.mobile-nav-item) {
    color: #C4C4C4;
}

.dark-mode a:not(.btn):hover {
    color: var(--primary);
}

.dark-mode strong, .dark-mode b {
    color: #E0E0E0 !important;
}

.dark-mode small {
    color: #8C8C8C !important;
}

.dark-mode .text-muted {
    color: #6B6B6B !important;
}

.dark-mode li {
    color: #C4C4C4 !important;
}

.dark-mode label {
    color: #C4C4C4 !important;
}

.dark-mode th, .dark-mode td {
    color: #C4C4C4 !important;
}

.dark-mode dt {
    color: #E0E0E0 !important;
}

.dark-mode dd {
    color: #A8A8A8 !important;
}

.dark-mode figcaption {
    color: #8C8C8C !important;
}

.dark-mode blockquote {
    color: #C4C4C4 !important;
    border-left-color: var(--primary) !important;
}

.dark-mode code {
    background: #333333 !important;
    color: #E0E0E0 !important;
}

.dark-mode pre {
    background: #262626 !important;
    color: #E0E0E0 !important;
    border: 1px solid #3D3D3D !important;
}

/* Dark Mode - Icon Colors */
.dark-mode i:not(.fas):not(.far):not(.fab) {
    color: inherit;
}

.dark-mode .fa-star {
    color: #4A4A4A;
}

.dark-mode .fa-star.active,
.dark-mode .fa-star.filled {
    color: var(--primary) !important;
}

/* Dark Mode - Smooth Transition */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Dark Mode - Specific Element Overrides */
.dark-mode .header {
    background: #1E1E1E !important;
    border-bottom: 1px solid #333333 !important;
}

.dark-mode .top-bar {
    background: #171717 !important;
    color: #E0E0E0 !important;
}

.dark-mode .main-nav {
    background: #1E1E1E !important;
    border-top: 1px solid #333333;
}

.dark-mode .nav-menu a {
    color: #C4C4C4 !important;
}

.dark-mode .nav-menu a:hover {
    color: var(--primary) !important;
}

.dark-mode .dropdown-menu {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .dropdown-menu a {
    color: #A8A8A8 !important;
}

.dark-mode .dropdown-menu a:hover {
    background: #333333 !important;
    color: var(--primary) !important;
}

.dark-mode .header-search input {
    background: #262626 !important;
    border-color: #3D3D3D !important;
    color: #E0E0E0 !important;
}

.dark-mode .header-search button {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .header-action {
    color: #C4C4C4 !important;
}

.dark-mode .header-action:hover {
    color: var(--primary) !important;
}

/* Dark Mode - Product Cards - Elegant Warm */
.dark-mode .product-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dark-mode .product-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.dark-mode .product-card .product-image {
    background: #1E1E1E;
}

.dark-mode .product-card .product-info {
    background: #262626;
}

.dark-mode .product-card .product-title,
.dark-mode .product-card h3 {
    color: #F0F0F0 !important;
}

.dark-mode .product-card .product-category {
    color: #8C8C8C;
}

.dark-mode .product-card .product-price,
.dark-mode .product-card .price-current {
    color: var(--primary) !important;
}

.dark-mode .product-card .price-old {
    color: #6B6B6B;
}

.dark-mode .product-card .product-rating {
    color: var(--primary);
}

.dark-mode .product-card .btn {
    background: var(--primary);
    color: #1E1E1E;
}

.dark-mode .product-card .product-badge {
    background: var(--primary);
    color: #1E1E1E;
}

.dark-mode .product-card .wishlist-btn,
.dark-mode .product-card .product-action {
    background: #333333;
    color: #E0E0E0;
}

.dark-mode .product-card .wishlist-btn:hover,
.dark-mode .product-card .product-action:hover {
    background: var(--primary);
    color: #1E1E1E;
}

.dark-mode .btn-outline {
    border-color: var(--gray-400);
    color: var(--gray-700);
}

.dark-mode .btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.dark-mode input,
.dark-mode textarea,
.dark-mode select {
    background: var(--beige);
    border-color: var(--gray-300);
    color: var(--gray-800);
}

.dark-mode input:focus,
.dark-mode textarea:focus,
.dark-mode select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.2);
}

.dark-mode input::placeholder,
.dark-mode textarea::placeholder {
    color: var(--gray-500);
}

.dark-mode .footer {
    background: #1E1E1E !important;
    border-top: 1px solid #333333 !important;
}

.dark-mode .footer h4 {
    color: #F0F0F0 !important;
}

.dark-mode .footer p,
.dark-mode .footer a,
.dark-mode .footer li {
    color: #A8A8A8 !important;
}

.dark-mode .footer a:hover {
    color: var(--primary) !important;
}

.dark-mode .footer-bottom {
    background: #171717 !important;
    border-top: 1px solid #2E2E2E !important;
}

.dark-mode .footer-bottom p {
    color: #8C8C8C !important;
}

.dark-mode .mini-cart {
    background: #1E1E1E !important;
    border-left: 1px solid #333333 !important;
}

.dark-mode .mini-cart-header {
    background: #262626 !important;
    border-bottom: 1px solid #3D3D3D !important;
    color: #F0F0F0 !important;
}

.dark-mode .mini-cart-items {
    background: #1E1E1E !important;
}

.dark-mode .mini-cart-item {
    border-bottom: 1px solid #333333 !important;
}

.dark-mode .mini-cart-footer {
    background: #262626 !important;
    border-top: 1px solid #3D3D3D !important;
}

.dark-mode .flash-message {
    background: #262626 !important;
    border: 1px solid #4A4A4A !important;
    color: #E0E0E0 !important;
}

.dark-mode .cookie-consent {
    background: #1E1E1E !important;
    border-top: 1px solid #333333 !important;
}

.dark-mode .cookie-consent p {
    color: #C4C4C4 !important;
}

/* Dark Mode - Product Detail Page */
.dark-mode .product-detail {
    background: transparent;
}

.dark-mode .product-detail-info h1 {
    color: #F0F0F0 !important;
}

.dark-mode .product-detail-info .product-rating {
    color: var(--primary);
}

.dark-mode .product-detail-info .rating-text {
    color: #8C8C8C !important;
}

.dark-mode .product-detail-price .price-current {
    color: var(--primary) !important;
}

.dark-mode .product-detail-price .price-old {
    color: #6B6B6B !important;
}

.dark-mode .product-stock {
    color: #6ABF6A !important;
}

.dark-mode .product-stock.out-of-stock {
    color: #E05050 !important;
}

.dark-mode .quantity-input {
    background: #262626 !important;
    border: 1px solid #4A4A4A !important;
}

.dark-mode .quantity-input input {
    background: transparent !important;
    color: #E0E0E0 !important;
    border: none !important;
}

.dark-mode .quantity-input button {
    background: #333333 !important;
    color: #C4C4C4 !important;
    border: none !important;
}

.dark-mode .quantity-input button:hover {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .product-detail-actions .btn-outline {
    background: #262626 !important;
    border-color: #4A4A4A !important;
    color: #C4C4C4 !important;
}

.dark-mode .product-detail-actions .btn-outline:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .product-meta {
    color: #A8A8A8 !important;
}

.dark-mode .product-meta strong {
    color: #C4C4C4 !important;
}

.dark-mode .product-meta a {
    color: var(--primary) !important;
}

/* Dark Mode - Product Tabs */
.dark-mode .product-tabs {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .tab-btn {
    background: #1E1E1E !important;
    color: #8C8C8C !important;
    border: none !important;
}

.dark-mode .tab-btn:hover {
    color: #C4C4C4 !important;
}

.dark-mode .tab-btn.active {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .tab-content {
    background: #262626 !important;
    color: #C4C4C4 !important;
}

.dark-mode .tab-content h3,
.dark-mode .tab-content h4 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Product Gallery */
.dark-mode .product-gallery-main {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .product-gallery-thumb {
    background: #262626 !important;
    border: 2px solid #3D3D3D !important;
}

.dark-mode .product-gallery-thumb.active,
.dark-mode .product-gallery-thumb:hover {
    border-color: var(--primary) !important;
}

/* Dark Mode - Breadcrumb */
.dark-mode .breadcrumb {
    background: transparent !important;
}

.dark-mode .breadcrumb a {
    color: #8C8C8C !important;
}

.dark-mode .breadcrumb a:hover {
    color: var(--primary) !important;
}

.dark-mode .breadcrumb span {
    color: #C4C4C4 !important;
}

.dark-mode .breadcrumb i {
    color: #6B6B6B !important;
}

/* Dark Mode - Modal */
.dark-mode .modal-content {
    background: #1E1E1E !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .modal-header {
    background: #262626 !important;
    border-bottom: 1px solid #3D3D3D !important;
    color: #F0F0F0 !important;
}

.dark-mode .modal-body {
    color: #C4C4C4 !important;
}

/* Dark Mode - Cards & Sections */
.dark-mode .card,
.dark-mode .account-card,
.dark-mode .checkout-section {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .card h3,
.dark-mode .card h4,
.dark-mode .account-card h3,
.dark-mode .checkout-section h3 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Tables */
.dark-mode .table {
    background: #262626 !important;
}

.dark-mode .table th {
    background: #1E1E1E !important;
    color: #C4C4C4 !important;
    border-color: #3D3D3D !important;
}

.dark-mode .table td {
    background: #262626 !important;
    color: #C4C4C4 !important;
    border-color: #3D3D3D !important;
}

.dark-mode .table tr:hover td {
    background: #2E2E2E !important;
}

/* Dark Mode - Pagination */
.dark-mode .pagination a,
.dark-mode .pagination span {
    background: #262626 !important;
    border-color: #4A4A4A !important;
    color: #C4C4C4 !important;
}

.dark-mode .pagination a:hover {
    background: #333333 !important;
    color: #F0F0F0 !important;
}

.dark-mode .pagination .active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #1E1E1E !important;
}

/* ============================================
   DARK MODE - KAPSAMLI TÜM ELEMENTLER
   ============================================ */

/* Dark Mode - Forms & Inputs */
.dark-mode form {
    background: transparent;
}

.dark-mode label {
    color: #C4C4C4 !important;
}

.dark-mode .form-group label {
    color: #C4C4C4 !important;
}

.dark-mode .form-control,
.dark-mode input[type="text"],
.dark-mode input[type="email"],
.dark-mode input[type="password"],
.dark-mode input[type="number"],
.dark-mode input[type="tel"],
.dark-mode input[type="search"],
.dark-mode input[type="url"],
.dark-mode textarea,
.dark-mode select {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #E0E0E0 !important;
}

.dark-mode .form-control:focus,
.dark-mode input:focus,
.dark-mode textarea:focus,
.dark-mode select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15) !important;
}

.dark-mode .form-control::placeholder,
.dark-mode input::placeholder,
.dark-mode textarea::placeholder {
    color: #6B6B6B !important;
}

.dark-mode .checkbox-label,
.dark-mode .radio-label {
    color: #C4C4C4 !important;
}

/* Dark Mode - Buttons */
.dark-mode .btn {
    transition: all 0.3s ease;
}

.dark-mode .btn-secondary {
    background: #333333 !important;
    color: #E0E0E0 !important;
    border: 1px solid #4A4A4A !important;
}

.dark-mode .btn-secondary:hover {
    background: #4A4A4A !important;
    color: #F0F0F0 !important;
}

.dark-mode .btn-outline {
    background: transparent !important;
    border: 1px solid #4A4A4A !important;
    color: #C4C4C4 !important;
}

.dark-mode .btn-outline:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .btn-link {
    color: var(--primary) !important;
}

.dark-mode .btn-link:hover {
    color: var(--primary-light) !important;
}

/* Dark Mode - Alerts & Messages */
.dark-mode .alert {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #C4C4C4 !important;
}

.dark-mode .alert-success {
    background: rgba(106, 191, 106, 0.15) !important;
    border-color: #6ABF6A !important;
    color: #6ABF6A !important;
}

.dark-mode .alert-error,
.dark-mode .alert-danger {
    background: rgba(224, 80, 80, 0.15) !important;
    border-color: #E05050 !important;
    color: #E05050 !important;
}

.dark-mode .alert-warning {
    background: rgba(201, 168, 108, 0.15) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.dark-mode .alert-info {
    background: rgba(100, 150, 200, 0.15) !important;
    border-color: #6496C8 !important;
    color: #6496C8 !important;
}

/* Dark Mode - Links */
.dark-mode a {
    color: #C4C4C4;
}

.dark-mode a:hover {
    color: var(--primary);
}

/* Dark Mode - Headings */
.dark-mode h1, .dark-mode h2, .dark-mode h3, 
.dark-mode h4, .dark-mode h5, .dark-mode h6 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Paragraphs & Text */
.dark-mode p {
    color: #A8A8A8;
}

.dark-mode .text-muted {
    color: #6B6B6B !important;
}

.dark-mode .text-primary {
    color: var(--primary) !important;
}

.dark-mode strong, .dark-mode b {
    color: #E0E0E0;
}

/* Dark Mode - Lists */
.dark-mode ul, .dark-mode ol {
    color: #C4C4C4;
}

.dark-mode li {
    color: #C4C4C4;
}

/* Dark Mode - Dividers & Lines */
.dark-mode hr {
    border-color: #3D3D3D !important;
}

.dark-mode .divider {
    background: #3D3D3D !important;
}

/* Dark Mode - Badges */
.dark-mode .badge {
    background: #333333 !important;
    color: #E0E0E0 !important;
}

.dark-mode .badge-primary {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .badge-success {
    background: #6ABF6A !important;
    color: #1E1E1E !important;
}

.dark-mode .badge-danger {
    background: #E05050 !important;
    color: #FFFFFF !important;
}

/* Dark Mode - Tooltips */
.dark-mode .tooltip {
    background: #333333 !important;
    color: #E0E0E0 !important;
    border: 1px solid #4A4A4A !important;
}

/* Dark Mode - Dropdowns */
.dark-mode .dropdown {
    background: #262626 !important;
}

.dark-mode .dropdown-item {
    color: #C4C4C4 !important;
}

.dark-mode .dropdown-item:hover {
    background: #333333 !important;
    color: var(--primary) !important;
}

/* Dark Mode - Accordions */
.dark-mode .accordion {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .accordion-header {
    background: #262626 !important;
    color: #F0F0F0 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .accordion-header:hover {
    background: #2E2E2E !important;
}

.dark-mode .accordion-body {
    background: #262626 !important;
    color: #C4C4C4 !important;
}

/* Dark Mode - Progress Bars */
.dark-mode .progress {
    background: #333333 !important;
}

.dark-mode .progress-bar {
    background: var(--primary) !important;
}

/* Dark Mode - Rating Stars */
.dark-mode .rating .star {
    color: #4A4A4A;
}

.dark-mode .rating .star.filled,
.dark-mode .rating .star.active {
    color: var(--primary);
}

/* Dark Mode - Price Display */
.dark-mode .price {
    color: var(--primary) !important;
}

.dark-mode .price-old,
.dark-mode .original-price {
    color: #6B6B6B !important;
}

.dark-mode .price-discount,
.dark-mode .discount-badge {
    background: #E05050 !important;
    color: #FFFFFF !important;
}

/* Dark Mode - Stock Status */
.dark-mode .in-stock {
    color: #6ABF6A !important;
}

.dark-mode .out-of-stock {
    color: #E05050 !important;
}

.dark-mode .low-stock {
    color: var(--primary) !important;
}

/* Dark Mode - Sidebar & Filters */
.dark-mode .sidebar,
.dark-mode .filter-sidebar {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .sidebar h3,
.dark-mode .sidebar h4,
.dark-mode .filter-title {
    color: #F0F0F0 !important;
}

.dark-mode .filter-group {
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .filter-option {
    color: #C4C4C4 !important;
}

.dark-mode .filter-option:hover {
    color: var(--primary) !important;
}

/* Dark Mode - Range Slider */
.dark-mode input[type="range"] {
    background: #333333 !important;
}

.dark-mode input[type="range"]::-webkit-slider-thumb {
    background: var(--primary) !important;
}

/* Dark Mode - Checkboxes & Radios Custom */
.dark-mode input[type="checkbox"],
.dark-mode input[type="radio"] {
    accent-color: var(--primary);
}

/* Dark Mode - Search Results */
.dark-mode .search-results {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .search-result-item {
    border-bottom: 1px solid #333333 !important;
}

.dark-mode .search-result-item:hover {
    background: #2E2E2E !important;
}

/* Dark Mode - Autocomplete */
.dark-mode .autocomplete-suggestions {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .autocomplete-suggestion {
    color: #C4C4C4 !important;
}

.dark-mode .autocomplete-suggestion:hover,
.dark-mode .autocomplete-suggestion.selected {
    background: #333333 !important;
    color: var(--primary) !important;
}

/* Dark Mode - Empty States */
.dark-mode .empty-state {
    color: #8C8C8C !important;
}

.dark-mode .empty-state i {
    color: #4A4A4A !important;
}

/* Dark Mode - Loading States */
.dark-mode .loading,
.dark-mode .spinner {
    border-color: #333333 !important;
    border-top-color: var(--primary) !important;
}

.dark-mode .skeleton {
    background: linear-gradient(90deg, #262626 25%, #333333 50%, #262626 75%) !important;
}

/* Dark Mode - Overlay */
.dark-mode .overlay,
.dark-mode .modal-overlay {
    background: rgba(0, 0, 0, 0.7) !important;
}

/* Dark Mode - Cart Page */
.dark-mode .cart-table {
    background: #262626 !important;
}

.dark-mode .cart-item {
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .cart-item-title {
    color: #F0F0F0 !important;
}

.dark-mode .cart-item-price {
    color: var(--primary) !important;
}

.dark-mode .cart-summary {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .cart-total {
    color: #F0F0F0 !important;
}

/* Dark Mode - Checkout Page */
.dark-mode .checkout-step {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .checkout-step-header {
    background: #1E1E1E !important;
    color: #F0F0F0 !important;
}

.dark-mode .checkout-step.active {
    border-color: var(--primary) !important;
}

.dark-mode .payment-method {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .payment-method:hover,
.dark-mode .payment-method.selected {
    border-color: var(--primary) !important;
}

.dark-mode .order-summary {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

/* Dark Mode - Account Pages */
.dark-mode .account-sidebar {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .account-menu a {
    color: #C4C4C4 !important;
    border-bottom: 1px solid #333333 !important;
}

.dark-mode .account-menu a:hover,
.dark-mode .account-menu a.active {
    background: #333333 !important;
    color: var(--primary) !important;
}

.dark-mode .order-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .order-status {
    background: #333333 !important;
    color: #C4C4C4 !important;
}

.dark-mode .order-status.completed {
    background: rgba(106, 191, 106, 0.2) !important;
    color: #6ABF6A !important;
}

.dark-mode .order-status.pending {
    background: rgba(201, 168, 108, 0.2) !important;
    color: var(--primary) !important;
}

.dark-mode .order-status.cancelled {
    background: rgba(224, 80, 80, 0.2) !important;
    color: #E05050 !important;
}

/* Dark Mode - Address Cards */
.dark-mode .address-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .address-card.selected {
    border-color: var(--primary) !important;
}

.dark-mode .address-card h4 {
    color: #F0F0F0 !important;
}

.dark-mode .address-card p {
    color: #A8A8A8 !important;
}

/* Dark Mode - Wishlist / Favorites */
.dark-mode .wishlist-item {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

/* Dark Mode - Blog */
.dark-mode .blog-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .blog-card-title {
    color: #F0F0F0 !important;
}

.dark-mode .blog-card-excerpt {
    color: #A8A8A8 !important;
}

.dark-mode .blog-card-meta {
    color: #6B6B6B !important;
}

.dark-mode .blog-content {
    color: #C4C4C4 !important;
}

.dark-mode .blog-content h2,
.dark-mode .blog-content h3 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Comments */
.dark-mode .comment {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .comment-author {
    color: #F0F0F0 !important;
}

.dark-mode .comment-date {
    color: #6B6B6B !important;
}

.dark-mode .comment-content {
    color: #C4C4C4 !important;
}

/* Dark Mode - Reviews */
.dark-mode .review {
    background: #262626 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .review-author {
    color: #F0F0F0 !important;
}

.dark-mode .review-date {
    color: #6B6B6B !important;
}

.dark-mode .review-content {
    color: #C4C4C4 !important;
}

/* Dark Mode - FAQ / SSS */
.dark-mode .faq-item {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .faq-question {
    color: #F0F0F0 !important;
}

.dark-mode .faq-answer {
    color: #C4C4C4 !important;
}

/* Dark Mode - Contact Page */
.dark-mode .contact-info {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .contact-info h3 {
    color: #F0F0F0 !important;
}

.dark-mode .contact-info p {
    color: #A8A8A8 !important;
}

.dark-mode .contact-info i {
    color: var(--primary) !important;
}

.dark-mode .contact-form {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

/* Dark Mode - Map */
.dark-mode .map-container {
    border: 1px solid #3D3D3D !important;
}

/* Dark Mode - Social Icons */
.dark-mode .social-icon {
    background: #333333 !important;
    color: #C4C4C4 !important;
}

.dark-mode .social-icon:hover {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Share Buttons */
.dark-mode .share-btn {
    background: #333333 !important;
    color: #C4C4C4 !important;
}

.dark-mode .share-btn:hover {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Notifications */
.dark-mode .notification {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #C4C4C4 !important;
}

/* Dark Mode - Toast Messages */
.dark-mode .toast {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #E0E0E0 !important;
}

.dark-mode .toast-success {
    border-left: 4px solid #6ABF6A !important;
}

.dark-mode .toast-error {
    border-left: 4px solid #E05050 !important;
}

/* Dark Mode - Popups */
.dark-mode .popup {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .popup-header {
    background: #1E1E1E !important;
    color: #F0F0F0 !important;
}

.dark-mode .popup-body {
    color: #C4C4C4 !important;
}

/* Dark Mode - Lightbox */
.dark-mode .lightbox {
    background: rgba(0, 0, 0, 0.95) !important;
}

/* Dark Mode - Swiper/Slider */
.dark-mode .swiper-button-next,
.dark-mode .swiper-button-prev {
    background: #333333 !important;
    color: #E0E0E0 !important;
}

.dark-mode .swiper-button-next:hover,
.dark-mode .swiper-button-prev:hover {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .swiper-pagination-bullet {
    background: #4A4A4A !important;
}

.dark-mode .swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* Dark Mode - Quantity Selector */
.dark-mode .qty-selector {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .qty-btn {
    background: #333333 !important;
    color: #C4C4C4 !important;
}

.dark-mode .qty-btn:hover {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .qty-input {
    background: transparent !important;
    color: #E0E0E0 !important;
}

/* Dark Mode - Variation Selectors */
.dark-mode .variation-option {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #C4C4C4 !important;
}

.dark-mode .variation-option:hover {
    border-color: var(--primary) !important;
}

.dark-mode .variation-option.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Color Swatches */
.dark-mode .color-swatch {
    border: 2px solid #3D3D3D !important;
}

.dark-mode .color-swatch.selected {
    border-color: var(--primary) !important;
}

/* Dark Mode - Size Selector */
.dark-mode .size-option {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #C4C4C4 !important;
}

.dark-mode .size-option:hover {
    border-color: var(--primary) !important;
}

.dark-mode .size-option.selected {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Coupon Input */
.dark-mode .coupon-input {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .coupon-input input {
    background: transparent !important;
    color: #E0E0E0 !important;
}

/* Dark Mode - Support Widget */
.dark-mode .support-widget {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .support-widget-btn {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Chat Widget */
.dark-mode .chat-widget {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .chat-header {
    background: #1E1E1E !important;
    color: #F0F0F0 !important;
}

.dark-mode .chat-message {
    background: #333333 !important;
    color: #C4C4C4 !important;
}

.dark-mode .chat-message.sent {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Scroll Progress */
.dark-mode .scroll-progress {
    background: #333333 !important;
}

.dark-mode .scroll-progress-bar {
    background: var(--primary) !important;
}

/* Dark Mode - Back to Top */
.dark-mode .back-to-top {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

.dark-mode .back-to-top:hover {
    background: var(--primary-light) !important;
}

/* Dark Mode - Mobile Bottom Nav */
.dark-mode .mobile-bottom-nav {
    background: #1E1E1E !important;
    border-top: 1px solid #333333 !important;
}

.dark-mode .mobile-bottom-nav a,
.dark-mode .mobile-bottom-nav button {
    color: #8C8C8C !important;
}

.dark-mode .mobile-bottom-nav a.active,
.dark-mode .mobile-bottom-nav a:hover,
.dark-mode .mobile-bottom-nav button:hover {
    color: var(--primary) !important;
}

/* Dark Mode - Mobile Menu */
.dark-mode .mobile-menu {
    background: #1E1E1E !important;
}

.dark-mode .mobile-menu a {
    color: #C4C4C4 !important;
    border-bottom: 1px solid #333333 !important;
}

.dark-mode .mobile-menu a:hover {
    background: #262626 !important;
    color: var(--primary) !important;
}

/* Dark Mode - Category Cards */
.dark-mode .category-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .category-card:hover {
    border-color: var(--primary) !important;
}

.dark-mode .category-card h3,
.dark-mode .category-card-title {
    color: #F0F0F0 !important;
}

/* Dark Mode - Feature Cards */
.dark-mode .feature-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .feature-card h4,
.dark-mode .feature-title {
    color: #F0F0F0 !important;
}

.dark-mode .feature-card p {
    color: #A8A8A8 !important;
}

.dark-mode .feature-icon {
    background: #333333 !important;
    color: var(--primary) !important;
}

/* Dark Mode - Testimonials */
.dark-mode .testimonial-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .testimonial-content {
    color: #C4C4C4 !important;
}

.dark-mode .testimonial-author {
    color: #F0F0F0 !important;
}

/* Dark Mode - Page Header */
.dark-mode .page-header {
    background: #262626 !important;
}

.dark-mode .page-header h1 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Section Headers */
.dark-mode .section-header h2,
.dark-mode .section-title {
    color: #F0F0F0 !important;
}

.dark-mode .section-subtitle {
    color: #A8A8A8 !important;
}

/* Dark Mode - View All Links */
.dark-mode .view-all {
    color: var(--primary) !important;
}

.dark-mode .view-all:hover {
    color: var(--primary-light) !important;
}

/* Dark Mode - Logo */
.dark-mode .logo-text {
    color: #F0F0F0 !important;
}

/* Dark Mode - Copyright */
.dark-mode .copyright {
    color: #6B6B6B !important;
}

/* Dark Mode - Error Pages */
.dark-mode .error-page {
    background: #1E1E1E !important;
}

.dark-mode .error-code {
    color: var(--primary) !important;
}

.dark-mode .error-message {
    color: #C4C4C4 !important;
}

/* Dark Mode Theme Toggle Button */
.dark-mode .theme-toggle {
    color: var(--primary);
}

.dark-mode .theme-toggle:hover {
    color: var(--primary-light);
}

/* Dark Mode - Scrollbar */
.dark-mode::-webkit-scrollbar {
    width: 10px;
}

.dark-mode::-webkit-scrollbar-track {
    background: #1E1E1E;
}

.dark-mode::-webkit-scrollbar-thumb {
    background: #4A4A4A;
    border-radius: 5px;
}

.dark-mode::-webkit-scrollbar-thumb:hover {
    background: #6B6B6B;
}

/* Dark Mode - Selection */
.dark-mode ::selection {
    background: var(--primary);
    color: #1E1E1E;
}

/* Dark Mode - Images */
.dark-mode img:not(.logo-image):not(.product-image) {
    filter: brightness(0.95);
}

/* Dark Mode - Set Banner Section */
.dark-mode .set-banner-section {
    background: linear-gradient(135deg, #1E1E1E 0%, #262626 50%, #2E2E2E 100%) !important;
}

.dark-mode .set-banner-section::before {
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%) !important;
}

.dark-mode .set-banner-section .banner-text h2 {
    color: #F0F0F0 !important;
}

.dark-mode .set-banner-section .banner-text p,
.dark-mode .set-banner-section p,
.dark-mode .banner-text p {
    color: #A8A8A8 !important;
}

/* Dark Mode - Features Section */
.dark-mode .features-section {
    background: #1E1E1E !important;
}

/* Dark Mode - Banner Section (Yılbaşı Koleksiyonu vb.) */
.dark-mode .banner-section {
    background: linear-gradient(135deg, #262626 0%, #2E2E2E 50%, #333333 100%) !important;
}

.dark-mode .banner-section .banner-text h2 {
    color: #F0F0F0 !important;
}

.dark-mode .banner-section .banner-text p {
    color: #A8A8A8 !important;
}

.dark-mode .banner-section .banner-image {
    background: #333333 !important;
}

/* Dark Mode - Section Header & Links */
.dark-mode .section-header {
    border-bottom-color: #3D3D3D !important;
}

.dark-mode .section-link {
    color: var(--primary) !important;
}

.dark-mode .section-link:hover {
    color: var(--primary-light) !important;
}

/* Dark Mode - Categories Section with inline style override */
.dark-mode .section[style*="background"] {
    background: #262626 !important;
}

.dark-mode .categories-grid {
    background: transparent !important;
}

/* Dark Mode - Product Slider */
.dark-mode .product-slider {
    background: transparent !important;
}

/* Dark Mode - Inline style overrides */
.dark-mode [style*="background: var(--beige)"],
.dark-mode [style*="background:var(--beige)"],
.dark-mode [style*="background: var(--cream)"],
.dark-mode [style*="background:var(--cream)"] {
    background: #262626 !important;
}

/* Dark Mode - Cart Page Specific */
.dark-mode .cart-page {
    background: transparent !important;
}

.dark-mode .cart-items {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    border-radius: 12px;
}

.dark-mode .cart-header {
    background: #1E1E1E !important;
    color: #A8A8A8 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .cart-item {
    background: #262626 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .cart-item:hover {
    background: #2E2E2E !important;
}

.dark-mode .cart-item-name a {
    color: #F0F0F0 !important;
}

.dark-mode .cart-item-name a:hover {
    color: var(--primary) !important;
}

.dark-mode .cart-item-price,
.dark-mode .cart-item-total {
    color: var(--primary) !important;
}

.dark-mode .cart-item-variation {
    color: #8C8C8C !important;
}

.dark-mode .cart-item-remove {
    color: #6B6B6B !important;
    background: transparent !important;
}

.dark-mode .cart-item-remove:hover {
    color: #E05050 !important;
}

/* Dark Mode - Cart Summary */
.dark-mode .cart-summary {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .cart-summary h3 {
    color: #F0F0F0 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .cart-summary-row {
    color: #C4C4C4 !important;
    border-bottom: 1px solid #333333 !important;
}

.dark-mode .cart-summary-row.total {
    color: #F0F0F0 !important;
}

.dark-mode .cart-summary-row .value {
    color: var(--primary) !important;
}

/* Dark Mode - Coupon Input */
.dark-mode .coupon-form {
    background: #1E1E1E !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .coupon-form input {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #E0E0E0 !important;
}

/* Dark Mode - Empty Cart */
.dark-mode .empty-cart,
.dark-mode .empty-state {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .empty-cart h3,
.dark-mode .empty-state h3 {
    color: #F0F0F0 !important;
}

.dark-mode .empty-cart p,
.dark-mode .empty-state p {
    color: #A8A8A8 !important;
}

.dark-mode .empty-cart i,
.dark-mode .empty-state i {
    color: #4A4A4A !important;
}

/* Dark Mode - Page Header */
.dark-mode .page-header {
    background: #262626 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .page-header h1 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Breadcrumb in Page Header */
.dark-mode .page-header .breadcrumb {
    background: transparent !important;
}

.dark-mode .page-header .breadcrumb a {
    color: #8C8C8C !important;
}

.dark-mode .page-header .breadcrumb span {
    color: #C4C4C4 !important;
}

/* Dark Mode - Login/Register Forms */
.dark-mode .auth-page,
.dark-mode .login-page,
.dark-mode .register-page {
    background: #1E1E1E !important;
}

.dark-mode .auth-card,
.dark-mode .login-card,
.dark-mode .register-card {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .auth-card h2,
.dark-mode .login-card h2,
.dark-mode .register-card h2 {
    color: #F0F0F0 !important;
}

.dark-mode .auth-link,
.dark-mode .forgot-password {
    color: var(--primary) !important;
}

/* Dark Mode - Checkout Steps */
.dark-mode .checkout-steps {
    background: transparent !important;
}

.dark-mode .checkout-step-item {
    color: #6B6B6B !important;
}

.dark-mode .checkout-step-item.active {
    color: var(--primary) !important;
}

.dark-mode .checkout-step-item.completed {
    color: #6ABF6A !important;
}

/* Dark Mode - Order Success/Error Pages */
.dark-mode .order-success,
.dark-mode .order-error {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .order-success h2 {
    color: #6ABF6A !important;
}

.dark-mode .order-error h2 {
    color: #E05050 !important;
}

.dark-mode .order-details {
    background: #1E1E1E !important;
    border: 1px solid #3D3D3D !important;
}

/* Dark Mode - Related Products Section */
.dark-mode .related-products {
    background: #1E1E1E !important;
}

.dark-mode .related-products h3 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Recently Viewed */
.dark-mode .recently-viewed {
    background: #1E1E1E !important;
}

.dark-mode .recently-viewed h3 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Account Page */
.dark-mode .account-page {
    background: #1E1E1E !important;
}

.dark-mode .account-grid {
    background: transparent !important;
}

.dark-mode .account-sidebar {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .account-sidebar .user-info {
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .account-sidebar .user-name {
    color: #F0F0F0 !important;
}

.dark-mode .account-sidebar .user-email {
    color: #8C8C8C !important;
}

.dark-mode .account-nav a {
    color: #C4C4C4 !important;
    border-bottom: 1px solid #333333 !important;
}

.dark-mode .account-nav a:hover,
.dark-mode .account-nav a.active {
    background: #333333 !important;
    color: var(--primary) !important;
}

.dark-mode .account-nav a i {
    color: #6B6B6B !important;
}

.dark-mode .account-nav a:hover i,
.dark-mode .account-nav a.active i {
    color: var(--primary) !important;
}

.dark-mode .account-content {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .account-section-title {
    color: #F0F0F0 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

/* Dark Mode - Order List */
.dark-mode .order-list {
    background: transparent !important;
}

.dark-mode .order-item {
    background: #1E1E1E !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .order-item:hover {
    border-color: var(--primary) !important;
}

.dark-mode .order-number {
    color: var(--primary) !important;
}

.dark-mode .order-date {
    color: #8C8C8C !important;
}

.dark-mode .order-total {
    color: #F0F0F0 !important;
}

/* Dark Mode - Address List */
.dark-mode .address-list {
    background: transparent !important;
}

.dark-mode .address-item {
    background: #1E1E1E !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .address-item.default {
    border-color: var(--primary) !important;
}

.dark-mode .address-title {
    color: #F0F0F0 !important;
}

.dark-mode .address-details {
    color: #A8A8A8 !important;
}

.dark-mode .address-actions button {
    color: #8C8C8C !important;
}

.dark-mode .address-actions button:hover {
    color: var(--primary) !important;
}

/* Dark Mode - Profile Form */
.dark-mode .profile-form {
    background: transparent !important;
}

.dark-mode .profile-form label {
    color: #C4C4C4 !important;
}

/* Dark Mode - Favorites Grid */
.dark-mode .favorites-grid {
    background: transparent !important;
}

/* Dark Mode - Static Pages (Hakkımızda, İletişim, SSS, etc.) */
.dark-mode .static-page,
.dark-mode .about-page,
.dark-mode .contact-page,
.dark-mode .faq-page,
.dark-mode .privacy-page,
.dark-mode .terms-page {
    background: #1E1E1E !important;
}

.dark-mode .static-content,
.dark-mode .page-content {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
    color: #C4C4C4 !important;
}

.dark-mode .static-content h2,
.dark-mode .static-content h3,
.dark-mode .page-content h2,
.dark-mode .page-content h3 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Contact Form */
.dark-mode .contact-grid {
    background: transparent !important;
}

.dark-mode .contact-form-wrapper {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .contact-info-wrapper {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .contact-info-item {
    color: #C4C4C4 !important;
}

.dark-mode .contact-info-item i {
    color: var(--primary) !important;
}

.dark-mode .contact-info-item h4 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Search Page */
.dark-mode .search-page {
    background: #1E1E1E !important;
}

.dark-mode .search-header {
    background: #262626 !important;
    border-bottom: 1px solid #3D3D3D !important;
}

.dark-mode .search-query {
    color: var(--primary) !important;
}

.dark-mode .search-count {
    color: #8C8C8C !important;
}

/* Dark Mode - 404 / Error Pages */
.dark-mode .error-404,
.dark-mode .error-500 {
    background: #1E1E1E !important;
}

.dark-mode .error-404 h1,
.dark-mode .error-500 h1 {
    color: var(--primary) !important;
}

.dark-mode .error-404 p,
.dark-mode .error-500 p {
    color: #A8A8A8 !important;
}

/* Dark Mode - Blog Page */
.dark-mode .blog-page {
    background: #1E1E1E !important;
}

.dark-mode .blog-grid {
    background: transparent !important;
}

.dark-mode .blog-sidebar {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .blog-sidebar h4 {
    color: #F0F0F0 !important;
}

.dark-mode .blog-sidebar ul li a {
    color: #C4C4C4 !important;
}

.dark-mode .blog-sidebar ul li a:hover {
    color: var(--primary) !important;
}

/* Dark Mode - Blog Detail */
.dark-mode .blog-detail {
    background: #262626 !important;
    border: 1px solid #3D3D3D !important;
}

.dark-mode .blog-detail-header h1 {
    color: #F0F0F0 !important;
}

.dark-mode .blog-detail-meta {
    color: #8C8C8C !important;
}

.dark-mode .blog-detail-content {
    color: #C4C4C4 !important;
}

.dark-mode .blog-detail-content h2,
.dark-mode .blog-detail-content h3 {
    color: #F0F0F0 !important;
}

/* Dark Mode - Share Buttons */
.dark-mode .share-buttons {
    background: transparent !important;
}

.dark-mode .share-buttons a {
    background: #333333 !important;
    color: #C4C4C4 !important;
}

.dark-mode .share-buttons a:hover {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Tags */
.dark-mode .tags {
    background: transparent !important;
}

.dark-mode .tag {
    background: #333333 !important;
    color: #C4C4C4 !important;
}

.dark-mode .tag:hover {
    background: var(--primary) !important;
    color: #1E1E1E !important;
}

/* Dark Mode - Newsletter Override */
.dark-mode .newsletter-section {
    background: linear-gradient(135deg, #262626 0%, #2E2E2E 50%, #1E1E1E 100%) !important;
}

.dark-mode .newsletter-content {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: rgba(201, 168, 108, 0.25) !important;
}

.dark-mode .newsletter-text h3 {
    color: #F0F0F0 !important;
}

.dark-mode .newsletter-text p {
    color: #A8A8A8 !important;
}

.dark-mode .newsletter-form input {
    background: #333333 !important;
    border-color: #4A4A4A !important;
    color: #E0E0E0 !important;
}

.dark-mode .newsletter-form input::placeholder {
    color: #6B6B6B !important;
}

/* Dark Mode - Hero Section */
.dark-mode .hero-section {
    background: #1E1E1E;
}

.dark-mode .hero-slider,
.dark-mode .hero-slider .swiper,
.dark-mode .hero-slider .swiper-wrapper,
.dark-mode .hero-slider .swiper-slide {
    background: #1E1E1E;
}

.dark-mode .hero-slide {
    background-color: #1E1E1E;
}

/* Hero slide içindeki metin her zaman beyaz kalmalı */
.hero-content {
    color: #FFFFFF;
}

.hero-content h1,
.hero-content p {
    color: #FFFFFF;
}

.dark-mode .hero-content .btn-primary {
    background: var(--primary);
    color: #1E1E1E;
}

/* Dark Mode - Section Titles */
.dark-mode .section-title::after {
    background: var(--primary);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Top Bar */
.top-bar {
    background: var(--gray-800);
    color: var(--white);
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-sm);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left i,
.top-bar-right i {
    margin-right: var(--spacing-xs);
    color: var(--primary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.top-bar-right a {
    color: var(--white);
}

.theme-toggle {
    color: var(--white);
    padding: var(--spacing-xs);
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
    gap: var(--spacing-xl);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary);
}

/* Header Search */
.header-search {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.header-search form {
    display: flex;
    background: var(--beige);
    border-radius: var(--border-radius-full);
    overflow: visible;
    position: relative;
}

.header-search input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    background: transparent;
    outline: none;
}

.header-search button {
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary);
    color: var(--white);
    transition: var(--transition);
}

.header-search button:hover {
    background: var(--primary-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    position: relative;
    transition: var(--transition);
}

.header-action i {
    font-size: var(--font-size-xl);
}

.header-action:hover {
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: var(--font-size-xs);
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: var(--font-size-xl);
    color: var(--gray-700);
    padding: var(--spacing-sm);
}

/* Main Navigation */
.main-nav {
    background: var(--beige);
    border-top: 1px solid var(--beige-dark);
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
}

.nav-menu li a {
    display: block;
    padding: var(--spacing-md) var(--spacing-sm);
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu li.has-dropdown > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.nav-menu li.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    min-width: 220px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
}

.nav-menu li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    display: block;
}

.dropdown-menu li a {
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--beige);
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: var(--beige-dark);
    margin: var(--spacing-sm) 0;
}

/* Mini Cart */
.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mini-cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
}

.mini-cart.active {
    right: 0;
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--beige-dark);
}

.mini-cart-header h3 {
    font-size: var(--font-size-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mini-cart-close {
    font-size: var(--font-size-2xl);
    color: var(--gray-500);
    transition: var(--transition);
}

.mini-cart-close:hover {
    color: var(--error);
}

.mini-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
}

.mini-cart-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--beige);
}

.mini-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.mini-cart-item-info {
    flex: 1;
}

.mini-cart-item-name {
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.mini-cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

.mini-cart-item-qty {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.mini-cart-item-remove {
    color: var(--gray-400);
    transition: var(--transition);
}

.mini-cart-item-remove:hover {
    color: var(--error);
}

.mini-cart-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--beige-dark);
}

.mini-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
}

.mini-cart-total strong {
    color: var(--primary);
}

.mini-cart-empty {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--gray-500);
}

.mini-cart-empty i {
    font-size: 48px;
    margin-bottom: var(--spacing-md);
    color: var(--gray-300);
}

/* Buttons - Şirin tasarım */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.45);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius);
    color: var(--white);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    animation: slideIn 0.3s ease;
}

.flash-success { background: var(--success); }
.flash-error { background: var(--error); }
.flash-warning { background: var(--warning); }
.flash-info { background: var(--info); }

.flash-message button {
    color: var(--white);
    font-size: var(--font-size-lg);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - var(--header-height) - 400px);
}

/* Hero Slider - Tutarlı Oranlar */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: var(--gray-800);
    isolation: isolate; /* Yeni stacking context oluştur */
}

.hero-slider .swiper,
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    background: var(--gray-800);
}

.hero-slide {
    position: relative;
    height: clamp(400px, 50vh, 600px); /* Responsive yükseklik: min 400px, ideal %50 viewport, max 600px */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-800);
    background-repeat: no-repeat;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: min(600px, 90%); /* Responsive max-width */
    padding: var(--spacing-2xl);
}

.hero-content h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
}

/* Section Styles - Tutarlı Spacing (8px grid sistemi) */
.section {
    padding: clamp(2rem, 5vw, 4rem) 0; /* Responsive section padding */
    position: relative;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--gray-800);
    position: relative;
    padding-bottom: var(--spacing-md);
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: var(--border-radius-full);
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-full);
    background: var(--primary-light);
    transition: all 0.3s ease;
}

.section-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(5px);
}

.section-link i {
    transition: transform 0.3s ease;
}

.section-link:hover i {
    transform: translateX(3px);
}

/* Product Grid - Tutarlı Oranlar */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); /* Mobile-first responsive */
    gap: clamp(1rem, 2vw, 1.5rem); /* Responsive gap */
}

/* Product Card - Şirin tasarım */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.product-card:hover::after {
    opacity: 1;
}

.product-image {
    position: relative;
    aspect-ratio: var(--ratio-product); /* 4/5 - e-ticaret standardı */
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.badge {
    padding: 6px 12px;
    border-radius: var(--border-radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.badge-sale {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
    color: var(--white);
    animation: badgeFloat 2s ease-in-out infinite;
}

.badge-new {
    background: linear-gradient(135deg, #7bed9f, #2ed573);
    color: var(--white);
}

.badge-stock {
    background: linear-gradient(135deg, #ffa502, #ff7f50);
    color: var(--white);
}

.badge-out {
    background: linear-gradient(135deg, #a4b0be, #747d8c);
    color: var(--white);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.product-favorite {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.product-favorite:hover {
    transform: scale(1.15);
    color: #ff6b81;
    box-shadow: 0 4px 15px rgba(255, 107, 129, 0.3);
}

.product-favorite.active {
    color: #ff6b81;
    background: linear-gradient(135deg, #fff0f3, #ffe0e6);
}

.product-favorite.active i {
    font-weight: 900;
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

.product-info {
    padding: clamp(0.875rem, 2vw, 1.25rem); /* Responsive padding */
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.product-category {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}

.product-name {
    font-size: var(--font-size-base);
    font-weight: 500;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-name a:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.price-current {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-old {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.product-actions .btn {
    flex: 1;
}

/* Product Slider */
.product-slider {
    position: relative;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    color: var(--primary);
    background: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.product-slider .swiper-button-next::after,
.product-slider .swiper-button-prev::after {
    font-size: 16px;
}

/* Categories Section - Orantılı Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); /* Mobile-first */
    gap: clamp(1rem, 2vw, 1.5rem);
}

.category-card {
    position: relative;
    aspect-ratio: var(--ratio-landscape); /* 4/3 - altın oranına yakın */
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige), var(--primary-light));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1), rgba(201, 168, 108, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover img {
    transform: scale(1.15);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: var(--white);
    z-index: 2;
    transition: padding 0.3s ease;
}

.category-card:hover .category-card-content {
    padding-bottom: var(--spacing-xl);
}

.category-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Banner Section - Şirin tasarım */
.banner-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--beige) 50%, var(--cream) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 8s ease-in-out infinite;
}

.banner-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 6s ease-in-out infinite reverse;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 3rem); /* Responsive gap */
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-text h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
    color: var(--gray-800);
    position: relative;
}


.banner-text p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.banner-image {
    position: relative;
}

.banner-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: calc(var(--border-radius-xl) + 10px);
    opacity: 0.3;
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.02); }
}

.banner-image img {
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    transition: transform 0.4s ease;
}

.banner-image:hover img {
    transform: scale(1.03) rotate(1deg);
}

/* Features Section - Orantılı Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); /* Otomatik responsive */
    gap: clamp(1rem, 2vw, 1.5rem);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--beige) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(201, 168, 108, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.3);
}

.feature-icon i {
    font-size: 26px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-800);
    font-weight: 600;
}

.feature-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--gray-800);
    color: var(--gray-300);
    padding-top: var(--spacing-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); /* Eşit orantılı responsive grid */
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid var(--gray-700);
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col p {
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
    font-size: var(--font-size-sm);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-contact li {
    display: flex;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--gray-700);
}

.payment-icons {
    display: flex;
    gap: var(--spacing-md);
}

.payment-icons img {
    height: 30px;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.7;
    transition: var(--transition);
}

.payment-icons img:hover {
    filter: none;
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: var(--spacing-lg) 0;
    font-size: var(--font-size-sm);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: var(--beige);
    padding: var(--spacing-2xl) 0;
    margin-bottom: var(--spacing-2xl);
}

.page-header h1 {
    font-size: var(--font-size-3xl);
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
}

.breadcrumb {
    display: flex;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--gray-400);
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    padding: var(--spacing-2xl) 0;
}

.product-gallery {
    position: sticky;
    top: 160px;
}

.product-gallery-main {
    aspect-ratio: var(--ratio-square); /* 1:1 - detay sayfası için kare */
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    cursor: zoom-in;
    position: relative;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.product-gallery-thumb {
    aspect-ratio: var(--ratio-square); /* 1:1 */
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
    border-color: var(--primary);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.product-detail-price .price-current {
    font-size: var(--font-size-2xl);
    color: var(--primary);
    font-weight: 600;
}

.product-detail-price .price-old {
    font-size: var(--font-size-base);
}

.product-stock {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 4px 12px;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.product-stock.in-stock {
    background: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.product-stock.low-stock {
    background: rgba(255, 152, 0, 0.1);
    color: var(--warning);
}

.product-stock.out-of-stock {
    background: rgba(244, 67, 54, 0.1);
    color: var(--error);
}

.product-short-desc {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: var(--font-size-sm);
}

.product-variations {
    margin-bottom: var(--spacing-md);
}

.variation-group {
    margin-bottom: var(--spacing-sm);
}

.variation-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.variation-option {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.variation-option:hover,
.variation-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.quantity-selector label {
    font-weight: 500;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-input button {
    width: 32px;
    height: 32px;
    background: var(--beige);
    color: var(--gray-700);
    font-size: var(--font-size-base);
    transition: var(--transition);
}

.quantity-input button:hover {
    background: var(--primary);
    color: var(--white);
}

.quantity-input input {
    width: 48px;
    height: 32px;
    text-align: center;
    border: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.product-detail-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    align-items: center;
}

.product-detail-actions .btn-primary {
    flex: 1;
    max-width: 200px;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.product-detail-actions .btn-outline {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: var(--border-radius);
}

.product-meta {
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--beige-dark);
    margin-top: var(--spacing-sm);
}

.product-meta p {
    margin-bottom: 4px;
    font-size: var(--font-size-xs);
    color: var(--gray-600);
}

.product-meta strong {
    color: var(--gray-800);
}

.product-tabs {
    margin-top: var(--spacing-2xl);
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--beige-dark);
}

.tab-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    font-weight: 500;
    color: var(--gray-500);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary);
    border-color: var(--primary);
}

.tab-content {
    display: none;
    padding: var(--spacing-xl) 0;
}

.tab-content.active {
    display: block;
}

/* Cart Page */
.cart-page {
    padding: var(--spacing-2xl) 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-2xl);
}

.cart-items {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--beige);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr auto;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--beige);
    align-items: center;
}

.cart-item-product {
    display: flex;
    gap: var(--spacing-md);
}

.cart-item-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-item-name {
    font-weight: 500;
}

.cart-item-variation {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
}

.cart-item-price {
    font-weight: 500;
}

.cart-item-total {
    font-weight: 600;
    color: var(--primary);
}

.cart-item-remove {
    color: var(--gray-400);
    padding: var(--spacing-sm);
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: var(--error);
}

.cart-summary {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
    position: sticky;
    top: 160px;
}

.cart-summary h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--beige-dark);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
}

.cart-summary-row.total {
    font-size: var(--font-size-lg);
    font-weight: 600;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--beige-dark);
    margin-top: var(--spacing-md);
}

.cart-summary-row.total span:last-child {
    color: var(--primary);
}

.coupon-form {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.coupon-form input {
    flex: 1;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
}

.coupon-form input:focus {
    border-color: var(--primary);
    outline: none;
}

/* Checkout Page */
.checkout-page {
    padding: var(--spacing-2xl) 0;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-2xl);
}

.checkout-section {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow);
}

.checkout-section h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--beige-dark);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.payment-method {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-method input {
    display: none;
}

.payment-method i {
    font-size: 24px;
    color: var(--primary);
}

.order-summary {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
    position: sticky;
    top: 160px;
}

.order-summary h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: var(--spacing-lg);
}

.order-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--beige);
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.order-item-qty {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
}

.order-item-price {
    font-weight: 500;
    color: var(--primary);
}

/* Forms */
.auth-page {
    padding: var(--spacing-3xl) 0;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.auth-container h1 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.auth-container .btn {
    width: 100%;
    margin-top: var(--spacing-md);
}

.auth-links {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.auth-links a {
    color: var(--primary);
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.contact-info {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-info h2 {
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}

.contact-item h4 {
    margin-bottom: var(--spacing-xs);
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    margin-bottom: var(--spacing-xl);
}

/* Responsive */
@media (max-width: 1024px) {
    /* Footer ve Features artık auto-fit ile otomatik responsive */
    
    .hero-slide {
        height: clamp(350px, 45vh, 500px);
    }
    
    .cart-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    
    .header-search {
        display: none;
    }
    
    .header-actions span:not(.cart-count) {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: var(--white);
        z-index: 1100;
        transition: var(--transition);
        box-shadow: var(--shadow-xl);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: var(--spacing-xl);
    }
    
    .nav-menu li a {
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid var(--beige);
    }
    
    .hero-slide {
        height: clamp(300px, 40vh, 400px);
    }
    
    .hero-content {
        padding: var(--spacing-lg);
    }
    
    .hero-content h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .hero-content p {
        font-size: var(--font-size-base);
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    /* Section header mobile */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    /* Product grid 2 sütun kalacak - auto-fill ile otomatik */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    /* Kategori kartları tek sütun */
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slide {
        height: clamp(280px, 35vh, 350px);
    }
    
    .hero-content h1 {
        font-size: 1.375rem;
    }
    
    /* Feature card compact */
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .feature-icon i {
        font-size: 22px;
    }
}

/* Loading Spinner - Enhanced */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Page Loading Overlay */
.page-loading {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--spacing-lg);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--beige-dark);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.page-loading-text {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 9999;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px var(--primary);
}

/* Skeleton Loading - Enhanced */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: var(--border-radius);
}

@keyframes skeleton {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Product Card Skeleton */
.product-card-skeleton {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-card-skeleton .skeleton-image {
    aspect-ratio: 1;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

.product-card-skeleton .skeleton-content {
    padding: var(--spacing-lg);
}

.product-card-skeleton .skeleton-text {
    height: 14px;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-sm);
}

.product-card-skeleton .skeleton-text:last-child {
    width: 60%;
    margin-bottom: 0;
}

.product-card-skeleton .skeleton-price {
    height: 20px;
    width: 40%;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
    border-radius: var(--border-radius-sm);
    margin-top: var(--spacing-md);
}

/* Toast Notifications - Enhanced */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    transform: none;
    background: var(--gray-800);
    color: var(--white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-full);
    z-index: 2000;
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.toast::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.toast-error::before {
    content: '\f00d';
    background: var(--error);
}

.toast-warning::before {
    content: '\f071';
    background: var(--warning);
}

.toast-info::before {
    content: '\f129';
    background: var(--info);
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.toast.toast-out {
    animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: var(--spacing-3xl);
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

.empty-state h3 {
    margin-bottom: var(--spacing-sm);
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: var(--spacing-xl);
}

/* ==================== Cookie Consent ==================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    backdrop-filter: blur(10px);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content p i {
    font-size: 24px;
    color: var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ==================== Loading Skeleton ==================== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-image {
    width: 100%;
    padding-top: 100%;
}

/* ==================== Sale Badge Animation ==================== */
.product-card .badge.sale {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ==================== Smooth Page Transitions ==================== */
.page-transition {
    animation: pageIn 0.4s ease;
}

@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Better Focus States ==================== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ==================== Image Hover Effects ==================== */
.product-card .product-image img {
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* ==================== Şirin Tasarım Eklentileri ==================== */

/* Set Banner Section */
.set-banner-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.set-banner-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.set-banner-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Hero Slider Şirin Güncellemeler */
.hero-slide::before {
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.3) 0%, rgba(0,0,0,0.4) 50%, rgba(139, 115, 85, 0.3) 100%);
}

.hero-content h1 {
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Swiper Pagination Şirin */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--white);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 2px 10px rgba(201, 168, 108, 0.5);
}

/* Product Name Hover */
.product-name a {
    transition: all 0.3s ease;
    display: inline-block;
}

.product-card:hover .product-name a {
    color: var(--primary);
}

/* Cute Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* Card Shine Effect */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover::before {
    left: 100%;
}

/* Soft Glow Effect */
.soft-glow {
    box-shadow: 0 0 30px rgba(201, 168, 108, 0.3);
}

/* Input Focus Effect */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(201, 168, 108, 0.15);
}

/* Mini Cart Styles */
.mini-cart {
    border-radius: var(--border-radius-xl) 0 0 var(--border-radius-xl);
}

/* ==================== Newsletter Section ==================== */
.newsletter-section {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 50%, var(--black) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 10s ease-in-out infinite;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 8s ease-in-out infinite reverse;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl) var(--spacing-3xl);
    border: 1px solid rgba(201, 168, 108, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: var(--font-size-2xl);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-weight: 700;
}

.newsletter-text h3 i {
    font-size: var(--font-size-3xl);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.newsletter-text p {
    color: var(--gray-400);
    font-size: var(--font-size-base);
    line-height: 1.6;
    max-width: 400px;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: var(--spacing-lg) var(--spacing-xl);
    border: 2px solid rgba(201, 168, 108, 0.3);
    border-radius: var(--border-radius-full);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(201, 168, 108, 0.2);
}

.newsletter-form .btn {
    padding: var(--spacing-lg) var(--spacing-2xl);
    white-space: nowrap;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.35);
}

.newsletter-form .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(201, 168, 108, 0.45);
}

.newsletter-form .btn i {
    transition: transform 0.3s ease;
}

.newsletter-form .btn:hover i {
    transform: translateX(3px) rotate(-15deg);
}

/* Newsletter Responsive */
@media (max-width: 992px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-2xl);
    }
    
    .newsletter-text p {
        max-width: 100%;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .newsletter-content {
        padding: var(--spacing-xl);
    }
    
    .newsletter-text h3 {
        font-size: var(--font-size-xl);
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .newsletter-text h3 i {
        font-size: var(--font-size-2xl);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }
}

/* ==================== Responsive Improvements ==================== */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== Enhanced UX Additions ==================== */

/* Ripple Effect for Buttons */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Smooth Image Loading */
.img-loading {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

.img-loaded {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Floating Labels for Forms */
.form-floating {
    position: relative;
}

.form-floating input,
.form-floating textarea,
.form-floating select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating label {
    position: absolute;
    top: 0;
    left: 0;
    padding: var(--spacing-md);
    pointer-events: none;
    transform-origin: 0 0;
    transition: all 0.2s ease;
    color: var(--gray-500);
}

.form-floating input:focus ~ label,
.form-floating input:not(:placeholder-shown) ~ label,
.form-floating textarea:focus ~ label,
.form-floating textarea:not(:placeholder-shown) ~ label {
    transform: scale(0.85) translateY(-0.5rem);
    color: var(--primary);
}

/* Animated Counter */
.counter-animate {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter-animate.counting {
    transform: scale(1.2);
    color: var(--primary);
}

/* Success Checkmark Animation */
.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid var(--success);
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: var(--success);
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

@keyframes icon-line-tip {
    0% { width: 0; left: 1px; top: 19px; }
    54% { width: 0; left: 1px; top: 19px; }
    70% { width: 50px; left: -8px; top: 37px; }
    84% { width: 17px; left: 21px; top: 48px; }
    100% { width: 25px; left: 14px; top: 46px; }
}

@keyframes icon-line-long {
    0% { width: 0; right: 46px; top: 54px; }
    65% { width: 0; right: 46px; top: 54px; }
    84% { width: 55px; right: 0px; top: 35px; }
    100% { width: 47px; right: 8px; top: 38px; }
}

/* Notification Badge Pulse */
.badge-pulse {
    position: relative;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: var(--primary);
    animation: badge-pulse 1.5s ease-in-out infinite;
    z-index: -1;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* Smooth Accordion */
.accordion-item {
    border: 1px solid var(--beige-dark);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    overflow: hidden;
}

.accordion-header {
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--beige);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: var(--beige-dark);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: var(--spacing-lg);
}

/* Tooltip */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-wrapper .tooltip-text {
    visibility: hidden;
    background-color: var(--gray-800);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    position: absolute;
    z-index: 1000;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: var(--font-size-xs);
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.tooltip-wrapper .tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--gray-800) transparent transparent transparent;
}

.tooltip-wrapper:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

/* Staggered Animation for Lists */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(20px);
    animation: staggerFadeIn 0.5s ease forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }
.stagger-animation > *:nth-child(7) { animation-delay: 0.7s; }
.stagger-animation > *:nth-child(8) { animation-delay: 0.8s; }

@keyframes staggerFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Price Change Animation */
.price-updated {
    animation: priceFlash 0.5s ease;
}

@keyframes priceFlash {
    0%, 100% { background: transparent; }
    50% { background: rgba(76, 175, 80, 0.2); }
}

/* Stock Warning Animation */
.stock-warning {
    animation: stockPulse 2s ease-in-out infinite;
}

@keyframes stockPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Smooth Number Transition */
.number-transition {
    display: inline-block;
    transition: transform 0.3s ease;
}

.number-transition.updating {
    transform: scale(1.1);
}

/* Enhanced Search Autocomplete */
.search-autocomplete {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-height: 450px;
    overflow-y: auto;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) transparent;
    border: 1px solid var(--beige-dark);
}

.search-autocomplete::-webkit-scrollbar {
    width: 6px;
}

.search-autocomplete::-webkit-scrollbar-track {
    background: transparent;
}

.search-autocomplete::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}

.search-autocomplete.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-autocomplete-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--beige);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.search-autocomplete-item:hover,
.search-autocomplete-item.selected {
    background: var(--beige);
}

.search-autocomplete-item.selected {
    background: var(--primary-light);
}

.search-autocomplete-item:last-child {
    border-bottom: none;
}

.search-autocomplete-image {
    position: relative;
    flex-shrink: 0;
}

.search-autocomplete-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.search-discount-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--error);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: var(--border-radius-full);
}

.search-autocomplete-item-info {
    flex: 1;
    min-width: 0;
}

.search-autocomplete-item-name {
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--gray-800);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-autocomplete-item-name mark {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0 2px;
    border-radius: 2px;
}

.search-autocomplete-item-category {
    font-size: var(--font-size-xs);
    color: var(--gray-500);
    margin-bottom: 4px;
}

.search-autocomplete-item-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.search-old-price {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    text-decoration: line-through;
}

.search-current-price {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.search-out-of-stock {
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--font-size-xs);
    color: var(--error);
    background: rgba(244, 67, 54, 0.1);
    padding: 2px 8px;
    border-radius: var(--border-radius-full);
}

/* View All Button */
.search-autocomplete-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--beige);
    color: var(--primary-dark);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    border-top: 1px solid var(--beige-dark);
}

.search-autocomplete-view-all:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

/* Loading State */
.search-autocomplete-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xl);
    color: var(--gray-500);
}

.search-loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Empty State */
.search-autocomplete-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xl);
    color: var(--gray-500);
    text-align: center;
}

.search-autocomplete-empty i {
    font-size: var(--font-size-2xl);
    color: var(--gray-400);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-autocomplete {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        max-height: 60vh;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        transform: translateY(100%);
    }
    
    .search-autocomplete.active {
        transform: translateY(0);
    }
    
    .search-autocomplete-image img {
        width: 50px;
        height: 50px;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    padding-bottom: calc(var(--spacing-sm) + env(safe-area-inset-bottom));
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
    }
    
    .back-to-top {
        bottom: 80px;
    }
    
    .support-widget {
        bottom: 80px !important;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--gray-500);
    font-size: 10px;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: all 0.2s ease;
    position: relative;
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--primary);
}

.mobile-nav-item .nav-badge {
    position: absolute;
    top: -2px;
    right: 0;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Improved Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--beige);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection Color */
::selection {
    background: var(--primary-light);
    color: var(--gray-800);
}

/* Print Styles */
@media print {
    .header, .footer, .back-to-top, .support-widget, .mobile-bottom-nav {
        display: none !important;
    }
    
    .product-card {
        break-inside: avoid;
    }
}

/* ============================================
   ELEGANT HOMEPAGE ENHANCEMENTS
   ============================================ */

/* Enhanced Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(201, 168, 108, 0.2) 100%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--cream) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 650px;
    padding: var(--spacing-3xl);
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-content .btn {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Elegant Swiper Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 600;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.hero-slider .swiper-pagination {
    bottom: 40px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 36px;
    border-radius: 6px;
}

/* Enhanced Features Section */
.features-section {
    position: relative;
    padding: var(--spacing-3xl) 0;
    background: var(--white);
    margin-top: -60px;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    position: relative;
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: linear-gradient(145deg, var(--white) 0%, var(--cream) 100%);
    border-radius: var(--border-radius-xl);
    box-shadow: 0 10px 40px rgba(201, 168, 108, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 108, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 168, 108, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(201, 168, 108, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(201, 168, 108, 0.2) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 10px 30px rgba(201, 168, 108, 0.4);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.feature-card h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
    color: var(--gray-800);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Elegant Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-800);
    position: relative;
    padding-bottom: var(--spacing-md);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: var(--border-radius-full);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 90px;
    width: 8px;
    height: 4px;
    background: var(--primary-light);
    border-radius: var(--border-radius-full);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-full);
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.1) 0%, rgba(201, 168, 108, 0.05) 100%);
    border: 1px solid rgba(201, 168, 108, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.section-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-link span,
.section-link i {
    position: relative;
    z-index: 1;
}

.section-link:hover {
    color: var(--white);
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(201, 168, 108, 0.3);
}

.section-link:hover::before {
    opacity: 1;
}

.section-link i {
    transition: transform 0.3s ease;
}

.section-link:hover i {
    transform: translateX(4px);
}

/* Enhanced Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(201, 168, 108, 0.08);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, var(--primary-light) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(201, 168, 108, 0.18);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--beige) 100%);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Enhanced Product Favorite */
.product-favorite {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
}

.product-favorite:hover {
    transform: scale(1.15);
    color: #ff6b81;
    box-shadow: 0 8px 25px rgba(255, 107, 129, 0.3);
}

.product-favorite.active {
    color: #ff6b81;
    background: linear-gradient(135deg, #fff5f7, #ffe8ec);
    animation: heartPop 0.6s ease;
}

@keyframes heartPop {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* Enhanced Product Badges */
.product-badges {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    z-index: 5;
}

.badge {
    padding: 8px 14px;
    border-radius: var(--border-radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.badge-sale {
    background: linear-gradient(135deg, #ff6b81, #ff4757);
    color: var(--white);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(255, 71, 87, 0.5); }
}

.badge-new {
    background: linear-gradient(135deg, #7bed9f, #2ed573);
    color: var(--white);
}

.badge-stock {
    background: linear-gradient(135deg, #ffa502, #ff7f50);
    color: var(--white);
}

/* Enhanced Product Info */
.product-info {
    padding: var(--spacing-lg);
    background: linear-gradient(180deg, var(--white) 0%, rgba(253, 248, 243, 0.5) 100%);
}

.product-category {
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.product-category a {
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: var(--primary);
}

.product-name {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-name a {
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.price-current {
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-old {
    font-size: var(--font-size-sm);
    color: var(--gray-400);
    text-decoration: line-through;
    position: relative;
}

/* Enhanced Product Actions */
.product-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.product-actions .btn {
    flex: 1;
    font-size: var(--font-size-sm);
    padding: var(--spacing-sm) var(--spacing-md);
}

/* Enhanced Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--spacing-xl);
}

.category-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige), var(--primary-light));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 108, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(201, 168, 108, 0.25);
}

.category-card:hover::before {
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,0.85) 100%);
}

.category-card:hover::after {
    opacity: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card:hover img {
    transform: scale(1.15);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-xl);
    color: var(--white);
    z-index: 2;
    transition: all 0.4s ease;
}

.category-card:hover .category-card-content {
    padding-bottom: calc(var(--spacing-xl) + 10px);
}

.category-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    display: inline-block;
}

.category-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.4s ease;
}

.category-card:hover h3::after {
    width: 100%;
}

/* Enhanced Banner Section */
.banner-section {
    background: linear-gradient(135deg, var(--cream) 0%, var(--primary-light) 50%, var(--beige) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite;
}

.banner-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 168, 108, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.banner-text {
    position: relative;
}

.banner-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--gray-800);
    line-height: 1.2;
    position: relative;
}

.banner-text h2::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: var(--border-radius-full);
}

.banner-text p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.banner-image {
    position: relative;
}

.banner-image::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: calc(var(--border-radius-xl) + 15px);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.4s ease;
}

.banner-image:hover::before {
    inset: -20px;
    opacity: 0.3;
}

.banner-image img {
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.banner-image:hover img {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

/* Set Products Banner */
.set-banner-section {
    background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    position: relative;
    overflow: hidden;
}

.set-banner-section::before {
    content: '';
    position: absolute;
    inset: 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='%23C9A86C' 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.5;
}

.set-banner-section .banner-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.set-banner-section .banner-text h2 {
    color: var(--white);
}

.set-banner-section .banner-text h2::before {
    display: none;
}

.set-banner-section .banner-text p {
    color: var(--gray-400);
}

/* Elegant Product Slider */
.product-slider {
    position: relative;
    padding: 0 var(--spacing-xl);
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-slider .swiper-button-next::after,
.product-slider .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.product-slider .swiper-button-next:hover,
.product-slider .swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.product-slider .swiper-button-next:hover::after,
.product-slider .swiper-button-prev:hover::after {
    color: var(--white);
}

/* Smooth Page Transitions */
.section {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Tooltip Styles */
.tooltip-wrapper {
    position: relative;
}

.tooltip-text {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-800);
    color: var(--white);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-800);
}

.tooltip-wrapper:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 15px);
}

/* Responsive Enhancements - Ek düzeltmeler */
@media (max-width: 1024px) {
    .banner-text h2::before {
        display: none;
    }
    
    .banner-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   KAPSAMLI MOBİL RESPONSIVE DÜZENLEMELER
   ============================================ */

/* Tablet - 1024px ve altı */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .feature-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        margin-bottom: var(--spacing-md);
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet Küçük - 768px ve altı */
@media (max-width: 768px) {
    /* Features Section - 2x2 Grid */
    .features-section {
        padding: var(--spacing-xl) 0;
        margin-top: -40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .feature-card {
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
    }
    
    .feature-card:hover {
        transform: translateY(-4px);
    }
    
    .feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        margin-bottom: var(--spacing-sm);
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-card h4 {
        font-size: var(--font-size-sm);
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .feature-card p {
        font-size: var(--font-size-xs);
        line-height: 1.4;
    }
    
    /* Product Grid - 2 sütun */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    /* Categories - 2 sütun */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .category-card {
        aspect-ratio: 4/3;
    }
    
    .category-card h3 {
        font-size: var(--font-size-sm);
    }
    
    /* Banner Section */
    .banner-section {
        padding: var(--spacing-xl) 0;
    }
    
    .banner-content {
        gap: var(--spacing-lg);
    }
    
    .banner-text h2 {
        font-size: var(--font-size-xl);
    }
    
    .banner-text p {
        font-size: var(--font-size-sm);
    }
    
    .banner-image {
        max-width: 100%;
    }
    
    .banner-image img {
        border-radius: var(--border-radius);
    }
    
    /* Section Headers */
    .section-title {
        font-size: var(--font-size-lg);
    }
    
    .section-title::before {
        width: 50px;
        height: 3px;
    }
    
    .section-title::after {
        left: 58px;
        width: 6px;
        height: 3px;
    }
    
    .section-link {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    /* Product Slider */
    .product-slider .swiper-button-next,
    .product-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    
    .product-slider .swiper-button-next::after,
    .product-slider .swiper-button-prev::after {
        font-size: 14px;
    }
    
    /* Set Banner Section */
    .set-banner-section {
        padding: var(--spacing-xl) 0;
    }
    
    .set-banner-section .banner-text h2 {
        font-size: var(--font-size-lg);
    }
    
    .set-banner-section .banner-text p {
        font-size: var(--font-size-sm);
    }
}

/* Mobil - 576px ve altı */
@media (max-width: 576px) {
    /* Container padding */
    .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    /* Features Section - Yatay Scroll veya 2x2 Compact */
    .features-section {
        padding: var(--spacing-lg) 0;
        margin-top: -30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-card {
        padding: var(--spacing-sm) 8px;
        border-radius: 12px;
        min-height: auto;
    }
    
    .feature-card::before {
        height: 3px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        margin-bottom: 8px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-card h4 {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .feature-card p {
        font-size: 10px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* Hero Slider */
    .hero-slide {
        height: clamp(250px, 35vh, 320px);
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .hero-content h1 {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-content p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-content .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .swiper-pagination {
        bottom: 10px !important;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    /* Section Spacing */
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: var(--spacing-lg);
    }
    
    .section-title {
        font-size: var(--font-size-base);
        padding-bottom: var(--spacing-sm);
    }
    
    .section-title::before {
        width: 40px;
        height: 2px;
    }
    
    .section-title::after {
        left: 48px;
        width: 5px;
        height: 2px;
    }
    
    .section-link {
        padding: 6px 12px;
        font-size: var(--font-size-xs);
        gap: 4px;
    }
    
    .section-link i {
        font-size: 10px;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    /* Product Card Compact */
    .product-card {
        border-radius: var(--border-radius);
    }
    
    .product-card .product-info {
        padding: var(--spacing-sm);
    }
    
    .product-card .product-category {
        font-size: 10px;
    }
    
    .product-card .product-title {
        font-size: var(--font-size-sm);
        -webkit-line-clamp: 1;
        line-clamp: 1;
    }
    
    .product-card .product-price {
        font-size: var(--font-size-sm);
    }
    
    .product-card .price-old {
        font-size: var(--font-size-xs);
    }
    
    .product-card .product-rating {
        font-size: 10px;
    }
    
    .product-card .product-actions {
        gap: 6px;
    }
    
    .product-card .btn {
        padding: 8px 12px;
        font-size: var(--font-size-xs);
    }
    
    .product-card .wishlist-btn {
        width: 32px;
        height: 32px;
    }
    
    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-card {
        aspect-ratio: 1;
        border-radius: var(--border-radius);
    }
    
    .category-card-content {
        padding: var(--spacing-sm);
    }
    
    .category-card h3 {
        font-size: var(--font-size-xs);
    }
    
    /* Banner Section */
    .banner-section {
        padding: var(--spacing-lg) 0;
    }
    
    .banner-content {
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }
    
    .banner-text h2 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-sm);
    }
    
    .banner-text p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-md);
    }
    
    .banner-text .btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-sm);
    }
    
    .banner-image {
        display: none;
    }
    
    /* Set Banner */
    .set-banner-section {
        padding: var(--spacing-lg) 0;
    }
    
    .set-banner-section .banner-text {
        max-width: 100% !important;
        padding: 0 var(--spacing-sm);
    }
    
    .set-banner-section .banner-text h2 {
        font-size: var(--font-size-base);
    }
    
    .set-banner-section .banner-text p {
        font-size: var(--font-size-sm);
    }
    
    /* Product Slider */
    .product-slider .swiper-button-next,
    .product-slider .swiper-button-prev {
        display: none !important;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-lg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-col h4 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-md);
    }
    
    .footer-col ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm) var(--spacing-md);
    }
    
    .footer-col ul li {
        margin-bottom: 0;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: var(--spacing-md) 0;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .payment-icons {
        justify-content: center;
    }
}

/* Çok Küçük Mobil - 375px ve altı */
@media (max-width: 375px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    /* Features - Daha kompakt */
    .features-grid {
        gap: 8px;
    }
    
    .feature-card {
        padding: 10px 6px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 6px;
    }
    
    .feature-icon i {
        font-size: 16px;
    }
    
    .feature-card h4 {
        font-size: 11px;
    }
    
    .feature-card p {
        font-size: 9px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    /* Product Grid */
    .product-grid {
        gap: 8px;
    }
    
    .product-card .product-info {
        padding: 8px;
    }
    
    .product-card .product-title {
        font-size: 12px;
    }
    
    .product-card .product-price {
        font-size: 12px;
    }
    
    .product-card .btn {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    /* Categories */
    .categories-grid {
        gap: 8px;
    }
    
    .category-card h3 {
        font-size: 10px;
    }
    
    /* Hero */
    .hero-content h1 {
        font-size: 1.125rem;
    }
    
    .hero-content p {
        font-size: var(--font-size-xs);
    }
    
    /* Section */
    .section-title {
        font-size: var(--font-size-sm);
    }
    
    .section-link span {
        display: none;
    }
    
    .section-link {
        padding: 8px;
        border-radius: 50%;
    }
}

/* Landscape Mobil Düzeltmeleri */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-slide {
        height: 100vh;
        min-height: 280px;
    }
    
    .hero-content h1 {
        font-size: 1.25rem;
    }
    
    .hero-content p {
        display: none;
    }
    
    .features-section {
        margin-top: 0;
    }
}

/* Touch Device Optimizasyonları */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover {
        transform: none;
    }
    
    .feature-card:active {
        transform: scale(0.98);
    }
    
    .product-card:hover {
        transform: none;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }
    
    .category-card:hover {
        transform: none;
    }
    
    .category-card:active {
        transform: scale(0.98);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.95);
    }
}

/* Safe Area - iPhone X ve sonrası için */
@supports (padding: max(0px)) {
    .mobile-bottom-nav {
        padding-bottom: max(var(--spacing-sm), env(safe-area-inset-bottom));
    }
    
    .footer-bottom {
        padding-bottom: max(var(--spacing-md), env(safe-area-inset-bottom));
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .mobile-bottom-nav,
    .cookie-consent,
    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none !important;
    }
    
    .product-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ============================================
   HEADER & NAVİGASYON MOBİL İYİLEŞTİRMELERİ
   ============================================ */

@media (max-width: 768px) {
    /* Top Bar Mobil */
    .top-bar {
        padding: 6px 0;
    }
    
    .top-bar-content {
        justify-content: space-between;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .top-bar-right {
        width: 100%;
        justify-content: flex-end;
        gap: var(--spacing-md);
    }
    
    .top-bar-right a {
        font-size: var(--font-size-xs);
    }
    
    .theme-toggle {
        padding: 4px 8px;
    }
    
    /* Header Mobil */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .header-content {
        padding: var(--spacing-sm) 0;
        gap: var(--spacing-sm);
    }
    
    .logo {
        flex: 1;
    }
    
    .logo-text {
        font-size: var(--font-size-lg);
    }
    
    .logo-image {
        max-height: 36px;
    }
    
    /* Header Actions Mobil */
    .header-actions {
        gap: var(--spacing-xs);
    }
    
    .header-action {
        padding: var(--spacing-xs);
    }
    
    .header-action i {
        font-size: 18px;
    }
    
    .header-action span:not(.cart-count) {
        display: none;
    }
    
    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: var(--border-radius-sm);
        background: var(--beige);
        color: var(--gray-700);
        font-size: 18px;
    }
    
    /* Mobile Navigation Drawer */
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        z-index: 1100;
        transition: left 0.3s ease;
        box-shadow: 4px 0 30px rgba(0,0,0,0.2);
        overflow-y: auto;
        overscroll-behavior: contain;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: var(--spacing-xl);
        gap: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--beige);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: var(--spacing-md) 0;
        font-size: var(--font-size-base);
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .nav-menu li.has-dropdown > a i {
        transition: transform 0.3s ease;
    }
    
    .nav-menu li.has-dropdown.open > a i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: var(--beige);
        border-radius: var(--border-radius-sm);
        margin: var(--spacing-sm) 0;
        padding: var(--spacing-sm);
        display: none;
    }
    
    .nav-menu li.has-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li {
        border-bottom: none;
    }
    
    .dropdown-menu li a {
        padding: var(--spacing-sm) var(--spacing-md) !important;
        font-size: var(--font-size-sm);
        border-radius: var(--border-radius-sm);
    }
    
    .dropdown-menu li a:hover {
        background: var(--white);
    }
    
    /* Mobile Nav Overlay */
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1099;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Search */
    .header-search {
        display: none;
    }
    
    .mobile-search {
        display: block;
        padding: var(--spacing-md);
        background: var(--beige);
    }
    
    .mobile-search form {
        display: flex;
        gap: var(--spacing-sm);
    }
    
    .mobile-search input {
        flex: 1;
        padding: var(--spacing-sm) var(--spacing-md);
        border: 1px solid var(--beige-dark);
        border-radius: var(--border-radius-full);
        font-size: var(--font-size-sm);
    }
    
    .mobile-search button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary);
        color: var(--white);
        border: none;
    }
}

@media (max-width: 576px) {
    /* Header daha kompakt */
    .header-content {
        padding: 8px 0;
    }
    
    .logo-text {
        font-size: var(--font-size-base);
    }
    
    .logo-image {
        max-height: 32px;
    }
    
    .header-action {
        padding: 6px;
    }
    
    .header-action i {
        font-size: 16px;
    }
    
    .mobile-menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    /* Mini Cart Mobil */
    .mini-cart {
        width: 100%;
        max-width: 100%;
    }
    
    .mini-cart-header {
        padding: var(--spacing-md);
    }
    
    .mini-cart-items {
        max-height: calc(100vh - 250px);
        max-height: calc(100dvh - 250px);
    }
    
    .mini-cart-footer {
        padding: var(--spacing-md);
        padding-bottom: calc(var(--spacing-md) + env(safe-area-inset-bottom));
    }
}

/* ============================================
   FORM ELEMANLARI MOBİL İYİLEŞTİRMELERİ
   ============================================ */

@media (max-width: 768px) {
    /* Form Inputs */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    textarea,
    select {
        font-size: 16px !important; /* iOS zoom engellemek için */
        padding: 12px 14px;
    }
    
    .form-group {
        margin-bottom: var(--spacing-md);
    }
    
    .form-group label {
        font-size: var(--font-size-sm);
        margin-bottom: 6px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: var(--font-size-sm);
        min-height: 44px; /* Touch target */
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: var(--font-size-base);
    }
    
    .btn-sm {
        padding: 8px 14px;
        font-size: var(--font-size-xs);
        min-height: 36px;
    }
    
    .btn-block {
        width: 100%;
    }
    
    /* Quantity Input */
    .quantity-input {
        height: 44px;
    }
    
    .quantity-input button {
        width: 44px;
        min-width: 44px;
    }
    
    .quantity-input input {
        width: 50px;
        font-size: var(--font-size-base);
    }
}

/* ============================================
   ÜRÜN DETAY SAYFASI MOBİL
   ============================================ */

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-gallery-main {
        border-radius: var(--border-radius);
    }
    
    .product-gallery-thumbs {
        display: flex;
        gap: var(--spacing-sm);
        overflow-x: auto;
        padding-bottom: var(--spacing-sm);
        -webkit-overflow-scrolling: touch;
    }
    
    .product-gallery-thumb {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
    }
    
    .product-detail-info h1 {
        font-size: var(--font-size-xl);
    }
    
    .product-detail-price .price-current {
        font-size: var(--font-size-2xl);
    }
    
    .product-detail-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .product-detail-actions .btn {
        width: 100%;
    }
    
    /* Product Tabs */
    .product-tabs {
        border-radius: var(--border-radius);
    }
    
    .tab-buttons {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }
    
    .tab-btn {
        flex-shrink: 0;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: var(--font-size-sm);
        white-space: nowrap;
    }
    
    .tab-content {
        padding: var(--spacing-md);
    }
}

/* ============================================
   SEPET SAYFASI MOBİL
   ============================================ */

@media (max-width: 768px) {
    .cart-page {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .cart-header {
        display: none;
    }
    
    .cart-item {
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--beige);
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
        border-radius: var(--border-radius-sm);
    }
    
    .cart-item-info {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-xs);
    }
    
    .cart-item-title {
        font-size: var(--font-size-sm);
        font-weight: 600;
    }
    
    .cart-item-price {
        font-size: var(--font-size-sm);
        color: var(--primary);
        font-weight: 600;
    }
    
    .cart-item-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: var(--spacing-sm);
    }
    
    .cart-item .quantity-input {
        height: 36px;
    }
    
    .cart-item .quantity-input button {
        width: 36px;
    }
    
    .cart-item .remove-btn {
        padding: 8px;
        color: var(--error);
    }
    
    /* Cart Summary */
    .cart-summary {
        position: static;
        border-radius: var(--border-radius);
    }
    
    .cart-summary-content {
        padding: var(--spacing-md);
    }
}

/* ============================================
   ÖDEME SAYFASI MOBİL
   ============================================ */

@media (max-width: 768px) {
    .checkout-page {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .checkout-section {
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
    }
    
    .checkout-section h3 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-md);
    }
    
    .address-cards {
        grid-template-columns: 1fr;
    }
    
    .address-card {
        padding: var(--spacing-md);
    }
    
    .payment-methods {
        gap: var(--spacing-sm);
    }
    
    .payment-method {
        padding: var(--spacing-md);
    }
    
    .payment-method-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Order Summary Sticky on Mobile */
    .order-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        max-height: 60vh;
        overflow-y: auto;
        transform: translateY(calc(100% - 70px));
        transition: transform 0.3s ease;
    }
    
    .order-summary.expanded {
        transform: translateY(0);
    }
    
    .order-summary-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: var(--spacing-md);
        cursor: pointer;
        border-bottom: 1px solid var(--beige);
    }
    
    .order-summary-toggle i {
        transition: transform 0.3s ease;
    }
    
    .order-summary.expanded .order-summary-toggle i {
        transform: rotate(180deg);
    }
}

/* ============================================
   HESABIM SAYFASI MOBİL
   ============================================ */

@media (max-width: 768px) {
    .account-page {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .account-sidebar {
        position: static;
        border-radius: var(--border-radius);
    }
    
    .account-menu {
        display: flex;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    
    .account-menu a {
        flex-shrink: 0;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: var(--border-radius-full);
        border-bottom: none !important;
        background: var(--beige);
        font-size: var(--font-size-sm);
        white-space: nowrap;
    }
    
    .account-menu a.active {
        background: var(--primary);
        color: var(--white) !important;
    }
    
    .account-content {
        padding: var(--spacing-md);
    }
    
    /* Order Cards */
    .order-card {
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
    }
    
    .order-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .order-items {
        gap: var(--spacing-sm);
    }
    
    .order-item {
        grid-template-columns: 50px 1fr;
        gap: var(--spacing-sm);
    }
    
    .order-item-image {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   BLOG SAYFASI MOBİL
   ============================================ */

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .blog-card {
        border-radius: var(--border-radius);
    }
    
    .blog-card-image {
        aspect-ratio: 16/9;
    }
    
    .blog-card-content {
        padding: var(--spacing-md);
    }
    
    .blog-card-title {
        font-size: var(--font-size-base);
    }
    
    /* Blog Detail */
    .blog-detail {
        padding: var(--spacing-md);
    }
    
    .blog-detail h1 {
        font-size: var(--font-size-xl);
    }
    
    .blog-content {
        font-size: var(--font-size-sm);
    }
    
    .blog-content h2 {
        font-size: var(--font-size-lg);
    }
    
    .blog-content h3 {
        font-size: var(--font-size-base);
    }
}

/* ============================================
   İLETİŞİM SAYFASI MOBİL
   ============================================ */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-info {
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
    }
    
    .contact-info-item {
        padding: var(--spacing-sm) 0;
    }
    
    .contact-info-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-form {
        padding: var(--spacing-md);
        border-radius: var(--border-radius);
    }
    
    .map-container {
        height: 250px;
        border-radius: var(--border-radius);
    }
}

/* ============================================
   SSS SAYFASI MOBİL
   ============================================ */

@media (max-width: 768px) {
    .faq-item {
        border-radius: var(--border-radius);
        margin-bottom: var(--spacing-sm);
    }
    
    .faq-question {
        padding: var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .faq-question i {
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   NEWSLETTER MOBİL
   ============================================ */

@media (max-width: 768px) {
    .newsletter-section {
        padding: var(--spacing-xl) 0;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .newsletter-text h3 {
        font-size: var(--font-size-lg);
    }
    
    .newsletter-text p {
        font-size: var(--font-size-sm);
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        width: 100%;
        text-align: center;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* ============================================
   BREADCRUMB MOBİL
   ============================================ */

@media (max-width: 768px) {
    .breadcrumb {
        padding: var(--spacing-sm) 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .breadcrumb::-webkit-scrollbar {
        display: none;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        font-size: var(--font-size-xs);
    }
    
    .breadcrumb i {
        font-size: 8px;
        margin: 0 6px;
    }
}

/* ============================================
   PAGİNATION MOBİL
   ============================================ */

@media (max-width: 576px) {
    .pagination {
        gap: 4px;
    }
    
    .pagination a,
    .pagination span {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-sm);
    }
    
    .pagination .prev,
    .pagination .next {
        padding: 0 12px;
        width: auto;
    }
}

/* ============================================
   MODAL MOBİL
   ============================================ */

@media (max-width: 576px) {
    .modal-content {
        width: calc(100% - 32px);
        max-width: none;
        max-height: calc(100vh - 32px);
        max-height: calc(100dvh - 32px);
        margin: 16px;
        border-radius: var(--border-radius);
    }
    
    .modal-header {
        padding: var(--spacing-md);
    }
    
    .modal-header h3 {
        font-size: var(--font-size-base);
    }
    
    .modal-body {
        padding: var(--spacing-md);
    }
    
    .modal-footer {
        padding: var(--spacing-md);
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* ============================================
   ALERT & TOAST MOBİL
   ============================================ */

@media (max-width: 576px) {
    .alert {
        padding: var(--spacing-md);
        font-size: var(--font-size-sm);
        border-radius: var(--border-radius);
    }
    
    .toast {
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 80px;
        transform: none;
        border-radius: var(--border-radius);
        padding: var(--spacing-md);
        font-size: var(--font-size-sm);
    }
    
    .flash-message {
        margin: var(--spacing-sm);
        padding: var(--spacing-md);
        font-size: var(--font-size-sm);
        border-radius: var(--border-radius);
    }
}

/* ============================================
   EMPTY STATE MOBİL
   ============================================ */

@media (max-width: 576px) {
    .empty-state {
        padding: var(--spacing-xl);
    }
    
    .empty-state i {
        font-size: 48px;
    }
    
    .empty-state h3 {
        font-size: var(--font-size-lg);
    }
    
    .empty-state p {
        font-size: var(--font-size-sm);
    }
}

/* ============================================
   DARK MODE MOBİL DÜZELTMELER
   ============================================ */

@media (max-width: 768px) {
    .dark-mode .main-nav {
        background: #1E1E1E !important;
    }
    
    .dark-mode .nav-menu li {
        border-color: #333333;
    }
    
    .dark-mode .dropdown-menu {
        background: #262626 !important;
    }
    
    .dark-mode .mobile-search {
        background: #262626;
    }
    
    .dark-mode .mobile-search input {
        background: #1E1E1E;
        border-color: #3D3D3D;
        color: #E0E0E0;
    }
    
    .dark-mode .account-menu a {
        background: #333333;
        color: #C4C4C4 !important;
    }
    
    .dark-mode .account-menu a.active {
        background: var(--primary);
        color: #1E1E1E !important;
    }
}
