:root {
    /* 🎨 LUXURY DESIGN SYSTEM v2.0 */
    /* Primary Palette */
    --primary-color: #D4AF37; /* Luxury Gold */
    --primary-dark: #B8860B;
    --primary-light: #F4E7C1;
    --primary-ultra-light: #FFFEF7;
    
    /* Neutral Sophistication */
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --charcoal-medium: #404040;
    --gray-elegant: #6B7280;
    --gray-light: #F9FAFB;
    --gray-medium: #E5E7EB;
    
    /* Accent Colors */
    --rose-gold: #E8B4B8;
    --pearl: #F8F6F0;
    --cream: #FFF8E7;
    --champagne: #F7E7CE;
    
    /* Semantic Colors */
    --success: #059669;
    --warning: #D97706;
    --error: #DC2626;
    --info: #0284C7;
    
    /* Advanced Gradients */
    --gradient-luxury: linear-gradient(135deg, #D4AF37 0%, #F4E7C1 50%, #D4AF37 100%);
    --gradient-elegance: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    --gradient-soft: linear-gradient(135deg, #F9FAFB 0%, #FFFEF7 100%);
    --gradient-sunset: linear-gradient(135deg, #D4AF37 0%, #E8B4B8 100%);
    --gradient-mesh: radial-gradient(circle at 20% 50%, #D4AF37 0%, transparent 50%), 
                     radial-gradient(circle at 80% 20%, #E8B4B8 0%, transparent 50%),
                     radial-gradient(circle at 40% 80%, #F4E7C1 0%, transparent 50%);
    
    /* 🌈 HOLOGRAPHIC & NEO-LUXURY */
    --gradient-hologram: linear-gradient(45deg, #D4AF37, #E8B4B8, #F4E7C1, #D4AF37);
    --gradient-chrome: linear-gradient(90deg, #C9C9C9 0%, #F8F8F8 50%, #C9C9C9 100%);
    --gradient-rainbow: linear-gradient(45deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    --gradient-aurora: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-cosmic: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-iridescent: linear-gradient(45deg, #ffd89b 0%, #19547b 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    
    /* Shadows & Effects */
    --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.08);
    --shadow-medium: 0 8px 30px rgba(26, 26, 26, 0.12);
    --shadow-strong: 0 20px 40px rgba(26, 26, 26, 0.15);
    --shadow-luxury: 0 25px 60px rgba(212, 175, 55, 0.15);
    --shadow-inset: inset 0 2px 4px rgba(26, 26, 26, 0.06);
    
    /* Typography */
    --font-luxury: 'Playfair Display', Georgia, serif;
    --font-modern: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
    --font-accent: 'Poppins', sans-serif;
    
    /* Spacing & Layout */
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Glass & Blur Effects */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --blur-strong: blur(20px);
    --blur-medium: blur(10px);
    
    /* Legacy Support */
    --text-color: var(--charcoal);
    --text-light: var(--gray-elegant);
    --bg-color: var(--pearl);
    --white: #FFFFFF;
    --black: var(--charcoal);
    --secondary-color: var(--cream);
    --accent-color: var(--rose-gold);
}

/* 🌟 MODERN BASE RESET & LUXURY FOUNDATION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-modern);
    background: var(--pearl);
    background-image: var(--gradient-mesh);
    background-attachment: fixed;
    color: var(--charcoal);
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.01em;
}

/* 💎 Elegant Selection */
::selection {
    background: var(--gradient-luxury);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-luxury);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* 💎 LUXURY GLASSMORPHISM HEADER */
header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--blur-strong);
    -webkit-backdrop-filter: var(--blur-strong);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium);
}

.container {
    width: min(1400px, 90%);
    margin: 0 auto;
    padding: 0 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* 🔥 LUXURY LOGO DESIGN */
.logo {
    font-family: var(--font-luxury);
    font-size: 2rem;
    font-weight: 600;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-luxury);
    transition: var(--transition);
    border-radius: 2px;
}

.logo:hover::after {
    width: 100%;
}

/* 🎆 PREMIUM NAVIGATION */
/* 🎆 PREMIUM NAVIGATION */
.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-luxury);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::before {
    width: 100%;
}

/* 🌆 LUXURY USER ACTIONS */
.user-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-actions form {
    display: flex;
    align-items: center;
    position: relative;
}

.user-actions input[type="text"] {
    padding: 0.8rem 3rem 0.8rem 1.2rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius);
    background: var(--white);
    font-size: 0.9rem;
    width: 200px;
    transition: var(--transition);
    font-family: var(--font-modern);
}

.user-actions input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    width: 240px;
}

.user-actions button[type="submit"] {
    position: absolute;
    right: 0.8rem;
    background: none;
    border: none;
    color: var(--gray-elegant);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.user-actions button[type="submit"]:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.user-actions a {
    color: var(--charcoal);
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.user-actions a:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

/* Cart Badge */
.user-actions a span {
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    background: var(--gradient-luxury);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    min-width: 1.2rem;
    text-align: center;
    font-weight: 600;
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* 🔥 LUXURY DROPDOWN SYSTEM */
.dropdown {
    position: relative;
}

/* 💻 DESKTOP NAVİGASYON KESİN GÖRÜNÜR */
@media screen and (min-width: 769px) {
    .nav-links {
        display: flex !important; /* Desktop'ta kesinlikle görünür */
        position: static !important;
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
        width: auto !important;
        flex-direction: row !important;
        margin-top: 0 !important;
        gap: 3rem;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: none !important;
    }
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    backdrop-filter: var(--blur-medium);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--gray-medium);
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background: var(--cream);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.dropdown > a i {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    transition: var(--transition);
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

/* 📱 LUXURY MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 0.8rem;
    cursor: pointer;
    color: var(--charcoal);
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    transition: var(--transition);
    z-index: -1;
}

.mobile-menu-toggle:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle:hover::before {
    left: 0;
}

.mobile-menu-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* 🎬 CINEMATIC LUXURY HERO */
.hero {
    position: relative;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(212, 175, 55, 0.3) 100%),
        var(--gradient-mesh),
        url('https://images.unsplash.com/photo-1596462502278-27bfdd403348?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-aurora);
    opacity: 0.15;
    animation: aurora-dance 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 60% 10%, rgba(232, 180, 184, 0.08) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 200px 200px, 250px 250px;
    animation: float-particles 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* 🌌 AURORA & PARTICLE ANIMATIONS */
@keyframes aurora-dance {
    0% {
        background: var(--gradient-aurora);
        transform: translateX(-20px) scale(1.05) rotate(1deg);
        opacity: 0.1;
    }
    50% {
        background: var(--gradient-cosmic);
        transform: translateX(0px) scale(1) rotate(0deg);
        opacity: 0.2;
    }
    100% {
        background: var(--gradient-iridescent);
        transform: translateX(20px) scale(1.02) rotate(-1deg);
        opacity: 0.15;
    }
}

@keyframes float-particles {
    0% {
        transform: translateY(0px) rotate(0deg) translateX(0px);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) translateX(10px);
    }
    66% {
        transform: translateY(-60px) rotate(240deg) translateX(-10px);
    }
    100% {
        transform: translateY(-100px) rotate(360deg) translateX(0px);
    }
}

@keyframes heroFloat {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

/* 🎆 LUXURY HERO CONTENT */
.hero h1 {
    font-family: var(--font-luxury);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-shadow: 0 8px 32px rgba(26, 26, 26, 0.3);
    background: linear-gradient(135deg, #FFFFFF 0%, #F4E7C1 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroGlow 3s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes heroGlow {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero p {
    font-family: var(--font-modern);
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 1.5px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: heroSlide 3s ease-out 0.5s both;
    position: relative;
    z-index: 2;
}

@keyframes heroSlide {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 0.95; transform: translateY(0); }
}

/* 🔥 ULTRA LUXURY BUTTON SYSTEM */
.btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--gradient-luxury);
    color: var(--charcoal);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: var(--font-modern);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--white);
    background: var(--gradient-elegance);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: translateY(-2px) scale(1.01);
}

/* Button Variants */
.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    color: var(--charcoal);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--gradient-luxury);
    color: var(--charcoal);
    border-color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: var(--blur-medium);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-4px) scale(1.02);
}

/* Button Sizes */
.btn-sm {
    padding: 0.6rem 1.8rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.4rem 4rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.products-section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 1rem auto 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.8rem;
    padding: 0;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-hologram);
    transform: scaleX(0);
    transition: var(--transition);
    animation: hologram-slide 3s linear infinite;
}

.product-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-hologram);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
    filter: blur(15px);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover::after {
    opacity: 0.3;
    animation: glow-pulse 2s ease-in-out infinite alternate;
}

