        :root {
            --gold: #d4af37;
            --gold-light: #f4e4bc;
            --gold-dark: #a68a2a;
            --dark: #0a0a0a;
            --darker: #050505;
            --light: #fdfdfd;
            --cream: #faf8f5;

            /* Light mode colors */
            --bg-primary: #faf8f5;
            --bg-secondary: #f0ede8;
            --text-primary: #1f2937;
            --text-secondary: #6b7280;
            --card-bg: #ffffff;
            --border-color: #e5e7eb;
        }

        [data-theme="dark"] {
            --bg-primary: #0a0a0a;
            --bg-secondary: #1a1a1a;
            --text-primary: #f3f4f6;
            --text-secondary: #9ca3af;
            --card-bg: #1f1f1f;
            --border-color: #374151;
            --cream: #1a1a1a;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            color: var(--text-primary);
            -webkit-tap-highlight-color: transparent;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease, direction 0.3s ease;
        }

        [data-theme="dark"] body {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        /* RTL Support for Arabic */
        body[dir="rtl"] {
            direction: rtl;
        }

        body[dir="rtl"] .whatsapp-float {
            left: 25px;
            right: auto;
        }

        body[dir="rtl"] .text-gold-gradient {
            letter-spacing: 0.05em;
        }

        h1, h2, h3, .serif-font {
            font-family: 'Playfair Display', serif;
        }

        .elegant-font {
            font-family: 'Cormorant Garamond', serif;
        }

        /* Luxurious Gold Gradient */
        .text-gold-gradient {
            background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: shimmer 3s ease-in-out infinite;
            background-size: 200% auto;
            letter-spacing: 0.1em;
            font-weight: 500;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 200% center; }
        }

        /* Gold Border Glow */
        .gold-glow {
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
        }

        /* Custom Scrollbar */
        .hide-scrollbar::-webkit-scrollbar { display: none; }
        .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 10px; }

        /* Animations */
        .fade-in {
            animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            opacity: 0;
        }

        .fade-in-up {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            opacity: 0;
        }

        .stagger-1 { animation-delay: 0.1s; }
        .stagger-2 { animation-delay: 0.2s; }
        .stagger-3 { animation-delay: 0.3s; }
        .stagger-4 { animation-delay: 0.4s; }

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

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

        /* Lazy Loading Styles */
        img[data-src] {
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        img.lazy-loaded {
            opacity: 1;
        }

        /* Placeholder blur effect */
        .lazy-placeholder {
            background: linear-gradient(135deg, #f5f5f5 25%, #e8e8e8 50%, #f5f5f5 75%);
            background-size: 200% 200%;
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        /* Filter Styles */
        .filter-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1.5px solid #e5e7eb;
            background: white;
            color: #4b5563;
            white-space: nowrap;
        }

        .filter-chip:hover {
            border-color: #d4af37;
            background: rgba(212, 175, 55, 0.05);
        }

        .filter-chip.active {
            background: linear-gradient(135deg, #d4af37, #b8962e);
            color: white;
            border-color: #d4af37;
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
        }

        .filter-chip .scent-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
            flex-shrink: 0;
        }

        .animate-fade-in {
            animation: fadeIn 0.3s ease-out;
        }

        #filter-panel {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease, padding 0.3s ease;
        }

        #filter-panel.show {
            max-height: 70vh;
            opacity: 1;
            overflow-y: auto;
        }

        /* Custom scrollbar for filter panel */
        #scent-filter-container::-webkit-scrollbar,
        #filter-panel::-webkit-scrollbar {
            width: 4px;
        }

        #scent-filter-container::-webkit-scrollbar-thumb,
        #filter-panel::-webkit-scrollbar-thumb {
            background: #d4af37;
            border-radius: 4px;
        }

        /* Mobile adjustments */
        @media (max-width: 640px) {
            .filter-chip {
                font-size: 0.65rem;
                padding: 0.2rem 0.4rem;
            }
            .filter-chip .scent-indicator {
                width: 8px;
                height: 8px;
            }
            #scent-filter-container {
                max-height: 100px !important;
            }
        }

        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: #6b7280;
        }

        .no-results i {
            font-size: 4rem;
            color: #d4af37;
            margin-bottom: 1rem;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes pulse-glow {
            0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
            50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .hero-pattern {
            position: absolute;
            inset: 0;
            background-image:
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            animation: pulse-bg 8s ease-in-out infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .hero-particles {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            animation: particle-float 15s infinite;
            opacity: 0.6;
        }

        @keyframes particle-float {
            0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 500px;
            padding-top: 80px;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 60px;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* Product Cards - Enhanced */
        .product-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.1) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .product-card:hover::before {
            opacity: 1;
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(212, 175, 55, 0.2);
        }

        /* Perfume Card Special Style */
        .perfume-card {
            background: linear-gradient(145deg, #ffffff 0%, #faf8f5 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .perfume-card::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
            transform: rotate(45deg);
            transition: transform 0.6s ease;
            pointer-events: none;
        }

        .perfume-card:hover::after {
            transform: rotate(45deg) translate(50%, 50%);
        }

        .perfume-icon-container {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto;
        }

        .perfume-bottle {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .perfume-bottle svg {
            width: 50px;
            height: 70px;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .whatsapp-btn:hover::before {
            opacity: 1;
        }

        .whatsapp-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 100;
            animation: float 3s ease-in-out infinite;
        }

        .whatsapp-float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            transition: all 0.3s ease;
        }

        .whatsapp-float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
        }

        /* Loader */
        .loader-container {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
        }

        .loader-logo {
            animation: pulse-glow 2s ease-in-out infinite;
        }

        .loader-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(212, 175, 55, 0.2);
            border-top-color: var(--gold);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Navigation Pills */
        .nav-pill {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-pill.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--gold-light));
            border-radius: 2px;
        }

        /* Lightbox Enhanced */
        .lightbox-backdrop {
            backdrop-filter: blur(10px);
        }

        /* Section Divider */
        .section-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
            margin: 2rem 0;
        }

        /* Scent Notes Indicator */
        .scent-notes {
            display: flex;
            gap: 4px;
            justify-content: center;
            margin-top: 8px;
        }

        .scent-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            opacity: 0.7;
        }

        /* Responsive - Enhanced Mobile Experience */
        @media (max-width: 768px) {
            .hero-section { min-height: 60vh; }
            .whatsapp-float { bottom: 15px; right: 15px; }
            .whatsapp-float-btn { width: 50px; height: 50px; }

            /* Disable particle animations on mobile for better performance */
            .hero-particles {
                display: none !important;
            }

            /* Better touch targets on mobile */
            .product-card { min-height: 280px; }
            .nav-pill { min-height: 44px; }

            /* Optimize animations for mobile */
            .product-card:hover { transform: translateY(-4px) scale(1.01); }

            /* Prevent layout shift */
            .hero-slider { min-height: 400px; }

            /* Logo adjustments for mobile */
            .text-gold-gradient {
                font-size: 2.5rem !important;
                letter-spacing: 0.08em;
            }

            /* Improve product grid spacing */
            #product-grid {
                gap: 1rem !important;
            }

            /* Better card sizing on small screens */
            .perfume-card {
                padding: 1.25rem !important;
            }
        }

        /* Small mobile devices (< 400px) */
        @media (max-width: 400px) {
            .text-gold-gradient {
                font-size: 2rem !important;
                letter-spacing: 0.05em;
            }

            #product-grid {
                gap: 0.75rem !important;
            }
        }

        /* Tablet optimization */
        @media (min-width: 768px) and (max-width: 1024px) {
            .product-card { transition: transform 0.3s ease; }

            #product-grid {
                gap: 1.25rem !important;
            }
        }

        /* Loading state for images - REMOVED */

        /* Category Hero Image Styles */
        .category-hero {
            margin-bottom: 3rem;
        }

        .category-hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 0 auto 2rem;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(212, 175, 55, 0.2);
            border: 3px solid #d4af37;
        }

        .category-hero-image {
            width: 100%;
            height: 240px;
            min-height: 280px;
            object-fit: contain;
            display: block;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            background: linear-gradient(135deg, #faf8f5 0%, #f0ede8 100%);
        }

        .category-hero-image-wrapper:hover .category-hero-image {
            transform: scale(1.05);
        }

        .category-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.4) 100%);
            pointer-events: none;
        }

        .category-hero-content {
            text-align: center;
        }

        .category-hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0a0a0a;
            margin-bottom: 0.5rem;
        }

        .category-hero-subtitle {
            color: #d4af37;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 600;
        }

        /* Responsive Hero Images */
        @media (max-width: 768px) {
            .category-hero-image-wrapper {
                max-width: 100%;
                border-radius: 16px;
                border-width: 2px;
            }

            .category-hero-image {
                height: 180px;
                min-height: 180px;
            }

            .category-hero-title {
                font-size: 1.75rem;
            }

            .category-hero-subtitle {
                font-size: 0.875rem;
            }

            .category-hero {
                margin-bottom: 2rem;
            }
        }

        @media (max-width: 400px) {
            .category-hero-image {
                height: 140px;
                min-height: 140px;
            }

            .category-hero-title {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .category-hero-image {
                height: 200px;
            }
        }

        /* ===== SEPET SİSTEMİ CSS ===== */

        /* Sepet Badge (Floating Button) */
        .cart-float {
            position: fixed;
            bottom: 100px;
            right: 25px;
            z-index: 1001;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 8px 40px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .cart-float:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6), 0 12px 50px rgba(0, 0, 0, 0.3);
        }

        .cart-float i {
            font-size: 24px;
            color: white;
        }

        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            color: white;
            font-size: 12px;
            font-weight: bold;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid white;
            box-shadow: 0 2px 10px rgba(220, 38, 38, 0.5);
            animation: cartBadgePop 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes cartBadgePop {
            0% { transform: scale(0); }
            50% { transform: scale(1.3); }
            100% { transform: scale(1); }
        }

        /* Sepet Popup/Modal */
        .cart-modal {
            position: fixed;
            top: 0;
            right: -500px;
            width: 100%;
            max-width: 480px;
            height: 100vh;
            background: linear-gradient(180deg, #faf8f5 0%, #f5f3ef 100%);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            z-index: 1002;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .cart-modal.active {
            right: 0;
        }

        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        .cart-header {
            padding: 24px;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #d4af37;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #d4af37;
        }

        .cart-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 600;
            margin: 0;
        }

        .cart-close {
            background: none;
            border: none;
            color: #d4af37;
            font-size: 28px;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .cart-close:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: rotate(90deg);
        }

        .cart-content {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .cart-empty i {
            font-size: 80px;
            color: #d4af37;
            opacity: 0.3;
            margin-bottom: 20px;
        }

        .cart-empty p {
            font-size: 18px;
            font-weight: 500;
            color: #888;
        }

        /* Cart Items */
        .cart-item {
            background: white;
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            gap: 16px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cart-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #d4af37 0%, #aa771c 100%);
        }

        .cart-item:hover {
            border-color: #d4af37;
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        }

        .cart-item-img {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: contain;
            background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
            padding: 8px;
        }

        .cart-item-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cart-item-name {
            font-weight: 600;
            font-size: 16px;
            color: #0a0a0a;
            line-height: 1.3;
        }

        .cart-item-code {
            font-size: 13px;
            color: #d4af37;
            font-weight: 500;
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 8px;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f5f5f5;
            border-radius: 8px;
            padding: 4px;
        }

        .quantity-btn {
            width: 28px;
            height: 28px;
            border-radius: 6px;
            border: none;
            background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
            color: white;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .quantity-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
        }

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

        .quantity-value {
            font-weight: 600;
            font-size: 15px;
            min-width: 30px;
            text-align: center;
            color: #0a0a0a;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: #dc2626;
            font-size: 20px;
            cursor: pointer;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .cart-item-remove:hover {
            background: #fee2e2;
            transform: scale(1.1);
        }

        /* Cart Footer */
        .cart-footer {
            padding: 20px 24px;
            background: white;
            border-top: 2px solid #f0f0f0;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        }

        .cart-note {
            margin-bottom: 16px;
        }

        .cart-note textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            resize: none;
            transition: all 0.3s ease;
        }

        .cart-note textarea:focus {
            outline: none;
            border-color: #d4af37;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        .cart-actions {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .cart-btn {
            padding: 14px 24px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .cart-btn-whatsapp {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
        }

        .cart-btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .cart-btn-clear {
            background: linear-gradient(135deg, #f5f5f5 0%, #e5e5e5 100%);
            color: #666;
        }

        .cart-btn-clear:hover {
            background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
            color: #dc2626;
        }

        /* Add to Cart Button */
        .add-to-cart-btn {
            background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
        }

        .add-to-cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
        }

        .add-to-cart-btn i {
            font-size: 16px;
        }

        /* Category Labels in Cart */
        .cart-category-label {
            font-size: 11px;
            font-weight: 600;
            padding: 4px 8px;
            border-radius: 6px;
            display: inline-block;
            margin-bottom: 4px;
        }

        .cart-category-men { background: #dbeafe; color: #1e40af; }
        .cart-category-women { background: #fce7f3; color: #be185d; }
        .cart-category-unisex { background: #f3e8ff; color: #7c3aed; }
        .cart-category-arabic { background: #fef3c7; color: #92400e; }
        .cart-category-home { background: #d1fae5; color: #065f46; }

        /* RTL Support for Cart */
        body[dir="rtl"] .cart-modal {
            right: auto;
            left: -500px;
        }

        body[dir="rtl"] .cart-modal.active {
            left: 0;
            right: auto;
        }

        body[dir="rtl"] .cart-float {
            right: auto;
            left: 25px;
        }

        body[dir="rtl"] .cart-item::before {
            left: auto;
            right: 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cart-modal {
                max-width: 100%;
            }

            .cart-float {
                width: 56px;
                height: 56px;
                bottom: 90px;
                right: 20px;
            }

            .cart-float i {
                font-size: 22px;
            }

            body[dir="rtl"] .cart-float {
                left: 20px;
            }
        }

        /* Toast Notification */
        .toast-container {
            position: fixed;
            top: 100px;
            right: 20px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            gap: 10px;
            pointer-events: none;
        }

        .toast {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #fff;
            padding: 16px 24px;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.4);
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 280px;
            max-width: 400px;
            opacity: 0;
            transform: translateX(100px);
            animation: toast-slide-in 0.3s ease forwards;
            pointer-events: auto;
            border-left: 4px solid #d4af37;
        }

        .toast.toast-hide {
            animation: toast-slide-out 0.3s ease forwards;
        }

        .toast-icon {
            font-size: 20px;
            color: #d4af37;
            flex-shrink: 0;
        }

        .toast-message {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
        }

        @keyframes toast-slide-in {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes toast-slide-out {
            to {
                opacity: 0;
                transform: translateX(100px);
            }
        }

        /* RTL Support for Toast */
        body[dir="rtl"] .toast-container {
            left: 20px;
            right: auto;
        }

        body[dir="rtl"] .toast {
            transform: translateX(-100px);
            border-left: none;
            border-right: 4px solid #d4af37;
        }

        body[dir="rtl"] .toast.toast-hide {
            animation: toast-slide-out-rtl 0.3s ease forwards;
        }

        @keyframes toast-slide-out-rtl {
            to {
                opacity: 0;
                transform: translateX(-100px);
            }
        }

        @media (max-width: 768px) {
            .toast-container {
                top: 80px;
                right: 15px;
                left: 15px;
                width: auto;
            }

            .toast {
                min-width: auto;
                max-width: 100%;
            }

            body[dir="rtl"] .toast-container {
                left: 15px;
                right: 15px;
            }
        }

        /* Dark Mode Styles */
        [data-theme="dark"] .product-card {
            background: var(--card-bg);
            border-color: var(--border-color);
        }

        [data-theme="dark"] .nav-pill {
            background: #1f1f1f;
            color: #9ca3af;
        }

        [data-theme="dark"] .nav-pill.active {
            background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
            color: #000;
        }

        [data-theme="dark"] .category-hero-image {
            background: #1a1a1a;
        }

        [data-theme="dark"] input[type="text"] {
            background: #1f1f1f;
            border-color: #374151;
            color: #f3f4f6;
        }

        [data-theme="dark"] input[type="text"]::placeholder {
            color: #6b7280;
        }

        [data-theme="dark"] .cart-modal {
            background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
        }

        [data-theme="dark"] .cart-item {
            background: #1f1f1f;
            border-color: #374151;
        }

        /* Dark Mode Toggle Button */
        .theme-toggle {
            position: fixed;
            top: 90px;
            right: 25px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4af37 0%, #aa771c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
        }

        .theme-toggle i {
            font-size: 22px;
            color: #0a0a0a;
            transition: transform 0.3s ease;
        }

        .theme-toggle:hover i {
            transform: rotate(20deg);
        }

        body[dir="rtl"] .theme-toggle {
            left: 25px;
            right: auto;
        }

        @media (max-width: 768px) {
            .theme-toggle {
                top: 80px;
                right: 20px;
                width: 45px;
                height: 45px;
            }

            .theme-toggle i {
                font-size: 20px;
            }

            body[dir="rtl"] .theme-toggle {
                left: 20px;
            }
        }

        /* Smooth Scroll Animations */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        .scroll-fade-in {
            animation: scrollFadeIn 0.8s ease-out forwards;
        }

        @keyframes scrollFadeIn {
            from {
                opacity: 0;
                transform: translateY(40px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    z-index: 9999;
    transition: bottom 0.5s ease;
    border-top: 2px solid #d4af37;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 40px;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text h4 {
    color: #d4af37;
    margin: 0 0 5px 0;
    font-size: 18px;
}

.cookie-text p {
    color: #ccc;
    margin: 0;
    font-size: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.cookie-accept {
    background: #d4af37;
    color: #000;
}

.cookie-accept:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.cookie-reject {
    background: #333;
    color: #fff;
}

.cookie-reject:hover {
    background: #444;
}

.cookie-info {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.cookie-info:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* KVKK & Contact Modal */
.kvkk-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: linear-gradient(180deg, #faf8f5 0%, #f5f3ef 100%);
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.kvkk-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.kvkk-header {
    padding: 24px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #d4af37;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kvkk-header h2 {
    margin: 0;
    font-size: 20px;
    font-family: 'Playfair Display', serif;
}

.kvkk-close {
    background: none;
    border: none;
    color: #d4af37;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.kvkk-close:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: rotate(90deg);
}

.kvkk-content {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.kvkk-section {
    margin-bottom: 24px;
}

.kvkk-section h3 {
    color: #0a0a0a;
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.kvkk-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Contact Map */
.contact-map {
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    display: block;
}

/* Contact Form */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 20px;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    color: #0a0a0a;
    margin-bottom: 4px;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.contact-submit {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .kvkk-modal {
        width: 95%;
        max-height: 90vh;
    }
}