/* 🎭 MORPHIC ANIMATIONS */
@keyframes hologram-slide {
    0% { 
        transform: scaleX(0) translateX(-100%); 
        background: var(--gradient-hologram);
    }
    50% { 
        transform: scaleX(1) translateX(0%); 
        background: var(--gradient-aurora);
    }
    100% { 
        transform: scaleX(0) translateX(100%); 
        background: var(--gradient-cosmic);
    }
}

@keyframes float-morph {
    0%, 100% {
        transform: translateY(-15px) rotateX(5deg) scale(1);
        border-radius: var(--border-radius-lg);
    }
    33% {
        transform: translateY(-20px) rotateX(8deg) scale(1.02);
        border-radius: 30px 10px 30px 10px;
    }
    66% {
        transform: translateY(-18px) rotateX(3deg) scale(1.01);
        border-radius: 10px 30px 10px 30px;
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.2;
        filter: blur(15px) hue-rotate(0deg);
    }
    100% {
        opacity: 0.4;
        filter: blur(20px) hue-rotate(90deg);
    }
}

/* 🌟 NEO-BRUTALIST ELEMENTS */
.card-neo {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
    border: 2px solid var(--primary-color);
    position: relative;
}

.card-neo::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-iridescent);
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 20px 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.card-neo:hover::before {
    opacity: 0.3;
    animation: neo-glow 2s ease-in-out infinite alternate;
}

@keyframes neo-glow {
    0% { filter: blur(5px) saturate(1); }
    100% { filter: blur(10px) saturate(1.5); }
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: var(--secondary-color);
    transition: var(--transition);
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* 📦 ÜRÜN LİSTESİ - RESPONSİVE FOTOĞRAF */
.product-image-container {
    width: 100%;
    aspect-ratio: 2 / 3; /* 300x450 oranı = 2:3 */
    max-width: 300px;
    overflow: hidden;
    background-color: #f9f9f9;
    position: relative;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    filter: contrast(1.05) brightness(1.02) saturate(1.05);
}

.product-image-container img.error-image {
    filter: grayscale(0.3) contrast(0.9);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-image-wrapper {
    overflow: hidden;
    position: relative;
}

.product-info {
    padding: 1.8rem;
    text-align: center;
    background: var(--white);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.product-price {
    color: #ff4646;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0;
    margin-bottom: 0.4rem;
    font-family: Arial, sans-serif;
}

/* 🏆 LUXURY PRODUCT INFO */
.product-info {
    padding: 0.6rem;
    text-align: left;
    background: var(--white);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 0.3rem;
    color: #3a3a3a;
    letter-spacing: 0;
    line-height: 1.15;
    transition: var(--transition);
    min-height: auto;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.product-card:hover .product-title {
    color: var(--primary-color);
}

.product-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    font-family: var(--font-modern);
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-actions {
    display: flex;
    gap: 0.4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.6rem;
    position: relative;
    z-index: 20 !important; /* Daha da artırdık */
    pointer-events: auto !important;
}

.product-actions .btn,
.product-actions form {
    flex: 1;
    min-width: calc(50% - 0.2rem);
    position: relative;
    z-index: 21 !important;
    pointer-events: auto !important;
}

.product-actions .btn {
    cursor: pointer !important;
}

.product-actions form .btn {
    width: 100%;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0;
}

.product-actions .btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    border-radius: 4px;
    min-width: auto;
    font-weight: 600;
    letter-spacing: 0;
}

.product-card-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1.5rem;
}

/* Favorite Button */
.fav-btn-form {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    z-index: 10;
}

.fav-btn {
    background: white;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 0.9rem;
    padding: 0.4rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-btn:hover {
    background: #ff4646;
    color: white;
    border-color: #ff4646;
}

/* Karşılaştır Butonu */
.btn-add-compare {
    position: absolute;
    top: 0.6rem;
    right: 2.8rem;
    background: white;
    border: 1px solid #e0e0e0;
    color: #333;
    font-size: 0.85rem;
    padding: 0.4rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.btn-add-compare:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.fav-btn i[style*="red"] {
    color: #DC2626 !important;
}

/* Stock Status */
.btn-disabled {
    background: var(--gray-medium) !important;
    color: var(--gray-elegant) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Add to Cart Form */
.add-to-cart-form {
    display: inline-block;
}

.add-to-cart-form button {
    transition: var(--transition);
}

.add-to-cart-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 🌟 ULTRA LUXURY FOOTER */
footer {
    background: var(--gradient-elegance);
    color: var(--white);
    padding: 6rem 0 3rem;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-luxury);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 180, 184, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section {
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-weight: 300;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 300;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Dropdown Menü Stili */
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 5px;
    top: 100%;
    left: 0;
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-dark);
    padding-left: 20px;
}
.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDropdown 0.3s ease-out;
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: #FFF;
    animation: none;
}

.whatsapp-icon {
    margin-top: 2px;
}

/* --- HOME PAGE STYLES (Refactored from Inline) --- */

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 85vh;
    min-height: 600px;
}

.hero-slider::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 5;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 42, 38, 0.7) 0%, rgba(139, 115, 85, 0.4) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3.5rem 4rem;
    border-radius: var(--border-radius-lg);
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.slide-desc {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    opacity: 0.95;
}

.slide-btn {
    font-size: 1rem;
    padding: 15px 40px;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Page Header (Breadcrumb area) */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fff 100%);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
}

.page-header h1 {
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.breadcrumb-link {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary-color);
}

/* Shop Layout */
.shop-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.shop-sidebar {
    flex: 1;
    min-width: 280px;
}

.sidebar-widget {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(201, 168, 108, 0.1);
}

.widget-title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 500;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-title {
    font-size: 1rem;
    margin-bottom: 10px;
}

.price-inputs {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-color);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.clear-filters {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.clear-filters:hover {
    color: var(--primary-dark);
}

/* Shop Content & Grid */
.shop-content {
    flex: 3;
    min-width: 300px;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
}

.shop-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 500;
}

.result-count {
    color: var(--text-light);
    font-size: 0.95rem;
    background: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
}

.product-grid-dynamic {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* Product Card Extras */
.product-card {
    position: relative;
}

.fav-btn-form {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.fav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.fav-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-medium);
}

.fav-btn i {
    font-size: 1.1rem;
}

.product-image-bg {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--secondary-color);
    transition: var(--transition);
    overflow: hidden;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    -webkit-background-size: cover;
    background-attachment: local;
}

.product-card:hover .product-image-bg {
    transform: scale(1.05);
}

.product-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 15px;
}

.btn-sm {
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-secondary {
    background: var(--gradient-dark);
    color: var(--white);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 42, 38, 0.3);
}

.btn-disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

/* Toast Notification (For AJAX Cart) */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--success) 0%, #5a9a7a 100%);
    color: white;
    padding: 18px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-strong);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition);
    pointer-events: none;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-notification.error {
    background: linear-gradient(135deg, var(--error) 0%, #b85a53 100%);
}

/* --- SKIN ANALYSIS WIZARD --- */
.skin-analysis-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.skin-analysis-modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow-strong);
    position: relative;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(201, 168, 108, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #fff 100%);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-header h2 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--text-color);
    font-size: 1.6rem;
    font-weight: 500;
}

.close-modal {
    color: var(--text-light);
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: var(--text-color);
    background: var(--secondary-color);
}

.modal-body {
    padding: 40px;
    min-height: 300px;
}

.wizard-step {
    display: none;
    text-align: center;
}

.wizard-step.active {
    display: block;
    animation: wizardFadeIn 0.5s ease-out;
}

@keyframes wizardFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.wizard-question {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.wizard-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.wizard-option {
    background: var(--bg-color);
    border: 2px solid transparent;
    padding: 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--text-color);
}

.wizard-option:hover {
    border-color: var(--primary-color);
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.wizard-option.selected {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--primary-dark);
}

.wizard-actions {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
}

.wizard-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.btn-prev {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-prev:hover {
    background-color: #e8e5e0;
}

.btn-next {
    background: var(--gradient-gold);
    color: var(--black);
}

.btn-next:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

/* Results */
.analysis-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.result-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.result-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.result-title {
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.result-price {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* --- PRODUCT DETAIL PAGE --- */
.product-page-container {
    padding: 5rem 0;
}

/* Alerts */
.alert {
    padding: 18px 25px;
    margin-bottom: 25px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, rgba(124, 183, 152, 0.15) 0%, rgba(124, 183, 152, 0.05) 100%);
    color: #2d6a4f;
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(212, 114, 106, 0.15) 0%, rgba(212, 114, 106, 0.05) 100%);
    color: #9b2c2c;
    border-left: 4px solid var(--error);
}

/* Product Layout */
.product-detail-wrapper {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

/* 🖼️ ÜRÜN DETAY SAYFASI - RESPONSİVE FOTOĞRAF */
.product-detail-image {
    flex: 1;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 2 / 3; /* 600x900 oranı = 2:3 */
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.product-main-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-strong);
}

.product-detail-info {
    flex: 1;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.product-title-large {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    letter-spacing: 1px;
}

.btn-favorite-large {
    background: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    transition: var(--transition);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-favorite-large:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

.product-rating {
    margin-bottom: 1.5rem;
    color: #f59e0b;
    font-size: 1.1rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 8px;
}

.product-price-large {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Variations */
.variation-wrapper {
    margin-bottom: 2rem;
}

.variation-label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.variation-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.variation-btn {
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    display: inline-block;
    transition: var(--transition);
    font-weight: 500;
    cursor: pointer;
}

.variation-btn:hover {
    border-color: var(--primary-color);
}

input[type="radio"]:checked + .variation-btn {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--primary-dark);
}

.product-description {
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.9;
}

/* Actions */
.product-actions-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.add-to-cart-form-flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.qty-input {
    padding: 15px;
    width: 80px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: center;
    font-weight: 500;
    transition: var(--transition);
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-add-cart {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 15px 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-disabled-large {
    border: none;
    cursor: not-allowed;
    font-size: 1rem;
    padding: 15px 50px;
    background-color: #e0e0e0;
    color: #999;
    border-radius: 50px;
}

.btn-stock-alarm {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    padding: 15px 25px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    margin-left: 10px;
    color: white;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-stock-alarm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

/* Stock Alarm Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.product-meta {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #888;
}

/* Reviews */
.reviews-section {
    margin-top: 5rem;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.section-header {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 15px;
}

.reviews-content {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.reviews-list {
    flex: 2;
    min-width: 300px;
}

.review-item {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.review-user {
    color: var(--text-color);
    font-weight: 600;
}

.review-date {
    color: var(--text-light);
    font-size: 0.85rem;
}

.review-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
}

.review-form-wrapper {
    flex: 1;
    min-width: 280px;
}

.review-form-box {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
}

.review-form-title {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.review-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.review-select, .review-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-main);
    transition: var(--transition);
    margin-bottom: 1rem;
}

.review-select:focus, .review-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.review-textarea {
    height: 120px;
    resize: vertical;
}

/* Related Products */
.related-products-section {
    margin-top: 6rem;
}

.related-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.related-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
}

.variation-option-label {
    cursor: pointer;
}

.variation-radio {
    display: none;
}

.btn-full-width {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.product-card-actions {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-top: 10px;
}

/* --- RESPONSIVE DESIGN (MOBILE & TABLET) --- */

/* 📱 LUXURY MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    display: none;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-medium);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 0.8rem;
    cursor: pointer;
    color: var(--charcoal);
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    transition: var(--transition);
    z-index: -1;
}

.mobile-menu-toggle:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle:hover::before {
    left: 0;
}

.mobile-menu-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* User Actions Styling */
.user-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-actions a {
    color: var(--text-color);
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
}

.user-actions a:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.user-actions form input[type="text"] {
    padding: 10px 35px 10px 15px;
    border: 2px solid transparent;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    width: 180px;
    transition: var(--transition);
    background: var(--secondary-color);
    font-family: var(--font-main);
}

.user-actions form input[type="text"]:focus {
    border-color: var(--primary-color);
    background: var(--white);
    width: 220px;
}

.user-actions form button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.user-actions form button:hover {
    color: var(--primary-color);
}

@media screen and (max-width: 992px) {
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
}

/* 📱 LUXURY RESPONSIVE DESIGN */
@media screen and (max-width: 768px) {
    /* Container Optimization */
    .container {
        width: 95%;
        padding: 0 1rem;
    }

    /* Navigation */
    nav {
        flex-wrap: wrap;
        position: relative;
        gap: 1rem;
    }

    .mobile-menu-toggle {
        display: flex !important; /* Mobile'da göster */
        order: 3;
        margin-left: auto;
    }

    .logo {
        order: 1;
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .logo::after {
        width: 30px;
    }

    .user-actions {
        order: 2;
        gap: 1rem;
        margin-right: 1rem;
    }

    /* Mobile Navigation - Desktop'ı override et */
    .nav-links {
        display: none !important; /* Mobile'da default gizli */
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 2rem;
        background: var(--glass-bg);
        backdrop-filter: var(--blur-strong);
        border: 1px solid var(--glass-border);
        box-shadow: var(--shadow-luxury);
        padding: 2rem 1rem;
        border-radius: var(--border-radius-lg);
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex !important; /* Aktif olunca göster */
        animation: mobileSlideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    @keyframes mobileSlideDown {
        0% { 
            opacity: 0; 
            transform: translateY(-20px) scale(0.95); 
        }
        100% { 
            opacity: 1; 
            transform: translateY(0) scale(1); 
        }
    }

    .nav-links li {
        margin: 0.8rem 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: var(--border-radius);
        transition: var(--transition);
    }

    .nav-links a:hover {
        background: var(--cream);
        color: var(--primary-color);
        transform: scale(1.02);
    }

    /* Mobile Search Bar */
    .user-actions form {
        display: none;
    }

    .user-actions a {
        padding: 0.6rem;
        font-size: 1.1rem;
    }

    /* Mobile Hero */
    .hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* Mobile Products */
    .products-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 3rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.6rem;
    }

    .product-card {
        border-radius: var(--border-radius-lg);
    }

    .product-image-container {
        height: 180px;
    }

    .product-info {
        padding: 0.6rem;
    }

    .product-title {
        font-size: 0.8rem;
        line-clamp: 3;
        -webkit-line-clamp: 3;
    }

    .product-price {
        font-size: 0.9rem;
    }

    /* Mobile Buttons */
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

/* 💻 LUXURY TABLET RESPONSIVE */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        width: 92%;
    }

    .hero h1 {
        font-size: 4.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 2rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

/* 🖥️ LUXURY DESKTOP LARGE */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero h1 {
        font-size: 7rem;
    }

    .hero p {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3rem;
    }

    .section-title {
        font-size: 4rem;
    }
}

/* 📱 MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
    .logo::after {
        width: 30px;
    }

    .user-actions {
        order: 2;
        margin-left: auto;
        gap: 8px;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        text-align: center;
        margin-top: 1.5rem;
        background-color: var(--white);
        box-shadow: var(--shadow-medium);
        padding: 1.5rem 0;
        border-top: 1px solid rgba(201, 168, 108, 0.2);
        order: 4;
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }

    .nav-links.active {
        display: flex;
        animation: mobileMenuSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes mobileMenuSlide {
        from { opacity: 0; transform: translateY(-15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-links li {
        margin: 5px 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:hover {
        background: var(--secondary-color);
    }

    /* Search bar mobilde */
    .user-actions form {
        display: none;
    }

    /* Hero Section */
    .hero {
        height: 60vh;
        min-height: 450px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 60vh;
        min-height: 450px;
    }
    
    .slide-content {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-desc {
        font-size: 1rem;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 1.2rem;
    }
    
    .product-title {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 1.1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .btn-sm {
        width: 100%;
        text-align: center;
    }

    /* Product Detail Page */
    .product-detail-wrapper {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .product-detail-image,
    .product-detail-info {
        min-width: 100%;
    }

    .product-title-large {
        font-size: 1.8rem;
    }

    .product-price-large {
        font-size: 1.8rem;
    }

    .add-to-cart-form-flex {
        flex-direction: column;
        width: 100%;
    }
    
    .qty-input {
        width: 100%;
    }
    
    .btn-add-cart {
        width: 100%;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Shop Page Sidebar */
    .shop-layout {
        flex-direction: column;
    }
    
    .shop-sidebar {
        display: none;
    }
    
    .shop-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* WhatsApp Button */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    /* Dropdown Menu Mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background-color: var(--secondary-color);
        width: 100%;
        border-radius: var(--border-radius);
        margin-top: 5px;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
        animation: mobileMenuSlide 0.3s ease-out;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 25px;
    }
    
    .wizard-options {
        grid-template-columns: 1fr;
    }

    /* Mobil Ürün Grid */
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .product-image-container {
        height: 170px;
    }

    .product-info {
        padding: 0.5rem;
    }

    .product-title {
        font-size: 0.75rem;
        line-clamp: 3;
        -webkit-line-clamp: 3;
        margin-bottom: 0.2rem;
    }

    .product-price {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .product-actions {
        margin-top: 0.4rem;
        gap: 0.3rem;
    }

    .product-actions .btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        min-width: calc(50% - 0.15rem);
    }

    /* Section Titles */
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 250px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .slide-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
}

/* Image Quality Enhancement */
.product-image, 
.product-main-image, 
img[src*="uploads"] {
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* High DPI Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .product-image, 
    .product-main-image {
        image-rendering: crisp-edges;
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Touch Device Optimization */
@media (hover: none) {
    .product-image, 
    .product-main-image {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
}

/* 🌐 Dil ve Para Birimi Seçici Stilleri */
.language-currency-selector {
    display: flex;
    gap: 10px;
    align-items: center;
}

.language-currency-selector button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.language-currency-selector button:hover {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.dropdown-menu {
    min-width: 150px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(26, 26, 26, 0.1);
    animation: slideDown 0.2s ease-out;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f9fafb;
    color: var(--primary-color);
}

.dropdown-menu a i {
    margin-right: 8px;
    width: 16px;
    color: var(--primary-color);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-currency-selector {
        margin-left: 10px;
    }
    
    .language-currency-selector button {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

/* =========================================
   📱 KAPSAMLI RESPONSİVE TASARIM
   ========================================= */

/* 🖥️ BÜYÜK EKRANLAR - 1400px ve üzeri */
@media screen and (min-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .product-image-container {
        max-width: 350px;
    }
    
    .product-detail-image {
        max-width: 700px;
    }
}

/* 💻 MASAÜSTÜ - 1200px - 1399px */
@media screen and (min-width: 1200px) and (max-width: 1399px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .product-image-container {
        max-width: 300px;
    }
}

/* 💻 KÜÇÜK MASAÜSTÜ - 992px - 1199px */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .product-image-container {
        max-width: 280px;
    }
    
    .product-detail-wrapper {
        gap: 2rem;
    }
    
    .product-detail-image {
        max-width: 500px;
    }
}

/* 📱 TABLET - 768px - 991px */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .product-image-container {
        max-width: 250px;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-info {
        padding: 0.8rem;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-detail-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .product-detail-image {
        max-width: 100%;
        width: 100%;
    }
    
    .product-detail-info {
        width: 100%;
    }
}

/* 📱 BÜYÜK TELEFON - 576px - 767px */
@media screen and (max-width: 767px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .product-image-container {
        max-width: 100%;
        aspect-ratio: 2 / 3;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-info {
        padding: 0.6rem;
    }
    
    .product-title {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .product-price {
        font-size: 0.95rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .product-actions .btn {
        width: 100%;
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Ürün Detay Responsive */
    .product-detail-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .product-detail-image {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 2 / 3;
    }
    
    .product-main-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .product-detail-info {
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .product-title-large {
        font-size: 1.4rem;
    }
    
    .product-price-large {
        font-size: 1.5rem;
    }
    
    /* Hero Responsive */
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .slide-desc {
        font-size: 0.9rem;
    }
    
    /* Header Responsive */
    .header-container {
        flex-wrap: wrap;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .user-actions {
        gap: 5px;
    }
    
    .action-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* 📱 KÜÇÜK TELEFON - 480px ve altı */
@media screen and (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .product-image-container {
        aspect-ratio: 3 / 4;
    }
    
    .product-info {
        padding: 0.5rem;
    }
    
    .product-title {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        min-height: 2.4em;
    }
    
    .product-price {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }
    
    .product-original-price {
        font-size: 0.7rem;
    }
    
    .product-actions .btn {
        padding: 0.4rem;
        font-size: 0.7rem;
    }
    
    /* Hero */
    .hero-slider {
        height: 40vh;
        min-height: 280px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-title {
        font-size: 1.2rem;
    }
    
    .slide-desc {
        font-size: 0.8rem;
        display: none;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    /* Header */
    .logo h1 {
        font-size: 1rem;
    }
    
    .action-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .language-currency-selector button {
        width: 32px;
        height: 32px;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
}

/* 📱 ÇOK KÜÇÜK TELEFON - 360px ve altı */
@media screen and (max-width: 360px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }
    
    .product-image-container {
        aspect-ratio: 1 / 1.2;
    }
    
    .product-title {
        font-size: 0.7rem;
    }
    
    .product-price {
        font-size: 0.8rem;
    }
    
    .product-actions .btn {
        font-size: 0.65rem;
        padding: 0.35rem;
    }
    
    .logo h1 {
        font-size: 0.9rem;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

/* 🔄 DOKUNMATIK CİHAZLAR İÇİN OPTİMİZASYON */
@media (hover: none) and (pointer: coarse) {
    .product-card:hover .product-image {
        transform: none;
    }
    
    .product-card:hover {
        transform: none;
        box-shadow: var(--shadow-soft);
    }
    
    .btn:hover {
        transform: none;
    }
    
    .action-btn:hover {
        transform: none;
    }
    
    /* Daha büyük dokunma hedefleri */
    .product-actions .btn {
        min-height: 44px;
    }
    
    .action-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* 🖼️ RETİNA/HİGH DPI EKRANLAR */
@media (-webkit-min-device-pixel-ratio: 2), 
       (min-resolution: 192dpi),
       (min-resolution: 2dppx) {
    .product-image-container img,
    .product-main-img,
    .product-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* 🔄 YATAY MOD (LANDSCAPE) */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-slider {
        height: 70vh;
        min-height: auto;
    }
    
    .product-detail-wrapper {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .product-detail-image {
        max-width: 40%;
        aspect-ratio: 2 / 3;
    }
    
    .product-detail-info {
        flex: 1;
    }
}

/* 📱 SAFE AREA (iPhone X ve benzeri) */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* =====================================================
   🏷️ İNDİRİM ETİKETİ VE FİYAT STİLLERİ
   ===================================================== */

/* İndirim Badge - Ürün Kartı */
.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge i {
    font-size: 0.7rem;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.6);
    }
}

/* Orijinal Fiyat (Üstü Çizili) */
.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 8px;
    display: inline-block;
}

/* İndirimli Fiyat */
.discounted-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

/* Ürün Kartı Fiyat Container */
.product-price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4px;
}

/* Büyük İndirim Etiketi (Detay Sayfası) */
.discount-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

.product-detail-image {
    position: relative;
}

.discount-badge-large i {
    font-size: 1.1rem;
}

/* Fiyat Container (Detay Sayfası) */
.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.price-original-large {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5rem;
    font-weight: 400;
}

.price-discounted-large {
    color: #e74c3c;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Kampanya Banner */
.campaign-banner {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.3);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    }
    50% {
        background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    }
}

.campaign-banner i {
    font-size: 1.3rem;
    animation: bounce-tag 1s ease-in-out infinite;
}

@keyframes bounce-tag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Responsive İndirim Badge */
@media (max-width: 768px) {
    .discount-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
        top: 8px;
        left: 8px;
    }
    
    .original-price {
        font-size: 0.75rem;
    }
    
    .discounted-price {
        font-size: 0.95rem;
    }
    
    .discount-badge-large {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .price-original-large {
        font-size: 1.2rem;
    }
    
    .price-discounted-large {
        font-size: 2rem;
    }
}
