/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll behavior handled by JavaScript for better control */
html {
    scroll-behavior: smooth;
}

:root {
    /* Primary Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #8b5cf6;
    
    /* Secondary Colors */
    --secondary-color: #ec4899;
    --secondary-dark: #db2777;
    --secondary-light: #f472b6;
    
    /* Neutral Colors */
    --dark: #1e293b;
    --dark-light: #334155;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f8fafc;
    --white: #ffffff;
    
    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ef4444 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --gradient-hero:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #1e293b 0%, #334155 100%);
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-primary: 'Comfortaa', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-base: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-base: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-base: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Mobile Navigation Body States */
body.nav-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

body.nav-open.ios {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-base);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    z-index: var(--z-fixed);
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-base) var(--spacing-base);
}

.logo {
    font-size: var(--font-size-xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition-base);
    margin-right: 10px;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-base);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* Desktop nav-toggle (hidden) */
.nav-toggle {
    display: none;
}

/* ===== PROFESSIONAL MOBILE NAVIGATION SYSTEM ===== */

/* Desktop Navigation (Hidden on Mobile) */
@media (min-width: 769px) {
    .nav-toggle {
        display: none;
    }
    
    .nav {
        display: block !important;
        position: static;
        background: transparent;
        box-shadow: none;
    }
    
    .nav-overlay {
        display: none;
    }
    
    .nav-content {
        display: contents;
    }
    
    .nav-list {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--spacing-xl);
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-link {
        display: block;
        color: var(--dark);
        text-decoration: none;
        font-weight: 500;
        padding: var(--spacing-xs) 0;
        position: relative;
        transition: var(--transition-base);
        tabindex: 0;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        color: var(--primary-color);
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--gradient-primary);
        transition: var(--transition-base);
    }
    
    .nav-link:hover::after,
    .nav-link:focus::after {
        width: 100%;
    }
}

/* Mobile & Tablet Navigation */
@media (max-width: 768px) {
    /* Hide Desktop Navigation */
    .nav-list {
        display: none;
    }
    
    /* Mobile Hamburger Button */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 44px; /* Touch-friendly minimum size */
        height: 44px;
        background: transparent;
        border: 2px solid transparent;
        border-radius: var(--radius-sm);
        cursor: pointer;
        z-index: 10003;
        position: relative;
        padding: 8px;
        transition: var(--transition-base);
        -webkit-tap-highlight-color: transparent;
    }
    
    .nav-toggle:hover,
    .nav-toggle:focus {
        border-color: var(--primary-color);
        outline: none;
    }
    
    .nav-toggle:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Hamburger Lines */
    .hamburger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--dark);
        border-radius: var(--radius-full);
        transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
        transform-origin: center;
    }
    
    /* Hamburger Animation - Active State */
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: var(--white);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: var(--white);
    }
    
    /* Mobile Navigation Container */
    .nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        z-index: 9999 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: all 0.3s ease !important;
        pointer-events: none !important;
    }
    
    .nav.active {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: all !important;
    }
    
    /* Navigation Overlay */
    .nav-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: rgba(0, 0, 0, 0.7) !important;
        opacity: 0 !important;
        transition: opacity 0.3s ease !important;
    }
    
    .nav.active .nav-overlay {
        opacity: 1 !important;
    }
    
    /* Navigation Content Panel */
    .nav-content {
        position: absolute !important;
        top: 0 !important;
        right: 0 !important;
        width: 280px !important;
        height: 100vh !important;
        background: white !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15) !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 10001 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav.active .nav-content {
        transform: translateX(0) !important;
    }
    
    /* Navigation Menu List */
    .nav-list {
        padding: 60px 20px 20px 20px !important;
        margin: 0 !important;
        list-style: none !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .nav-list li {
        display: block !important;
        width: 100% !important;
        margin-bottom: 10px !important;
    }
    
    /* Navigation Links */
    .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 12px 16px !important;
        color: #333 !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        border-radius: 8px !important;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%) !important;
        border: 1px solid rgba(99, 102, 241, 0.1) !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        box-sizing: border-box !important;
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: var(--gradient-primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        border-color: transparent;
        outline: none;
    }
    
    .nav-link:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .nav-link:active {
        transform: translateY(0);
        transition-duration: 0.1s;
    }
    
    /* iOS Safari specific fixes */
    @supports (-webkit-touch-callout: none) {
        .nav-content {
            -webkit-overflow-scrolling: touch;
        }
        
        .nav-toggle {
            -webkit-appearance: none;
        }
        
        body.nav-open {
            position: fixed;
            overflow: hidden;
            width: 100%;
            height: 100%;
        }
    }
    
    /* Enhanced Focus Management */
    .nav-link[tabindex="-1"] {
        outline: none;
    }
    
    .nav.active .nav-link {
        tabindex: 0;
    }
    
    /* Animation Delays for Staggered Effect */
    .nav-list li:nth-child(1) .nav-link {
        transition-delay: 0.1s;
    }
    
    .nav-list li:nth-child(2) .nav-link {
        transition-delay: 0.15s;
    }
    
    .nav-list li:nth-child(3) .nav-link {
        transition-delay: 0.2s;
    }
    
    .nav-list li:nth-child(4) .nav-link {
        transition-delay: 0.25s;
    }
    
    .nav-list li:nth-child(5) .nav-link {
        transition-delay: 0.3s;
    }

}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 1;
}

/* Navigation açıkken ana sayfa içeriğini tamamen gizle */
body.nav-open .hero,
body.nav-open main,
body.nav-open footer {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Header'daki diğer elementleri gizle ama nav'ı görünür tut */
body.nav-open .header .container > *:not(.nav):not(.nav-toggle) {
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Mobil menü kesinlikle görünür ve üstte olsun */
body.nav-open .nav {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    z-index: 10001 !important;
}

body.nav-open .nav-overlay {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    z-index: 10000 !important;
}

body.nav-open .nav-content {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    z-index: 10002 !important;
}

body.nav-open .nav-list {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    display: flex !important;
    flex-direction: column !important;
}

body.nav-open .nav-list li {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    display: block !important;
}

body.nav-open .nav-link {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    display: flex !important;
}

/* Hamburger menü butonu görünür kalsın */
body.nav-open .nav-toggle {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: all !important;
    z-index: 10003 !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    top: 50%;
    left: 80%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    padding: var(--spacing-3xl) 0;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typewriter {
    border-right: 3px solid var(--primary-color);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: var(--primary-color); }
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
}

/* Masaüstü için orantılı hizalama */
@media (min-width: 769px) {
    .hero-features {
        max-width: 480px;
    }
}

/* Mobil için merkez hizalama (üçleme düzeni) */
@media (max-width: 768px) {
    .hero-features {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-badge i {
    font-size: 1.1rem;
}

.feature-badge:nth-child(1) {
    animation-delay: 0s;
}

.feature-badge:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-badge:nth-child(3) {
    animation-delay: 0.6s;
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-base);
    flex-wrap: wrap;
}

.hero-buttons .btn small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-base) var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
}

/* Video Card Styles */
.video-card {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-2xl);
    animation: levitate 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.video-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.video-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.video-container iframe {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-lg);
    cursor: pointer;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.play-button i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 3px; /* İkonu biraz sağa kaydır */
}

/* Video Placeholder Styles */
.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(107, 70, 193, 0.8) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.placeholder-content {
    text-align: center;
    animation: pulse 2s infinite ease-in-out;
}

.placeholder-content i {
    display: block;
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: bounce 2s infinite ease-in-out;
}

.placeholder-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    opacity: 0.9;
    margin: 0;
}

/* Video tema uyumlu animasyonlar */
@keyframes videoGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(107, 70, 193, 0.7), 0 0 40px rgba(102, 126, 234, 0.5);
    }
}

.video-card:hover {
    animation: videoGlow 2s ease-in-out infinite;
}

/* Çocuk teması için renkli kenarlık */
.video-card::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ffd93d, #ff9ff3);
    border-radius: inherit;
    z-index: -2;
    filter: blur(15px);
    opacity: 0.6;
    animation: rotateColors 8s linear infinite;
}

@keyframes rotateColors {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Backwards compatibility - kalp ikonu stilleri */
.card-inner {
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.card-icon {
    font-size: 4rem;
    color: var(--white);
}

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

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-xl);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .video-card {
        width: 320px;
        height: 320px;
    }
    
    .video-container {
        width: 100%;
        height: 100%;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    /* Backwards compatibility */
    .image-card {
        width: 250px;
        height: 250px;
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-base);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FEATURED PRODUCTS SECTION ===== */
.featured-products {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* ===== YAN KARAKTERLERİ ===== */
.featured-character {
    position: absolute;
    top: 75%;
    transform: translateY(-50%);
    z-index: 20;
    display: none; /* Sadece desktop'ta göster */
    pointer-events: none;
}

.featured-character-left {
    left: -50px;
}

.featured-character-right {
    right: -50px;
}

.character-image {
    width: 800px;
    height: auto;
    max-width: 800px;
    object-fit: contain;
}

.character-text {
    position: absolute;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4), 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: white;
    width: 250px;
    height: 80px;
    line-height: 1.3;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.featured-character-left .character-text {
    top: -120px;
    left: 180px;
}

.featured-character-left .character-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #a855f7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    z-index: 26;
}

.featured-character-right .character-text {
    top: -120px;
    right: 180px;
}

.featured-character-right .character-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #a855f7;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    z-index: 26;
}

.character-text p {
    margin: 0;
    line-height: 1.3;
}

.character-text .typewriter {
    white-space: normal;
    word-wrap: break-word;
    width: 100%;
    height: 100%;
    display: block;
    line-height: 1.4;
    overflow: hidden;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border-right: none !important;
    animation: none !important;
}

/* Tablet boyutunda karakterleri göster - Küçük boyut */
@media (min-width: 768px) and (max-width: 1199px) {
    .featured-character {
        display: block;
    }
    
    .character-image {
        width: 350px;
        max-width: 350px;
    }
    
    .featured-character-left {
        left: -30px;
    }
    
    .featured-character-right {
        right: -30px;
    }
    
    .character-text {
        width: 200px;
        height: 70px;
        font-size: 12px;
        padding: 12px 16px;
        border-radius: 18px;
    }
    
    .featured-character-left .character-text {
        top: -160px;
        left: 120px;
    }
    
    .featured-character-right .character-text {
        top: -160px;
        right: 120px;
    }
    
    .featured-character-left .character-text::after,
    .featured-character-right .character-text::after {
        bottom: -12px;
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 12px solid #a855f7;
    }
}

/* Desktop'ta karakterleri göster - Orta boyut */
@media (min-width: 1200px) {
    .featured-character {
        display: block;
    }
    
    .character-image {
        width: 600px;
        max-width: 600px;
    }
    
    .featured-character-left {
        left: -50px;
    }
    
    .featured-character-right {
        right: -50px;
    }
    
    .character-text {
        width: 280px;
        height: 90px;
        font-size: 16px;
        padding: 18px 22px;
        border-radius: 22px;
    }
    
    .featured-character-left .character-text {
        top: -110px;
        left: 180px;
    }
    
    .featured-character-right .character-text {
        top: -110px;
        right: 180px;
    }
    
    .featured-character-left .character-text::after,
    .featured-character-right .character-text::after {
        bottom: -16px;
        border-left: 16px solid transparent;
        border-right: 16px solid transparent;
        border-top: 16px solid #a855f7;
    }
}

/* Daha geniş ekranlarda tam boyut - Büyük boyut */
@media (min-width: 1400px) {
    .featured-character-left {
        left: -20px;
    }
    
    .featured-character-right {
        right: -20px;
    }
    
    .character-image {
        width: 800px;
        max-width: 800px;
    }
    
    .character-text {
        width: 320px;
        height: 100px;
        font-size: 18px;
        padding: 20px 25px;
        border-radius: 25px;
    }
    
    .featured-character-left .character-text {
        top: -115px;
        left: 40px;
    }
    
    .featured-character-right .character-text {
        top: -115px;
        right: 40px;
    }
    
    .featured-character-left .character-text::after,
    .featured-character-right .character-text::after {
        bottom: -18px;
        border-left: 18px solid transparent;
        border-right: 18px solid transparent;
        border-top: 18px solid #a855f7;
    }
}

/* Çok geniş ekranlarda - En büyük boyut */
@media (min-width: 1600px) {
    .featured-character-left {
        left: 20px;
    }
    
    .featured-character-right {
        right: 20px;
    }
    
    .character-image {
        width: 900px;
        max-width: 900px;
    }
    
    .character-text {
        width: 360px;
        height: 110px;
        font-size: 20px;
        padding: 22px 28px;
        border-radius: 28px;
    }
    
    .featured-character-left .character-text {
        top: -125px;
        left: 180px;
    }
    
    .featured-character-right .character-text {
        top: -125px;
        right: 180px;
    }
    
    .featured-character-left .character-text::after,
    .featured-character-right .character-text::after {
        bottom: -20px;
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid #a855f7;
    }
}
/* ===== MOBİL MİNİ KARAKTER SİSTEMİ ===== */
.product-mini-character {
    position: absolute;
    bottom: 30px;
    right: 22px;
    z-index: 50;
    pointer-events: none;
}

.mobile-only {
    display: block;
}

.mini-character-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    display: block;
    z-index: 51;
}

.character-speech-bubble {
    position: absolute;
    background: #fff;
    padding: 6px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    color: #333;
    white-space: normal;
    word-wrap: break-word;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #e0e6ed;
    width: 110px;
    line-height: 1.3;
    z-index: 52;
    bottom: 45px;
    right: -15px;
}

.character-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    z-index: 53;
}

/* Responsive mobil ayarlar */
@media (min-width: 480px) {
    .mini-character-image {
        width: 70px;
        height: 70px;
    }
    
    .character-speech-bubble {
        font-size: 13px;
        padding: 12px 16px;
        max-width: 200px;
        bottom: 85px;
    }
}

@media (min-width: 576px) {
    .mini-character-image {
        width: 75px;
        height: 75px;
    }
    
    .character-speech-bubble {
        font-size: 14px;
        padding: 14px 18px;
        max-width: 220px;
        bottom: 90px;
    }
}

@media (min-width: 768px) {
    .product-mini-character {
        bottom: 25px;
        right: 20px;
    }
    
    .mini-character-image {
        width: 80px;
        height: 80px;
    }
    
    .character-speech-bubble {
        font-size: 15px;
        padding: 16px 20px;
        max-width: 240px;
        bottom: 95px;
        right: -15px;
    }
}

/* Desktop'ta mini karakterleri gizle */
@media (min-width: 1200px) {
    .mobile-only {
        display: none;
    }
}

/* ===== FEATURES SECTION CHARACTER STYLES ===== */
.features {
    position: relative;
}

.features-character {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: none; /* Sadece desktop'ta göster */
}

.features-character-left {
    left: 0px;
}

.features-character-right {
    right: 0px;
}

.features-character-image {
    width: 350px;
    height: auto;
    max-width: 350px;
    object-fit: contain;
}

.features-character-text {
    position: absolute;
    background: white;
    padding: 18px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    border: 4px solid #e0e6ed;
    max-width: 220px;
    line-height: 1.3;
}

.features-character-left .features-character-text {
    top: 10%;
    left: 240px;
}

.features-character-right .features-character-text {
    top: 10%;
    right: 240px;
}

.features-character-text p {
    margin: 0;
    line-height: 1.3;
}

/* Desktop'ta features karakterleri göster */
@media (min-width: 1200px) {
    .features-character {
        display: block;
    }
    
    .features-character-image {
        width: 400px;
        max-width: 400px;
    }
    
    .features-character-left .features-character-text {
        left: 280px;
    }
    
    .features-character-right .features-character-text {
        right: 280px;
    }
}

/* Çok geniş ekranlarda daha büyük */
@media (min-width: 1400px) {
    .features-character-left {
        left: 30px;
    }
    
    .features-character-right {
        right: 30px;
    }
    
    .features-character-image {
        width: 450px;
        max-width: 450px;
    }
    
    .features-character-left .features-character-text {
        left: 320px;
    }
    
    .features-character-right .features-character-text {
        right: 320px;
    }
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop Grid Optimization - KOMPAKT WEB TASARIMI */
@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: 1.2rem;
        margin-top: 2rem;
        max-width: 800px;
    }
}

@media (min-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 760px;
    }
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

/* Kompakt Web Görünümü için Görsel Yüksekliği */
@media (min-width: 768px) {
    .product-image {
        height: 200px;
    }
}

@media (min-width: 1024px) {
    .product-image {
        height: 210px;
    }
}

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

.featured-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.product-content {
    padding: 1.5rem;
}

/* Kompakt Web İçerik Alanı */
@media (min-width: 768px) {
    .product-content {
        padding: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .product-content {
        padding: 1.3rem;
    }
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
/* Styling for the Romantic & Special Day category */
.product-category[data-category="Romantik & Özel Gün"] {
    display: inline-block;
    background-color: var(--secondary-light);
    color: var(--secondary-dark);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--secondary-dark);
}

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

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.current-price {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.price-suffix {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.25rem;
}

/* ===== LUXURY PRODUCT CARD STYLES - STANDARDIZED SIZES ===== */
.luxury-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 1;
    /* STABIL BOYUTLAR - Mobil */
    width: 100%;
    max-width: 320px;
    min-width: 320px;
    height: auto;
    margin: 0 auto;
}

/* Desktop Card Optimization - KOMPAKT WEB BOYUTLARI */
@media (min-width: 768px) {
    .luxury-product-card {
        /* TABLET İÇİN KOMPAKT BOYUTLAR (%15 KÜÇÜLTME) */
        max-width: 340px;
        min-width: 340px;
        width: 340px;
        border-radius: 18px;
        box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
    }
    
    .luxury-product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 55px rgba(0, 0, 0, 0.15);
    }
}

@media (min-width: 1024px) {
    .luxury-product-card {
        /* DESKTOP İÇİN KOMPAKT BOYUTLAR (%18 KÜÇÜLTME) */
        max-width: 345px;
        min-width: 345px;
        width: 345px;
    }
}

.luxury-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(99, 102, 241, 0.1);
}

/* Image Section - OPTİMİZE EDİLMİŞ ASPECT RATİO */
.luxury-image-container {
    position: relative;
    aspect-ratio: 1.25/1; /* DENGE - Ne çok uzun ne çok kare */
    overflow: hidden;
    background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);
    min-height: 220px;
    max-height: 280px;
}

/* Desktop Image Optimization */
@media (min-width: 768px) {
    .luxury-image-container {
        aspect-ratio: 1.2/1; /* TABLET İÇİN BALANCED ORAN */
        min-height: 225px;
        max-height: 270px;
    }
}

@media (min-width: 1024px) {
    .luxury-image-container {
        aspect-ratio: 1.2/1; /* DESKTOP İÇİN BALANCED ORAN */
        min-height: 230px;
        max-height: 275px;
    }
}

.luxury-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.luxury-product-card:hover .luxury-product-image {
    transform: scale(1.05);
}

.luxury-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

/* Content Section - BALANCED PADDING */
.luxury-content {
    padding: 18px 18px 20px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Desktop Content Optimization */
@media (min-width: 768px) {
    .luxury-content {
        padding: 20px 20px 22px;
        min-height: 235px;
    }
}

@media (min-width: 1024px) {
    .luxury-content {
        padding: 22px 22px 24px;
        min-height: 240px;
    }
}

/* Header */
.luxury-header {
    margin-bottom: 12px;
}

.luxury-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 6px;
    line-height: 1.3;
    letter-spacing: -0.025em;
    /* METİN TAŞMASI İÇİN ELLİPSİS */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6rem;
}

.luxury-subtitle {
    color: #718096;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
    /* METİN TAŞMASI İÇİN ELLİPSİS */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.2rem;
}

/* Desktop Typography Optimization - KOMPAKT WEB BOYUTLARI */
@media (min-width: 768px) {
    .luxury-title {
        font-size: 1.1rem;
        margin: 0 0 7px;
        line-height: 1.25;
        min-height: 2.6rem;
    }
    
    .luxury-subtitle {
        font-size: 0.8rem;
        min-height: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .luxury-title {
        font-size: 1.15rem;
        margin: 0 0 8px;
        min-height: 2.8rem;
    }
    
    .luxury-subtitle {
        font-size: 0.82rem;
        min-height: 1.25rem;
    }
}

/* Features - KOMPAKT */
.luxury-features {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.luxury-feature {
    display: flex;
    align-items: center;
    gap: 1px;
    background: #f7fafc;
    padding: 1px 3px;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
    font-size: 0.45rem;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.2s ease;
    height: 16px !important; /* KÜÇÜLTÜLDÜ: 18px → 16px */
    max-height: 16px !important;
}

.luxury-feature span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
}

.luxury-feature .feature-icon svg,
.feature-icon svg {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    max-width: 10px !important;
    min-height: 10px !important;
    max-height: 10px !important;
    stroke-width: 2.8 !important;
    flex-shrink: 0 !important;
    transform: scale(0.71) !important; /* 14px → 10px = 0.71 scale */
    transform-origin: center !important;
}

/* SVG İçin Browser Cache Override */
svg[width="10"][height="10"],
svg[width="14"][height="14"] {
    width: 10px !important;
    height: 10px !important;
    transform: scale(0.71) !important;
    transform-origin: center !important;
}

/* Extra güçlü kural - tüm feature SVG'ler için */
.luxury-features svg,
.luxury-feature svg {
    width: 10px !important;
    height: 10px !important;
    transform: scale(0.71) !important;
    transform-origin: center !important;
}

.luxury-feature:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.feature-icon {
    color: #667eea;
    display: flex;
    align-items: center;
    width: 12px !important;
    height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;
    overflow: hidden !important;
}
/* Premium Feature Styles */
.premium-shipping {
    background: #f0f9ff;
    border-color: #bae6fd;
    color: #075985;
}

.premium-shipping .feature-icon {
    color: white;
}

.premium-gift {
    background: #fdf4ff;
    border-color: #f0abfc;
    color: #86198f;
}

.premium-gift .feature-icon {
    color: white;
}

.premium-music {
    background: #ecfdf5;
    border-color: #bbf7d0;
    color: #166534;
}

.premium-music .feature-icon {
    color: white;
}

.premium-digital {
    background: #fef3c7;
    border-color: #fde68a;
    color: #92400e;
}

.premium-digital .feature-icon {
    color: white;
}

/* Pricing - SABİT YÜKSEKLİK */
.luxury-pricing {
    background: linear-gradient(135deg, #fef5e7 0%, #fef5e7 100%);
    border: 1px solid #f6e05e;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
    /* SABİT YÜKSEKLİK GARANTİSİ */
    min-height: 75px;
    display: flex;
    align-items: center;
}

.luxury-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #f6e05e 0%, #ecc94b 100%);
}

.price-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.main-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.currency-symbol {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d69e2e;
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #d69e2e;
    line-height: 1;
    letter-spacing: -0.025em;
}

/* Desktop Price Optimization - KOMPAKT WEB BOYUTLARI */
@media (min-width: 768px) {
    .currency-symbol {
        font-size: 1.1rem;
    }
    
    .price-value {
        font-size: 1.7rem;
    }
    
    .starting-from {
        font-size: 0.8rem;
    }
    
    .price-description {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) {
    .currency-symbol {
        font-size: 1.15rem;
    }
    
    .price-value {
        font-size: 1.8rem;
    }
    
    .starting-from {
        font-size: 0.85rem;
    }
    
    .price-description {
        font-size: 0.78rem;
    }
}

.price-qualifier {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.starting-from {
    font-size: 0.85rem;
    color: #975a16;
    font-weight: 500;
}

.price-description {
    font-size: 0.75rem;
    color: #b7791f;
    font-style: italic;
}

/* Rating */
.luxury-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star {
    font-size: 0.9rem;
    color: #e2e8f0;
    transition: color 0.2s ease;
}

.star.active {
    color: #ffd700;
}

.rating-count {
    font-size: 0.7rem;
    color: #a0aec0;
    font-weight: 500;
}

/* Desktop Rating and Features Optimization - KOMPAKT WEB BOYUTLARI */
@media (min-width: 768px) {
    .luxury-features {
        gap: 5px;
        margin-bottom: 14px;
    }
    
    .luxury-feature {
        padding: 1px 5px;
        border-radius: 7px;
        font-size: 0.55rem;
        gap: 2px;
    }
    
    .luxury-rating {
        gap: 8px;
        margin-bottom: 14px;
    }
    
    .star {
        font-size: 0.9rem;
    }
    
    .rating-count {
        font-size: 0.7rem;
    }
}

@media (min-width: 1024px) {
    .luxury-features {
        gap: 6px;
        margin-bottom: 15px;
    }
    
    .luxury-feature {
        padding: 2px 6px;
        font-size: 0.58rem;
    }
    
    .luxury-rating {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .star {
        font-size: 0.95rem;
    }
    
    .rating-count {
        font-size: 0.72rem;
    }
}

/* Delivery */
.luxury-delivery {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    color: #22543d;
    font-weight: 500;
}

.delivery-icon {
    color: #38a169;
    display: flex;
    align-items: center;
}

/* CTA Button - SABİT BOYUTLAR */
.luxury-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    /* SABİT YÜKSEKLİK GARANTİSİ */
    min-height: 48px;
    height: 48px;
}

.luxury-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

.luxury-cta:active {
    transform: translateY(0);
}

.cta-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.luxury-cta:hover .cta-arrow {
    transform: translateX(2px);
}

/* Desktop CTA and Delivery Optimization - KOMPAKT WEB BOYUTLARI */
@media (min-width: 768px) {
    .luxury-delivery {
        padding: 8px 14px;
        margin-bottom: 15px;
        font-size: 0.75rem;
        border-radius: 9px;
        min-height: 36px;
        height: 36px;
        display: flex;
        align-items: center;
    }
    
    .luxury-cta {
        padding: 12px 20px;
        font-size: 0.82rem;
        border-radius: 10px;
        gap: 6px;
        min-height: 44px;
        height: 44px;
    }
}

@media (min-width: 1024px) {
    .luxury-delivery {
        padding: 10px 15px;
        margin-bottom: 16px;
        font-size: 0.78rem;
        min-height: 38px;
        height: 38px;
    }
    
    .luxury-cta {
        padding: 14px 24px;
        font-size: 0.85rem;
        border-radius: 12px;
        min-height: 46px;
        height: 46px;
    }
    
    .luxury-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
    }
}

.product-rating {
    margin-bottom: 1.5rem;
}

.product-rating .stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    color: white;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-3xl) 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-base);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Featured Service Card - Kampanyalı Ürün */
.service-card.featured {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 50%, #fff7ed 100%);
    border: 2px solid #ef4444;
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px #ef4444;
    }
    to {
        box-shadow: 0 0 20px #ef4444, 0 0 30px #ef4444;
    }
}

.service-card.featured::before {
    background: linear-gradient(90deg, #ef4444 0%, #f97316 50%, #f59e0b 100%);
    height: 6px;
}

.service-card.featured::after {
    content: '🔥 KAMPANYA';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ef4444, #f97316);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 50%, #f59e0b 100%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.service-card.featured .service-price {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: white;
    font-weight: 700;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon i {
    font-size: var(--font-size-xl);
    color: var(--white);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-base);
    color: var(--dark);
}

.service-description {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: var(--gray);
}

.service-features i {
    color: var(--primary-color);
    font-size: var(--font-size-sm);
}

.service-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: var(--spacing-base);
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-lg);
}

/* Service Rating Styles */
.service-rating {
    margin-bottom: var(--spacing-base);
    text-align: center;
}

.service-rating .stars {
    display: inline-flex;
    gap: 2px;
    margin-bottom: 4px;
}

.service-rating .stars i {
    color: #fbbf24;
    font-size: var(--font-size-sm);
}

.service-rating span {
    font-size: var(--font-size-sm);
    color: var(--gray);
    display: block;
}

/* Special Service Card - How it works */
.service-card.special {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #fafafa 100%);
    border: 2px solid #0ea5e9;
    text-align: center;
}

.service-card.special::before {
    background: linear-gradient(90deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
    height: 6px;
}

.service-card.special .service-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 50%, #6366f1 100%);
    margin: 0 auto var(--spacing-lg);
}

.service-card.special .service-features {
    text-align: left;
}

/* ===== PRODUCT IMAGE PLACEHOLDER STYLES ===== */
.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ced4da;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.placeholder-icon {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.placeholder-text {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.placeholder-subtitle {
    font-size: 0.9rem;
    color: #868e96;
    text-align: center;
    line-height: 1.4;
}

/* Themed Placeholders */
.image-placeholder.coloring-book {
    background: linear-gradient(135deg, #fff3cd 0%, #fef9e7 50%, #fff8e1 100%);
    border-color: #f9c74f;
}

.image-placeholder.coloring-book .placeholder-icon {
    color: #f9844a;
}

.image-placeholder.music {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #fce4ec 100%);
    border-color: #9c27b0;
}

.image-placeholder.music .placeholder-icon {
    color: #7b1fa2;
}

/* Image Loading Error Fallback */
.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.main-image img[src*="placeholder"],
.main-image img:not([src]),
.main-image img[src=""] {
    display: none;
}

.main-image:has(img[src*="placeholder"]),
.main-image:has(img:not([src])),
.main-image:has(img[src=""]) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    border: 2px dashed #ced4da;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image:has(img[src*="placeholder"])::after,
.main-image:has(img:not([src]))::after,
.main-image:has(img[src=""])::after {
    content: "🖼️ Görsel Yükleniyor...";
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

/* Thumbnail Placeholder Styles */
.thumbnail-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px dashed #ced4da;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6c757d;
    opacity: 0.7;
}

/* Professional Image Loading Animation */
.image-loading {
    position: relative;
    overflow: hidden;
}

.image-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile Image Placeholder Adjustments */
@media (max-width: 768px) {
    .image-placeholder {
        height: 250px;
        border-radius: 12px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .placeholder-text {
        font-size: 1rem;
    }
    
    .placeholder-subtitle {
        font-size: 0.85rem;
    }
    
    .main-image img {
        height: 250px;
        border-radius: 12px;
    }
    
    .thumbnail-placeholder {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .image-placeholder {
        height: 200px;
    }
    
    .main-image img {
        height: 200px;
    }
    
    .thumbnail-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

.service-card.special .service-features li {
    color: var(--dark);
    font-weight: 500;
}

.service-card.special .service-features i {
    color: #0ea5e9;
}

.service-process {
    background: linear-gradient(135deg, #0ea5e9, #3b82f6);
    color: white;
    padding: var(--spacing-base);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-lg);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--spacing-3xl) 0;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.features-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--dark);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.feature-item {
    display: flex;
    gap: var(--spacing-base);
    align-items: flex-start;
}

/* Ana Features Section Icon'ları - FontAwesome Icons */
.main-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.main-feature-icon i {
    font-size: 28px !important;
    color: white !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

.main-feature-icon i::before {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
    color: white !important;
}

/* Extra spesifik seçici ana feature ikonları için */
.features .main-feature-icon i,
.features .main-feature-icon i::before,
.feature-item .main-feature-icon i,
.feature-item .main-feature-icon i::before {
    color: white !important;
    background: none !important;
    background-image: none !important;
    -webkit-text-fill-color: white !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    text-shadow: none !important;
}

/* Product Card'ları için küçük SVG Icon'lar - AYRI SINIFLAR */

/* Product Feature Icon'ları (Premium özellikler için) */
.product-feature-icon {
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 14px !important;
    height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.product-feature-icon svg {
    width: 14px !important;
    height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    stroke-width: 2.5 !important;
    transform: none !important;
    transform-origin: center !important;
}

/* Product Delivery Icon'ları (Teslimat bilgisi için) */
.product-delivery-icon {
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 12px !important;
    height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}

.product-delivery-icon svg {
    width: 12px !important;
    height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
    stroke-width: 2.2 !important;
    transform: none !important;
    transform-origin: center !important;
}

/* Genel feature-icon sınıfı (diğer kullanımlar için) */
.feature-icon {
    color: #667eea;
    display: flex;
    align-items: center;
    width: 12px !important;
    height: 12px !important;
    max-width: 12px !important;
    max-height: 12px !important;
    overflow: hidden !important;
}

.feature-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
}

.features-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: floating 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 3s;
}

.floating-icon i {
    font-size: var(--font-size-xl);
    color: white;
}

@keyframes floating {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@media (max-width: 768px) {
    .features-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .visual-card {
        width: 300px;
        height: 300px;
    }
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: var(--spacing-3xl) 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.step {
    text-align: center;
    position: relative;
    padding: var(--spacing-xl);
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateY(-50%);
    z-index: -1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(99, 102, 241, 0.1);
    transition: var(--transition-base);
}

.step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.step-icon i {
    font-size: var(--font-size-2xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.step-description {
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .step::after {
        display: none;
    }
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--spacing-3xl) 0;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    opacity: 0;
    transition: var(--transition-slow);
}

.testimonial.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.stars {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.stars i {
    color: #fbbf24;
    font-size: var(--font-size-lg);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-base);
}

.author-info h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--spacing-xs);
}

.author-info span {
    font-size: var(--font-size-sm);
    color: var(--gray);
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.dots {
    display: flex;
    gap: var(--spacing-xs);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--gray-light);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-3xl) 0;
    background: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.contact-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--dark);
}

.contact-description {
    font-size: var(--font-size-lg);
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-base);
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-base);
    color: var(--gray);
}

.contact-feature i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.whatsapp-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #25d366;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #25d366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    animation: pulse 2s infinite;
}

.whatsapp-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--dark);
}

.whatsapp-card p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: #25d366;
    color: var(--white);
    padding: var(--spacing-base) var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    margin-bottom: var(--spacing-lg);
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    color: var(--gray);
    font-size: var(--font-size-sm);
}

.contact-info i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        text-align: center;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.footer-title {
    font-size: var(--font-size-xl);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.footer-title i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%);
    transition: var(--transition-base);
}

.footer-logo-image:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(69%) sepia(59%) saturate(3028%) hue-rotate(232deg) brightness(99%) contrast(89%);
}

.footer-description {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.social-links {
    display: flex;
    gap: var(--spacing-base);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--white) !important;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-links a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-section a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-section a:hover {
    color: var(--white);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: var(--gray-light);
}

.contact-detail i {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--dark-light);
    flex-wrap: wrap;
    gap: var(--spacing-base);
}

.footer-copy {
    color: var(--gray-light);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-fixed);
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: var(--font-size-2xl);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    transform: translateY(100px);
    opacity: 0;
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out forwards;
}

.zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN - RADIKAL YENİ YAPILANDIRMA ===== */

/* Desktop First - Mobil Sorunları Sistematik Çözüm */
:root {
    --mobile-header-height: 70px;
    --mobile-spacing-unit: 1rem;
    --mobile-container-padding: 1rem;
}

/* Large Screens */
@media (max-width: 1200px) {
    .container { padding: 0 2rem; }
    .hero-content, .features-content, .contact-content { gap: 2rem; }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-content, .features-content, .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}

/* COMPACT MOBILE DESIGN - YER TASARRUFU ODAKLI */
@media (max-width: 768px) {
    /* TEMEL KONFIGÜRASYON */
    body { overflow-x: hidden; }
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
    }

    /* HEADER - COMPACT */
    .header {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }

    /* LOGO MOBILE STYLES */
    .logo-image {
        height: 55px;
        max-width: 160px;
        margin-right: 8px;
    }

    .footer-logo-image {
        height: 40px;
        max-width: 130px;
    }

    /* NAVİGASYON */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: var(--white);
        padding: 4rem 1.5rem 2rem;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav.active { right: 0; }
    .nav-list {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
        text-align: center;
    }
    .nav-link {
        font-size: 1rem;
        padding: 0.75rem;
        border-radius: 0.5rem;
        background: rgba(99, 102, 241, 0.05);
    }
    .nav-toggle { display: flex; }

    /* HERO - KARŞILAMA EKRANI AYNI KALACAK */
    .hero {
        padding-top: calc(60px + 1.5rem);
        padding-bottom: 2rem;
        min-height: 80vh;
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 0.625rem;
    }

    /* SECTIONS - COMPACT SPACING */
    .services, .features, .process, .testimonials, .contact {
        padding: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.375rem;
        margin-bottom: 0.5rem;
    }
    
    .section-description {
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* SERVİSLER - ULTRA COMPACT - MOBİL OPTIMUM YER TASARRUFU */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem; /* 0.75rem'den düşürüldü */
    }
    
    .service-card {
        padding: 0.75rem; /* 1rem'den düşürüldü */
        border-radius: 0.75rem;
        position: relative;
    }
    
    .service-card.featured::after {
        top: 0.375rem; /* 0.5rem'den düşürüldü */
        right: 0.375rem; /* 0.5rem'den düşürüldü */
        padding: 0.1rem 0.375rem; /* 0.125rem 0.5rem'den düşürüldü */
        font-size: 0.55rem; /* 0.625rem'den düşürüldü */
        border-radius: 0.5rem; /* 0.75rem'den düşürüldü */
    }
    
    .service-icon {
        width: 2rem; /* 2.25rem'den düşürüldü */
        height: 2rem; /* 2.25rem'den düşürüldü */
        margin-bottom: 0.5rem; /* 0.75rem'den düşürüldü */
        border-radius: 0.5rem;
    }
    
    .service-icon i {
        font-size: 0.8rem; /* 0.875rem'den düşürüldü */
    }
    
    .service-title {
        font-size: 0.9rem; /* 0.95rem'den düşürüldü */
        margin-bottom: 0.375rem; /* 0.5rem'den düşürüldü */
        font-weight: 600;
    }
    
    .service-description {
        font-size: 0.75rem; /* 0.8rem'den düşürüldü */
        line-height: 1.3; /* 1.4'ten düşürüldü */
        margin-bottom: 0.5rem; /* 0.75rem'den düşürüldü */
    }
    
    .service-features {
        margin-bottom: 0.5rem; /* 0.75rem'den düşürüldü */
    }
    
    .service-features li {
        font-size: 0.65rem; /* 0.75rem'den düşürüldü */
        margin-bottom: 0.125rem; /* 0.25rem'den düşürüldü */
        display: flex;
        align-items: center;
        gap: 0.25rem; /* 0.375rem'den düşürüldü */
        line-height: 1.2; /* 1.3'ten düşürüldü */
    }
    
    .service-features i {
        font-size: 0.55rem; /* 0.625rem'den düşürüldü */
        color: var(--primary-color);
    }
    
    .service-rating {
        margin-bottom: 0.375rem; /* 0.5rem'den düşürüldü */
        text-align: center;
    }
    
    .service-rating .stars {
        gap: 1px;
        margin-bottom: 0.125rem; /* 0.25rem'den düşürüldü */
    }
    
    .service-rating .stars i {
        font-size: 0.65rem; /* 0.75rem'den düşürüldü */
        color: #fbbf24;
    }
    
    .service-rating span {
        font-size: 0.6rem; /* 0.7rem'den düşürüldü */
        color: var(--gray);
    }
    
    .service-price {
        font-size: 0.85rem; /* 0.95rem'den düşürüldü */
        padding: 0.375rem; /* 0.5rem'den düşürüldü */
        border-radius: 0.5rem;
        font-weight: 700;
        text-align: center;
    }

    /* FEATURES - MINIMAL CARDS */
    .features-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.875rem;
        background: white;
        border-radius: 0.75rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(99, 102, 241, 0.08);
    }
    
    .feature-icon {
        width: 2.25rem;
        height: 2.25rem;
        background: var(--gradient-primary);
        border-radius: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .feature-icon i {
        color: white;
        font-size: 0.875rem;
    }
    
    .feature-content h4 {
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
        color: var(--dark);
    }
    
    .feature-content p {
        font-size: 0.75rem;
        color: var(--gray);
        line-height: 1.4;
        margin: 0;
    }

    /* PROCESS - HORIZONTAL COMPACT */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .step {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 1rem;
        background: white;
        border-radius: 0.75rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        text-align: left;
        position: relative;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
        background: var(--gradient-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.875rem;
        flex-shrink: 0;
        position: static;
        transform: none;
    }
    
    .step-icon {
        display: none; /* Yer tasarrufu için gizle */
    }
    
    .step-content {
        flex: 1;
    }
    
    .step-title {
        font-size: 0.95rem;
        margin-bottom: 0.375rem;
        font-weight: 600;
    }
    
    .step-description {
        font-size: 0.8rem;
        line-height: 1.4;
        color: var(--gray);
    }

    /* TESTIMONIALS - COMPACT */
    .testimonials {
        padding: 1.5rem 0;
    }
    
    .testimonial-content {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-author h4 {
        font-size: 0.875rem;
    }
    
    .testimonial-author span {
        font-size: 0.75rem;
    }

    /* CONTACT - COMPACT */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .contact-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .whatsapp-card {
        padding: 1rem;
        border-radius: 0.75rem;
    }
    
    .whatsapp-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .whatsapp-card p {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    /* FOOTER - MINIMAL & MODERN MOBILE STANDARDS */
    .footer {
        padding: 2.5rem 0 1.5rem;
        background: var(--dark);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Hide extra sections on mobile - keep only logo and contact */
    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        display: none;
    }
    
    .footer-logo-image {
        height: 60px;
        max-width: 180px;
        margin: 0 auto 1rem;
    }
    
    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: var(--white);
        font-weight: 600;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        color: var(--gray-light);
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: var(--white);
        font-weight: 600;
    }
    
    .footer-section ul li,
    .contact-detail {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        line-height: 1.5;
        color: var(--gray-light);
    }
    
    .contact-detail {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .contact-detail i {
        color: var(--primary-color);
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }
    
    /* Social links styling */
    .social-links {
        margin-top: 1.5rem;
        gap: 1.2rem;
        justify-content: center;
        display: flex;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: var(--gradient-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .social-links a:hover {
        transform: scale(1.1);
        box-shadow: var(--shadow-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-copy {
        font-size: 0.8rem;
        color: var(--gray-light);
        line-height: 1.4;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        color: var(--gray-light);
        transition: color 0.3s ease;
    }
    
    .footer-links a:hover {
        color: var(--primary-color);
    }

    /* FLOATING BUTTONS - COMPACT */
    .whatsapp-float {
        bottom: 0.75rem;
        right: 0.75rem;
    }
    
    .whatsapp-float a {
        width: 3rem;
        height: 3rem;
        font-size: 1.125rem;
    }
    
    .back-to-top {
        bottom: 0.75rem;
        left: 0.75rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --font-size-2xl: 1.25rem;
        --font-size-xl: 1.125rem;
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
        --spacing-xl: 1.5rem;
    }
    
    .container {
        padding: 0 var(--spacing-base);
    }
    
    /* Hero section */
    .hero {
        padding: calc(var(--spacing-3xl) + 60px) 0 var(--spacing-2xl);
        min-height: 80vh;
        margin-top: 0;
    }
    
    .hero-content {
        padding-top: var(--spacing-lg);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
/* Footer - Extra Small Devices - Better Proportions */
.footer {
    padding: 2rem 0 1.25rem;
}

.footer-content {
    gap: 1.5rem;
    padding: 0 0.75rem;
}

.footer-logo-image {
    height: 50px;
    max-width: 150px;
    margin-bottom: 0.75rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-description {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    max-width: 260px;
    line-height: 1.5;
}

.contact-detail {
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
}

.contact-detail i {
    font-size: 0.9rem;
    width: 18px;
}

.social-links {
    gap: 1rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    color: white !important;
}

.footer-bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

.footer-copy {
    font-size: 0.75rem;
    line-height: 1.4;
}

.footer-links {
    gap: 1.25rem;
}

.footer-links a {
    font-size: 0.75rem;
}
        line-height: 1.2;
        margin-bottom: var(--spacing-lg);
        margin-top: var(--spacing-base);
    }
    
    .hero-description {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--spacing-base);
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: var(--spacing-base) var(--spacing-lg);
        font-size: var(--font-size-base);
    }
    
    /* Section spacing */
    .services,
    .features,
    .process,
    .testimonials,
    .contact {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
        margin-bottom: var(--spacing-base);
    }
    
    .section-description {
        font-size: var(--font-size-base);
    }
    
    /* Service cards */
    .service-card {
        padding: var(--spacing-base);
    }
    
    .service-card.featured::after {
        top: 10px;
        right: 10px;
        padding: 2px 8px;
        font-size: 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        margin-bottom: var(--spacing-base);
    }
    
    .service-icon i {
        font-size: var(--font-size-base);
    }
    
    .service-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
    }
    
    .service-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-base);
    }
    
    .service-features {
        margin-bottom: var(--spacing-base);
    }
    
    .service-features li {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .service-rating {
        margin-bottom: var(--spacing-xs);
    }
    
    .service-rating .stars {
        gap: 1px;
    }
    
    .service-rating .stars i {
        font-size: 12px;
    }
    
    .service-rating span {
        font-size: 11px;
    }
    
    .service-price {
        font-size: var(--font-size-base);
        padding: var(--spacing-xs);
    }
    
    /* Process steps */
    .step {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
        position: relative;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-base);
        text-align: center;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-base);
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        margin-bottom: 0;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        margin: var(--spacing-lg) auto var(--spacing-base);
        z-index: 1;
    }
    
    .step-icon i {
        font-size: var(--font-size-lg);
    }
    
    .step-title {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .step-description {
        font-size: var(--font-size-sm);
        line-height: 1.5;
    }
    
    /* Features */
    .features-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-lg);
        text-align: center;
    }
    
    .features-list {
        gap: var(--spacing-base);
    }
    
    .feature-item {
        padding: var(--spacing-base);
        margin-bottom: var(--spacing-base);
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-base);
        display: flex;
        align-items: flex-start;
        gap: var(--spacing-base);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-primary);
        border-radius: var(--radius-base);
    }
    
    .feature-icon i {
        color: var(--white);
        font-size: var(--font-size-base);
    }
    
    .feature-content {
        flex: 1;
        min-width: 0;
    }
    
    .feature-item h4 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-xs);
        color: var(--dark);
        font-weight: 600;
    }
    
    .feature-item p {
        font-size: var(--font-size-sm);
        color: var(--gray);
        line-height: 1.5;
        margin: 0;
    }
    
    /* Testimonials */
    .testimonial-content {
        padding: var(--spacing-base);
    }
    
    .testimonial-text {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-base);
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Contact */
    .contact-title {
        font-size: var(--font-size-xl);
        margin-bottom: var(--spacing-base);
    }
    
    .contact-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-lg);
    }
    
    .contact-features {
        gap: var(--spacing-xs);
    }
    
    .contact-feature {
        font-size: var(--font-size-sm);
    }
    
    .whatsapp-card {
        padding: var(--spacing-base);
    }
    
    .whatsapp-card h3 {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-xs);
    }
    
    .whatsapp-card p {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-base);
    }
    
    .whatsapp-btn {
        font-size: var(--font-size-sm);
        padding: var(--spacing-xs) var(--spacing-base);
    }
    
    .contact-info p {
        font-size: var(--font-size-sm);
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-base);
    }
    
    .footer-title {
        font-size: var(--font-size-lg);
        margin-bottom: var(--spacing-base);
    }
    
    .footer-description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-base);
    }
    
    .footer-section h4 {
        font-size: var(--font-size-base);
        margin-bottom: var(--spacing-base);
    }
    
    .footer-section ul li,
    .contact-detail {
        font-size: var(--font-size-sm);
        margin-bottom: 4px;
    }
    
    /* Floating buttons */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: var(--font-size-lg);
    }
    
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 35px;
        height: 35px;
    }
    
    /* Navigation mobile */
    .nav-toggle {
        width: 35px;
        height: 35px;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .logo {
        font-size: var(--font-size-lg);
    }
    
    /* Typography improvements */
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    p {
        line-height: 1.6;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-xl);
    }
    
    .service-card {
        padding: var(--spacing-sm);
    }
    
    .service-title {
        font-size: var(--font-size-sm);
    }
    
    .service-description {
        font-size: 12px;
    }
    
    .service-features li {
        font-size: 11px;
    }
    
    .service-price {
        font-size: var(--font-size-sm);
    }
    
    .whatsapp-float a {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .back-to-top {
        width: 30px;
        height: 30px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --secondary-color: #ff0000;
        --dark: #000000;
        --light: #ffffff;
    }
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .back-to-top,
    .nav-toggle {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}
/* ===== IMAGE PLACEHOLDERS ===== */
/* Placeholder for missing images */
img[src$=".jpg"]:not([src*="data:"]) {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 50%, #d5d5d5 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

img[src$=".jpg"]:not([src*="data:"]):after {
    content: "📷 Görsel Yükleniyor...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Featured Products Placeholder Images */
img[src*="boyama-kitabi.jpg"] {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c8 50%, #a5d6a5 100%) !important;
}

img[src*="sarki-kitabi.jpg"] {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%) !important;
}

/* Product Detail Page Placeholders */
img[src*="boyama-kitabi-main.jpg"] {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c8 50%, #a5d6a5 100%) !important;
}

img[src*="boyama-kitabi-2.jpg"] {
    background: linear-gradient(135deg, #fff3e0 0%, #ffcc02 50%, #ff9800 100%) !important;
}

img[src*="boyama-kitabi-3.jpg"] {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f48fb1 100%) !important;
}

img[src*="boyama-kitabi-4.jpg"] {
    background: linear-gradient(135deg, #e1f5fe 0%, #b3e5fc 50%, #81d4fa 100%) !important;
}

img[src*="sarki-main.jpg"] {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 50%, #ce93d8 100%) !important;
}

img[src*="sarki-2.jpg"] {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c8 50%, #a5d6a5 100%) !important;
}

img[src*="sarki-3.jpg"] {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 50%, #ffe082 100%) !important;
}

img[src*="sarki-4.jpg"] {
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f48fb1 100%) !important;
}

/* Featured Products Mobile Styles - ULTRA COMPACT */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem; /* 1.5rem'den düşürüldü */
    }
    
    .featured-card {
        margin: 0 0.25rem; /* 0.5rem'den düşürüldü */
    }
    
    .product-image {
        height: 160px; /* 200px'den düşürüldü */
    }
    
    .product-title {
        font-size: 0.9rem; /* 1rem'den düşürüldü */
    }
    
    .product-content {
        padding: 1rem; /* Default padding düşürüldü */
    }
    
    .product-badge {
        top: 8px; /* 15px'den düşürüldü */
        left: 8px; /* 15px'den düşürüldü */
        padding: 0.25rem 0.5rem; /* 0.5rem 1rem'den düşürüldü */
        font-size: 0.6rem; /* 0.8rem'den düşürüldü */
        border-radius: 12px; /* 25px'den düşürüldü */
    }
    
    /* Mobile Premium Card Styles - KOMPAKT */
    .premium-card {
        margin: 0 0.25rem 0.75rem; /* 0.5rem 1.5rem'den düşürüldü */
        border-radius: 10px; /* 12px'den düşürüldü */
    }
    
    .campaign-badge {
        font-size: 0.55rem; /* 0.7rem'den düşürüldü */
        padding: 0.1rem 0.375rem; /* 0.2rem 0.6rem'den düşürüldü */
    }
    
    .product-subtitle {
        font-size: 0.75rem; /* 0.85rem'den düşürüldü */
    }
    
    .product-features {
        gap: 0.2rem; /* 0.4rem'den düşürüldü */
        margin-bottom: 0.5rem;
    }
    
    /* FEATURE TAG'LERİ MİNİMAL - MOBİL */
    .feature-tag {
        font-size: 0.55rem; /* 0.7rem'den çok düşürüldü */
        padding: 0.1rem 0.3rem; /* 0.2rem 0.6rem'den çok düşürüldü */
        border-radius: 4px;
        line-height: 1.1;
    }
    
    /* Özel Feature Tag'leri - Ultra Küçük */
    .feature-tag.shipping {
        font-size: 0.5rem;
        padding: 0.05rem 0.25rem;
    }
    
    .feature-tag.gift {
        font-size: 0.5rem;
        padding: 0.05rem 0.25rem;
    }
    
    .feature-tag.digital {
        font-size: 0.5rem;
        padding: 0.05rem 0.25rem;
    }
    
    .feature-tag.music {
        font-size: 0.5rem;
        padding: 0.05rem 0.25rem;
    }
    
    .modern-pricing {
        padding: 0.5rem; /* 0.8rem'den düşürüldü */
        margin: 0.5rem 0; /* 0.8rem'den düşürüldü */
        border-radius: 8px;
    }
    
    .price-amount {
        font-size: 1.25rem; /* 1.5rem'den düşürüldü */
    }
    
    .price-currency {
        font-size: 0.85rem; /* 1rem'den düşürüldü */
    }
    
    .delivery-info {
        padding: 0.375rem; /* 0.6rem'den düşürüldü */
        font-size: 0.7rem; /* 0.8rem'den düşürüldü */
        margin-bottom: 0.75rem;
    }
    
    .product-cta {
        padding: 0.5rem 1rem; /* 0.75rem 1.2rem'den düşürüldü */
        font-size: 0.75rem; /* 0.85rem'den düşürüldü */
    }

    .current-price {
        font-size: 1rem; /* 1.1rem'den düşürüldü */
    }
    
    .product-link {
        padding: 0.5rem 1rem; /* 0.6rem 1.2rem'den düşürüldü */
        font-size: 0.8rem; /* 0.9rem'den düşürüldü */
        border-radius: 15px; /* 25px'den düşürüldü */
    }
    
    .product-category {
        font-size: 0.75rem; /* 0.9rem'den düşürüldü */
        margin-bottom: 0.5rem; /* 1rem'den düşürüldü */
    }
    
    .product-pricing {
        margin-bottom: 0.5rem; /* 1rem'den düşürüldü */
        gap: 0.5rem; /* 0.75rem'den düşürüldü */
    }
    
    .old-price {
        font-size: 0.8rem; /* 0.9rem'den düşürüldü */
    }
}
/* ===== LUXURY MOBILE STYLES ===== */
@media (max-width: 768px) {
    /* Mobile Luxury Card Styles */
    .luxury-product-card {
        max-width: 100%;
        margin: 0 0.5rem 1.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    
    .luxury-content {
        padding: 20px 18px 24px;
    }
    
    .luxury-title {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .luxury-subtitle {
        font-size: 0.85rem;
    }
    
    .luxury-badge {
        top: 12px;
        left: 12px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .luxury-features {
        gap: 4px; /* 8px'den düşürüldü */
        margin-bottom: 12px; /* 20px'den düşürüldü */
        flex-wrap: wrap;
    }
    
    .luxury-feature {
        padding: 2px 6px; /* 6px 10px'den küçültüldü */
        font-size: 0.6rem; /* 0.75rem'den küçültüldü */
        border-radius: 4px; /* Daha küçük border radius */
        line-height: 1.2;
    }
    
    .feature-icon {
        display: flex;
        align-items: center;
    }
    
    .feature-icon svg,
    .feature-icon i {
        width: auto;
        height: auto;
        font-size: 24px;
    }
    
    /* Özel Feature Etiketleri - Ultra Kompakt */
    .premium-shipping {
        padding: 1px 4px; /* Çok küçük padding */
        font-size: 0.55rem; /* Çok küçük font */
    }
    
    .premium-gift {
        padding: 1px 4px;
        font-size: 0.55rem;
    }
    
    .premium-music {
        padding: 1px 4px;
        font-size: 0.55rem;
    }
    
    .premium-digital {
        padding: 1px 4px;
        font-size: 0.55rem;
    }
    
    /* Feature icon'ları düzelt */
    .premium-shipping .feature-icon,
    .premium-gift .feature-icon,
    .premium-music .feature-icon,
    .premium-digital .feature-icon {
        width: 16px;
        height: 16px;
        font-size: 16px;
    }
    
    .luxury-pricing {
        padding: 16px;
        margin-bottom: 16px;
        border-radius: 12px;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .currency-symbol {
        font-size: 1rem;
    }
    
    .starting-from {
        font-size: 0.8rem;
    }
    
    .price-description {
        font-size: 0.7rem;
    }
    
    .luxury-rating {
        margin-bottom: 14px;
        gap: 10px;
    }
    
    .star {
        font-size: 1rem;
    }
    
    .rating-count {
        font-size: 0.75rem;
    }
    
    .luxury-delivery {
        padding: 10px 12px;
        margin-bottom: 20px;
        font-size: 0.8rem;
    }
    
    .delivery-icon svg {
        width: 12px;
        height: 12px;
    }
    
    .luxury-cta {
        padding: 14px 20px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .cta-arrow svg {
        width: 14px;
        height: 14px;
    }
}
/* ===== E-COMMERCE STYLES ===== */
/* Product Variants */
.product-variants {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.variant-group {
    margin-bottom: 1.5rem;
}

.variant-group:last-child {
    margin-bottom: 0;
}

.variant-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-size: 0.95rem;
}

.variant-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.variant-select:hover {
    border-color: var(--primary-color);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    background: white;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
}

.qty-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

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

#quantity {
    border: none;
    padding: 0.75rem;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: white;
}

#quantity:focus {
    outline: none;
    background: #f8f9fa;
}

/* Purchase Section */
.purchase-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

.total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.total-amount {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Action Buttons for E-commerce */
.action-buttons {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-buy-now {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-buy-now:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0a6b5a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-buy-now i {
    font-size: 1.2rem;
}

/* Quick Features */
.quick-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem;
    background: white;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

/* Mobile Responsive E-commerce */
@media (max-width: 768px) {
    .product-variants {
        margin: 1rem 0;
        padding: 1rem;
    }
    
    .purchase-section {
        margin: 1.5rem 0;
        padding: 1rem;
    }
    
    .total-price {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .total-label {
        font-size: 1rem;
    }
    
    .total-amount {
        font-size: 1.2rem;
    }
    
    .action-buttons {
        margin-top: 0.75rem;
    }
    
    .btn-buy-now {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        max-width: 100%;
    }
    
    .quick-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .feature-item {
        padding: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1.2rem;
    }
    
    .feature-item span {
        font-size: 0.75rem;
    }
}

/* Desktop specific styles */
@media (min-width: 1024px) {
    .action-buttons {
        margin-top: 1.5rem;
    }
    
    .btn-buy-now {
        padding: 1.125rem 2.5rem;
        font-size: 1.2rem;
        max-width: 400px;
    }
    
    .quick-features {
        margin: 2rem 0;
    }
    
    .feature-item {
        padding: 1rem;
    }
    
    .feature-item i {
        font-size: 1.8rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}
/* ===== MOBİL ÜRÜN İLAN NORMLARI ===== */
/* Mobile-first product page design inspired by Zara, Nike, Pull&Bear */

/* Product Header Section */
.product-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.product-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    color: var(--dark);
}

.product-category {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

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

.product-rating .stars {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.8rem;
    color: #666;
}

.product-price {
    margin-bottom: 1rem;
}

.price-current {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-text {
    font-size: 0.85rem;
    color: #666;
    margin-left: 0.5rem;
}

.product-summary {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

/* Product Details Section */
.product-details-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e9ecef;
}

.product-details-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 0.5rem;
}

.product-details-section h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

/* Product Description */
.product-description-detailed {
    margin-bottom: 2rem;
}

.product-description-detailed p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1rem;
}

/* Product Specifications */
.product-specifications {
    margin-bottom: 2rem;
}

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

.specs-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #444;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list li strong {
    color: var(--dark);
    font-weight: 600;
}

/* Order Process Steps */
.order-process {
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.step-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Payment Options */
.payment-options {
    margin-bottom: 2rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.1);
}

.payment-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.payment-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .product-header h1 {
        font-size: 1.2rem;
    }
    
    .price-current {
        font-size: 1.3rem;
    }
    
    .product-summary {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .product-details-section {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .step {
        padding: 0.75rem;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .step-content h4 {
        font-size: 0.9rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .payment-item {
        padding: 0.75rem 0.25rem;
    }
    
    .payment-item i {
        font-size: 1.2rem;
    }
    
    .payment-item span {
        font-size: 0.75rem;
    }
}

/* Desktop Optimizations */
@media (min-width: 1024px) {
    .product-header h1 {
        font-size: 1.6rem;
    }
    
    .price-current {
        font-size: 1.7rem;
    }
    
    .product-summary {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .step {
        flex: 1;
        flex-direction: column;
        text-align: center;
        max-width: 200px;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .payment-methods {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .payment-item {
        padding: 1.25rem 1rem;
    }
    
    .payment-item i {
        font-size: 1.8rem;
    }
    
    .payment-item span {
        font-size: 0.9rem;
    }
}
/* ===== DESKTOP ÜRÜN SAYFASI DÜZENLEMESİ ===== */
/* Desktop product page layout optimization */

/* Ana konteyner */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Product detail grid - mobil için dikey, desktop için yatay */
.product-detail-grid {
    display: block;
}

.product-info {
    margin-top: 1rem;
}

/* Desktop Grid Layout */
@media (min-width: 768px) {
    .product-detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: start;
    }
    
    .product-images {
        max-width: 100%;
    }
    
    .product-info {
        margin-top: 0;
        padding-left: 1rem;
    }
    
    /* Compact design for desktop */
    .product-container {
        max-width: 1000px;
        padding: 0 1.5rem;
    }
    
    .product-detail-grid {
        gap: 1.5rem;
        padding: 1.5rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        background: white;
        margin-bottom: 2rem;
    }
}

/* Desktop Layout - Images left, Product Info right */
@media (min-width: 1024px) {
    .product-container {
        max-width: 1100px;
        padding: 0 2rem;
    }
    
    .product-detail-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: start;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        background: white;
        margin-bottom: 2rem;
    }
    
    .product-images {
        max-width: 100%;
    }
    
    .product-info {
        margin-top: 0;
    }
    
    /* Enhanced images for desktop */
    .main-image {
        height: 450px;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    .main-image img,
    .image-placeholder {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .thumbnail-images {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .thumbnail {
        height: 90px;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .thumbnail img,
    .thumbnail-placeholder {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* Product info styling */
    .product-header h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }
    
    .product-category {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .product-rating {
        margin-bottom: 1.5rem;
    }
    
    .product-price {
        margin-bottom: 2rem;
    }
    
    .price-current {
        font-size: 2rem;
        font-weight: 700;
    }
    
    .price-text {
        font-size: 1rem;
    }
    
    .product-summary {
        font-size: 1rem;
        padding: 1rem;
        margin-top: 1rem;
    }
    
    /* Varyantlar desktop - Compact */
    .product-variants {
        margin: 1.5rem 0;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .variant-group {
        margin-bottom: 1.5rem;
    }
    
    .variant-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .variant-select {
        padding: 0.75rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    .quantity-selector {
        width: fit-content;
    }
    
    .qty-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        min-width: 45px;
    }
    
    #quantity {
        padding: 0.75rem;
        width: 70px;
        font-size: 1rem;
    }
    
    /* Satın alma bölümü desktop - Compact */
    .purchase-section {
        margin: 1.5rem 0;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .total-price {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 8px;
    }
    
    .total-label {
        font-size: 1.1rem;
    }
    
    .total-amount {
        font-size: 1.4rem;
    }
    
    .btn-buy-now {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        border-radius: 8px;
    }
    
    /* Hızlı özellikler desktop - Compact */
    .quick-features {
        margin: 1.5rem 0;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    /* Ürün detayları bölümü desktop - Compact */
    .product-details-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .product-details-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .product-description-detailed,
    .product-specifications,
    .order-process,
    .payment-options {
        margin-bottom: 2rem;
    }
    
    .product-description-detailed p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .specs-list li {
        padding: 0.75rem 0;
        font-size: 0.95rem;
    }
    
    /* Breadcrumb desktop - Enhanced visibility */
    .breadcrumb {
        margin-bottom: 2rem;
        font-size: 1.1rem;
        padding: 1.5rem 2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 100;
    }
}

/* Ekstra büyük ekranlar için */
@media (min-width: 1400px) {
    .product-container {
        max-width: 1600px;
        padding: 0 3rem;
    }
    
    .product-detail-grid {
        gap: 4rem;
    }
    
    .main-image {
        height: 500px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }
    
    .thumbnail {
        height: 140px;
    }
    
    .product-header h1 {
        font-size: 2.2rem;
    }
    
    .price-current {
        font-size: 2.2rem;
    }
}
/* ===== ADDITIONAL PRODUCT INFO SECTION ===== */
.product-additional-info {
    background: #f8f9fa;
    padding: 3rem 0;
    margin-top: 2rem;
    width: 100%;
    clear: both;
    overflow: visible;
    position: relative;
}

.product-additional-info .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.product-additional-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.product-description-detailed,
.product-specifications,
.order-process {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    clear: both;
}

.product-description-detailed p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.specs-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
}

.specs-list li:last-child {
    border-bottom: none;
}

.specs-list strong {
    color: var(--primary-color);
    font-weight: 600;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
/* Mobile optimizations for additional info */
@media (max-width: 767px) {
    .product-additional-info {
        padding: 1.5rem 0;
        margin-top: 1.5rem;
        background: #f8f9fa;
        clear: both;
        width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .product-additional-info .container {
        padding: 0 1.5rem;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .product-additional-info h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        font-weight: 600;
        color: #333;
        text-align: left;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        max-width: 100%;
    }
    
    .product-description-detailed,
    .product-specifications,
    .order-process {
        background: white;
        padding: 1.25rem;
        margin: 0 0 1.5rem 0;
        border-radius: 10px;
        border: none;
        width: 100%;
        box-sizing: border-box;
        clear: both;
        position: relative;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        overflow: hidden;
    }
    
    .product-description-detailed p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
        color: #555;
        text-align: left;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .product-description-detailed p:last-child {
        margin-bottom: 0;
    }
    
    .specs-list {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
        overflow: hidden;
    }
    
    .specs-list li {
        padding: 0.75rem 0;
        font-size: 0.85rem;
        line-height: 1.5;
        border-bottom: 1px solid #eee;
        display: block;
        width: 100%;
        clear: both;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .specs-list li:last-child {
        border-bottom: none;
    }
    
    .specs-list li strong {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-color);
        display: block;
        margin-bottom: 0.3rem;
        word-wrap: break-word;
    }
    
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }
    
    .step {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 0.75rem 0;
        width: 100%;
        clear: both;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        margin-top: 0;
        flex-shrink: 0;
        background: var(--primary-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
    }
    
    .step-content {
        flex: 1;
        padding-top: 0.2rem;
        width: calc(100% - 60px);
        min-width: 0;
        overflow: hidden;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
        font-weight: 600;
        color: #333;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin: 0;
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Desktop optimizations for additional info */
@media (min-width: 768px) {
    .product-additional-info .container {
        padding: 0 2rem;
    }
    
    .product-description-detailed,
    .product-specifications,
    .order-process {
        padding: 2.5rem;
    }
    
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        flex: 1;
        max-width: 250px;
    }
    
    .step-number {
        margin: 0 auto 1rem auto;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}
/* ===== PRODUCT DETAIL PAGE STYLES ===== */
/* Moved from urun1.html inline styles for better organization */

.product-detail {
    padding: 2rem 0;
    background: #f8f9fa;
    margin-top: 80px; /* Header için boşluk */
    position: relative;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-color);
    z-index: 100;
    position: relative;
    padding: 0.5rem 0;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-images {
    position: relative;
}

.main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    height: 500px;
    position: relative;
    cursor: zoom-in;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.thumbnail-images {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.thumbnail {
    width: 85px;
    height: 85px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.thumbnail.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(var(--primary-color-rgb), 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.05);
}

/* Zoom Badge */
.zoom-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image:hover .zoom-badge {
    opacity: 1;
}

/* ===== LIGHTBOX MODAL ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(20px);
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: modalZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.1rem;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.lightbox-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.lightbox-thumb.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

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

@keyframes modalZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile lightbox optimizations */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
        background: rgba(0, 0, 0, 0.8);
        z-index: 10001;
    }
    
    .lightbox-nav {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-prev {
        left: -60px;
    }
    
    .lightbox-next {
        right: -60px;
    }
    
    .lightbox-thumbnails {
        gap: 8px;
        margin-top: 15px;
    }
    
    .lightbox-thumb {
        width: 50px;
        height: 50px;
    }
}

/* ===== PREMIUM SATINALMA BİLDİRİM SİSTEMİ ===== */
.purchase-notification {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)) !important;
    color: #2d3748 !important;
    padding: 20px 24px !important;
    border-radius: 20px !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    z-index: 9999 !important;
    max-width: 380px !important;
    min-width: 320px !important;
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    overflow: hidden !important;
    position: relative !important;
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.purchase-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 300% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.purchase-notification.show {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Doğrudan stil ekleme için yardımcı sınıf */
.notification-visible {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.purchase-notification.hide {
    transform: translateX(-100%);
    opacity: 0;
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    position: relative;
}

.notification-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.notification-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: iconShine 2s ease-in-out infinite;
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.notification-title {
    font-weight: 700;
    font-size: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.notification-title::after {
    content: '✨';
    margin-left: 6px;
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

.notification-content {
    margin-left: 58px;
    position: relative;
}

.notification-customer {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 6px;
}

.notification-customer::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.notification-product {
    font-size: 0.85rem;
    color: #4a5568;
    margin-bottom: 6px;
    font-weight: 500;
    line-height: 1.3;
}

.notification-time {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.notification-time::before {
    content: '🕐';
    font-size: 0.7rem;
}

.notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #4a5568;
    cursor: pointer !important;
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: #2d3748;
}

/* Web versiyonu - sol alt */
@media (min-width: 769px) {
    .purchase-notification {
        bottom: 30px;
        left: 30px;
        right: auto;
    }
}

/* Mobil versiyonu - sol alt minimal */
@media (max-width: 768px) {
    .purchase-notification {
        bottom: 20px !important;
        left: -100% !important;
        top: auto !important;
        right: auto !important;
        transform: translateX(0) translateY(0) !important;
        max-width: 280px !important;
        width: 260px !important;
        padding: 10px 14px !important;
        border-radius: 10px !important;
        min-width: auto !important;
        display: block !important;
        position: fixed !important;
        z-index: 99999 !important;
        visibility: visible !important;
        box-shadow: 0 6px 24px rgba(0,0,0,0.4) !important;
        border: 1px solid rgba(255,255,255,0.3) !important;
        background: rgba(0,0,0,0.85) !important;
        backdrop-filter: blur(12px) !important;
    }
    
    .purchase-notification.show {
        transform: translateX(0) translateY(0) !important;
        left: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .purchase-notification.notification-visible {
        transform: translateX(0) translateY(0) !important;
        left: 20px !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .purchase-notification.hide {
        transform: translateX(-100%) translateY(0) !important;
        left: -100% !important;
        opacity: 0 !important;
    }
    
    .notification-header {
        margin-bottom: 6px;
        gap: 8px;
    }
    
    .notification-icon {
        width: 28px;
        height: 28px;
        font-size: 13px;
        border-radius: 6px;
        flex-shrink: 0;
        background: #4ade80 !important;
        color: #ffffff !important;
    }
    
    .notification-title {
        font-size: 0.8rem;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff !important;
    }
    
    .notification-content {
        margin-left: 36px;
        line-height: 1.3;
    }
    
    .notification-customer {
        font-size: 0.75rem;
        font-weight: 600;
        margin-bottom: 2px;
        color: #ffffff !important;
    }
    
    .notification-product {
        font-size: 0.7rem;
        font-weight: 500;
        margin-bottom: 3px;
        color: #e5e7eb !important;
        line-height: 1.2;
    }
    
    .notification-time {
        font-size: 0.65rem;
        font-weight: 500;
        color: #9ca3af !important;
    }
    
    .notification-close {
        width: 20px;
        height: 20px;
        top: 6px;
        right: 6px;
        border-radius: 3px;
        font-size: 11px;
        color: #ffffff !important;
        background: rgba(255,255,255,0.2) !important;
        z-index: 999999 !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        position: absolute !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: none !important;
        outline: none !important;
    }
    
    .notification-close:hover {
        background: rgba(255,255,255,0.3) !important;
        transform: scale(1.1) !important;
        opacity: 1 !important;
    }
    
    .notification-close:active {
        transform: scale(0.95) !important;
        background: rgba(255,255,255,0.4) !important;
    }
}

/* Gradient varyasyonları */
.purchase-notification.variant-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.purchase-notification.variant-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.purchase-notification.variant-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.purchase-notification.variant-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.purchase-notification.variant-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.product-category {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

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

.stars {
    color: #ffc107;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.product-price {
    margin-bottom: 2rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-weight: 500;
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 1rem;
}

.option-special {
    font-size: 0.8rem;
    color: #ff6b6b;
    font-weight: 600;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 1rem;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.product-features {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.features-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.features-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

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

.btn-order {
    flex: 1;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

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

/* Page Options Styles */
.page-options {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.options-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.options-title i {
    color: var(--primary-color);
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.15);
}

.option-item.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.page-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.option-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.option-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.option-description {
    font-size: 0.9rem;
    color: var(--text-color);
    font-weight: 500;
}

.option-discount {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.recommended-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(45deg, #ff6b6b, #ff5252);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-bottom-left-radius: 8px;
    transform: translateX(0.5rem) translateY(-0.1rem) rotate(2deg);
}

.option-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.info-item i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ===== PRODUCT PAGE MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    /* MOBILE OPTIMIZATION FOR PRODUCT PAGES */
    body {
        padding-top: 70px;
        overflow-x: hidden;
    }
    
    /* Header mobile adjustments */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .header .container {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }
    
    .logo {
        font-size: 1.1rem;
        z-index: 1001;
        flex-shrink: 0;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: linear-gradient(45deg, #6366f1, #8b5cf6);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 5rem 2rem 2rem;
        transition: all 0.3s ease;
        z-index: 999;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    .nav-link {
        color: var(--dark);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        background: rgba(99, 102, 241, 0.05);
        transition: all 0.3s ease;
        display: block;
    }
    
    .nav-link:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    /* Product detail mobile layout */
    .product-detail {
        padding: 1rem 0;
        margin-top: 0;
    }
    
    .product-container {
        padding: 0 0.75rem;
    }
    
    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
        line-height: 1.4;
        color: var(--text-color);
        z-index: 10;
        position: relative;
        padding-top: 0.5rem; /* Mobilde üstten biraz boşluk */
    }
    
    .product-detail-grid {
        display: block;
        gap: 0;
        padding: 1rem;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        background: white;
        margin: 0 0.5rem;
    }
    
    /* Mobile-optimized product images */
    .main-image {
        height: 250px;
        margin-bottom: 0.75rem;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .main-image img {
        height: 250px;
        width: 100%;
        object-fit: cover;
    }
    
    .thumbnail-images {
        gap: 0.3rem; /* Mobilde daha az boşluk */
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        cursor: pointer;
        flex-shrink: 0; /* Küçülmeyi engelle */
    }
    
    .thumbnail.active {
        border-color: var(--primary-color);
        transform: scale(1.05);
    }
    
    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Mobile product info */
    .product-info {
        margin-top: 1rem;
        padding: 0;
        max-width: 100%;
        overflow: hidden;
    }
    
    .product-info h1 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
        font-weight: 700;
        color: var(--dark);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-category {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
        color: var(--primary-color);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .product-rating {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    
    .stars {
        font-size: 0.9rem;
        color: #ffc107;
    }
    
    .rating-text {
        font-size: 0.8rem;
        color: var(--gray);
    }
    
    .product-price {
        margin-bottom: 1.25rem;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .price-current {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .price-old {
        font-size: 1.1rem;
        color: var(--gray);
        text-decoration: line-through;
    }
    
    .discount-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
        border-radius: 20px;
        background: linear-gradient(45deg, #ff6b6b, #ff5252);
        color: white;
        font-weight: 600;
    }
    
    .product-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
        color: var(--dark);
    }
    
    .product-features {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1.25rem;
        background: #f8f9fa;
    }
    
    .features-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        color: var(--dark);
        font-weight: 600;
    }
    
    .features-list li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        gap: 0.5rem;
        display: flex;
        align-items: center;
        line-height: 1.4;
    }
    
    .features-list i {
        font-size: 1rem;
        color: var(--primary-color);
        flex-shrink: 0;
    }
    
    /* Touch-friendly action buttons */
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .btn-order, .btn-whatsapp, .btn-buy-now {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        min-height: 48px; /* Touch-friendly minimum */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-decoration: none;
        color: white;
    }
    
    .btn-order {
        background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
        color: white;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }
    
    .btn-order:hover, .btn-order:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
    }
    
    .btn-whatsapp {
        background: #25d366;
        color: white;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    
    .btn-whatsapp:hover, .btn-whatsapp:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        background: #20ba5a;
    }
    
    /* Mobile styles for page options */
    .page-options {
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1.25rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .options-title {
        font-size: 1rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
        color: var(--dark);
        font-weight: 600;
    }
    
    .options-grid {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .option-item {
        padding: 0.75rem;
        border-radius: 10px;
        border: 2px solid #e2e8f0;
        background: white;
        transition: all 0.3s ease;
    }
    
    .option-item:hover, .option-item.active {
        border-color: var(--primary-color);
        background: linear-gradient(135deg, #f0f7ff 0%, #e6f3ff 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
    }
    
    .option-header {
        margin-bottom: 0.5rem;
    }
    
    .page-count {
        font-size: 1rem;
        font-weight: 600;
        color: var(--dark);
    }
    
    .option-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--primary-color);
    }
    
    .option-description {
        font-size: 0.8rem;
        color: var(--dark);
        font-weight: 500;
    }
    
    .option-discount {
        font-size: 0.75rem;
        color: var(--gray);
    }
    
    .recommended-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
    }
    
    .option-info {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }
    
    .info-item {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
        gap: 0.4rem;
        color: var(--gray);
    }
    
    .info-item i {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .product-container {
        padding: 0 0.5rem;
    }
    
    .product-detail-grid {
        padding: 0.75rem;
        gap: 1rem;
    }
    
    .main-image {
        height: 200px;
    }
    
    .main-image img {
        height: 200px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .product-info h1 {
        font-size: 1.1rem;
    }
    
    .price-current {
        font-size: 1.5rem;
    }
    
    .price-old {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .features-list li {
        font-size: 0.8rem;
    }
    
    .btn-order, .btn-whatsapp {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ===== STEP PROCESS FIXES ===== */
.order-process {
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: static;
    transform: none;
    margin: 0;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 0.2rem;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.3;
}

.step-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Desktop step layout */
@media (min-width: 768px) {
    .process-steps {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .step {
        flex: 1;
        flex-direction: column;
        text-align: center;
        max-width: 250px;
        padding: 1.5rem;
        align-items: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .step-content {
        padding-top: 0;
        text-align: center;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .step-content p {
        font-size: 0.95rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .order-process {
        margin-bottom: 1.5rem;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .step-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.375rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}
/* ===== ADDITIONAL PRODUCT SECTIONS (from urun2.html) ===== */
.additional-sections {
    margin-top: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-divider {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 2rem 0;
    border-radius: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.feature-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.feature-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.product-description-section h3,
.product-features-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Mobile styles for additional sections */
@media (max-width: 768px) {
    .additional-sections {
        margin-top: 1.5rem;
        padding: 1rem;
        border-radius: 15px;
    }
    
    .section-divider {
        margin: 1.5rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        padding: 0.75rem;
    }
    
    .product-description-section h3,
    .product-features-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .product-description-section p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
}
/* ===== TOUCH TARGET OPTIMIZATION (Task 1.2) ===== */
/* Ensuring all interactive elements meet 44px minimum touch target */

/* Global touch target rules */
button, 
a,
input[type="submit"],
input[type="button"],
.btn,
.nav-link,
.product-card,
.thumbnail,
.action-buttons button,
.nav-toggle,
.featured-card,
.service-card {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(74, 144, 226, 0.2);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Enhanced button spacing for touch */
.action-buttons {
    gap: 12px; /* Increased for better touch separation */
}

.action-buttons button {
    padding: 12px 20px;
    margin: 6px 0; /* Vertical spacing for touch */
}

/* Navigation touch optimization */
.nav-link {
    padding: 12px 16px;
    margin: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Product card touch optimization */
.product-card, .featured-card, .service-card {
    margin: 8px 0;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.product-card:active, .featured-card:active, .service-card:active {
    transform: scale(0.98);
    background-color: rgba(74, 144, 226, 0.05);
}

/* Form input touch optimization */
input, 
textarea, 
select {
    min-height: 44px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px; /* Prevents zoom on iOS */
    touch-action: manipulation;
}

/* Thumbnail touch optimization */
.thumbnail {
    min-width: 60px;
    min-height: 60px;
    margin: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.thumbnail:active {
    transform: scale(0.95);
}

/* WhatsApp floating button touch */
.whatsapp-float a {
    min-width: 56px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Back to top button touch */
.back-to-top {
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile-specific touch enhancements */
@media (max-width: 768px) {
    /* Larger touch targets on mobile */
    button, 
    a,
    .btn,
    .nav-link,
    .product-card,
    .featured-card,
    .service-card {
        min-height: 48px;
        min-width: 48px;
    }
    
    /* Enhanced spacing for mobile */
    .action-buttons {
        gap: 16px;
        flex-direction: column;
    }
    
    .action-buttons button {
        width: 100%;
        padding: 16px 20px;
        margin: 8px 0;
    }
    
    /* Mobile navigation touch */
    .nav-link {
        padding: 16px 20px;
        margin: 8px 0;
        font-size: 16px;
    }
    
    /* Product card mobile touch */
    .product-card, .featured-card, .service-card {
        margin: 12px 0;
        padding: 16px;
    }
    
    /* Thumbnail mobile touch */
    .thumbnail {
        min-width: 64px;
        min-height: 64px;
        margin: 6px;
    }
    
    /* Form inputs mobile optimization */
    input, 
    textarea, 
    select {
        min-height: 48px;
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
    }
    
    /* Touch feedback enhancements */
    .btn:active,
    button:active {
        transform: translateY(1px) scale(0.98);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Navigation toggle mobile touch */
    .nav-toggle {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
        border-radius: 8px;
    }
    
    .nav-toggle:active {
        background-color: rgba(74, 144, 226, 0.1);
    }
    
    /* Enhanced mobile touch for interactive elements */
    .btn-order, .btn-whatsapp, .btn-buy-now {
        min-height: 48px;
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        touch-action: manipulation;
    }
    
    /* Mobile header touch optimization */
    .logo {
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    /* Mobile menu items touch */
    .nav-list li {
        margin: 4px 0;
    }
    
    /* Mobile floating buttons touch */
    .whatsapp-float a {
        min-width: 60px;
        min-height: 60px;
    }
    
    .back-to-top {
        min-width: 52px;
        min-height: 52px;
    }
}

/* Very small devices additional touch optimization */
@media (max-width: 480px) {
    /* Ensure minimum touch targets for very small screens */
    button, 
    a,
    .btn,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Compact but touch-friendly spacing */
    .action-buttons {
        gap: 12px;
    }
    
    .action-buttons button {
        padding: 14px 18px;
        margin: 6px 0;
    }
    
    /* Smaller but still touch-friendly elements */
    input, 
    textarea, 
    select {
        min-height: 44px;
        padding: 14px;
    }
    
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 10px;
    }
}

/* Touch interaction feedback */
@media (pointer: coarse) {
    /* Enhanced feedback for touch devices */
    button:active,
    a:active,
    .btn:active,
    .nav-link:active,
    .thumbnail:active {
        transform: scale(0.97);
        transition: transform 0.1s ease;
    }
    
    /* Remove hover effects on touch devices */
    button:hover,
    a:hover,
    .btn:hover,
    .nav-link:hover {
        transform: none;
    }
}

/* Accessibility: Focus indicators for touch targets */
button:focus-visible,
a:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

/* High contrast mode touch targets */
@media (prefers-contrast: high) {
    button,
    a,
    .btn,
    .nav-link {
        border: 2px solid;
        min-height: 46px; /* Account for border */
        min-width: 46px;
    }
}

/* Task 1.2 Completed: All interactive elements now meet 44px minimum touch target requirements */
/* ===== MOBILE NAVIGATION FIXES (Task 1.3) ===== */
/* Body scroll lock, iOS Safari fixes, and navigation enhancements */

/* Body scroll lock utility classes */
.body-scroll-lock {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

/* iOS Safari specific fixes */
.body-scroll-lock.ios-safari {
    position: fixed;
    top: var(--scroll-position, 0);
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

/* Mobile navigation container fixes */
.nav {
    /* Prevent background scroll */
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    
    /* iOS Safari viewport fixes */
    height: 100vh;
    height: -webkit-fill-available;
    
    /* Prevent bounce effect on iOS */
    overscroll-behavior-y: none;
    -webkit-overscroll-behavior-y: none;
}

/* Enhanced mobile navigation for better touch experience */
@media (max-width: 768px) {
    /* Header improvements */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        /* iOS safe area support */
        padding-top: max(0.75rem, env(safe-area-inset-top));
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    /* Body adjustment for fixed header */
    body {
        padding-top: calc(70px + env(safe-area-inset-top));
        overflow-x: hidden;
        /* Prevent horizontal scroll */
        max-width: 100vw;
    }
    
    /* Navigation toggle button enhancements */
    .nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 12px;
        z-index: 1001;
        border-radius: 8px;
        transition: all 0.3s ease;
        /* Touch target optimization */
        min-width: 48px;
        min-height: 48px;
        justify-content: center;
        align-items: center;
    }
    
    .nav-toggle:active {
        background-color: rgba(74, 144, 226, 0.1);
        transform: scale(0.95);
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: linear-gradient(45deg, #6366f1, #8b5cf6);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    /* Animated hamburger menu */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Enhanced mobile navigation menu */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        height: -webkit-fill-available; /* iOS Safari fix */
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        
        /* iOS safe area support */
        padding-top: max(5rem, calc(5rem + env(safe-area-inset-top)));
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    .nav.active {
        right: 0;
    }
    
    /* Smooth navigation list */
    .nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 300px;
        animation: slideInFromRight 0.3s ease-out;
    }
    
    /* Navigation links enhancement */
    .nav-link {
        color: var(--dark);
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 16px 20px;
        border-radius: 12px;
        background: rgba(99, 102, 241, 0.05);
        transition: all 0.3s ease;
        display: block;
        /* Touch optimization */
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    .nav-link:hover {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary-color);
        transform: translateY(-2px);
    }
    
    .nav-link:active {
        transform: translateY(0) scale(0.98);
        background: rgba(99, 102, 241, 0.15);
    }
    
    /* Logo touch optimization */
    .logo {
        font-size: 1.1rem;
        z-index: 1001;
        flex-shrink: 0;
        min-height: 44px;
        display: flex;
        align-items: center;
        touch-action: manipulation;
    }
    
    /* Prevent scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    /* iOS Safari specific menu fixes */
    .nav.ios-safari {
        height: -webkit-fill-available;
        min-height: 100vh;
    }
}

/* Animation keyframes */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* iOS Safari viewport height fix */
@supports (-webkit-touch-callout: none) {
    .nav {
        height: -webkit-fill-available;
    }
    
    .header {
        padding-top: max(0.75rem, env(safe-area-inset-top));
    }
    
    body {
        padding-top: calc(70px + env(safe-area-inset-top));
    }
}

/* Navigation overlay for accessibility */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

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

/* Enhanced touch gestures for navigation */
@media (pointer: coarse) {
    .nav-toggle {
        /* Larger touch target for touch devices */
        min-width: 52px;
        min-height: 52px;
        padding: 14px;
    }
    
    .nav-link {
        /* Enhanced touch targets */
        padding: 18px 24px;
        margin: 6px 0;
    }
}

/* High contrast mode navigation */

/* ===== TRENDYOL ALTERNATIVE PURCHASE SECTION ===== */
.alternative-purchase {
    margin-top: 20px;
    text-align: center;
}

.divider-text {
    position: relative;
    margin: 20px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.divider-text::before,
.divider-text::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 2px;
    background: linear-gradient(90deg, transparent, #e2e8f0 20%, #e2e8f0 80%, transparent);
    transform: translateY(-50%);
}

.divider-text::before {
    left: 0;
}

.divider-text::after {
    right: 0;
}

.divider-text span {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 8px 20px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.btn-trendyol {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-trendyol:hover {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-trendyol:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.btn-trendyol::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.btn-trendyol:hover::before {
    left: 100%;
}

.btn-trendyol i {
    font-size: 18px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .btn-trendyol {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .alternative-purchase {
        margin-top: 15px;
    }
}

/* ===== ÇİÇEKSEPETİ BUTTON STYLES ===== */
.btn-ciceksepeti {
    width: 100%;
    padding: 16px 24px;
    background: #52a13a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(82, 161, 58, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 12px;
    text-decoration: none;
}

.btn-ciceksepeti:hover {
    background: #478f33;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 161, 58, 0.4);
}

.btn-ciceksepeti:active {
    transform: translateY(0);
    transition-duration: 0.1s;
}

.btn-ciceksepeti::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-base);
}

.btn-ciceksepeti:hover::before {
    left: 100%;
}

.btn-ciceksepeti .ciceksepeti-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.btn-ciceksepeti:hover i {
    animation: flowerBounce 0.6s ease;
}

@keyframes flowerBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(5deg); }
}

/* ÇiçekSepeti buton için özel çiçek efekti */
.btn-ciceksepeti::after {
    content: '🌸';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.btn-ciceksepeti:hover::after {
    transform: translateY(-50%) rotate(360deg) scale(1.2);
    opacity: 1;
}

/* Mobile responsive for ÇiçekSepeti button */
@media (max-width: 768px) {
    .btn-ciceksepeti {
        padding: 14px 20px;
        font-size: 15px;
        margin-top: 10px;
    }
    
    .btn-ciceksepeti::after {
        right: 12px;
        font-size: 14px;
    }
}

/* ===== ÇİÇEKSEPETİ MODAL STYLES ===== */
.ciceksepeti-price {
    background: rgba(82, 161, 58, 0.1);
    color: #2d4a22;
    border: 1px solid rgba(82, 161, 58, 0.3);
    border-radius: 8px;
}

.ciceksepeti-price i {
    color: white;
}

.modal-btn.ciceksepeti-btn {
    background: linear-gradient(135deg, #52a13a, #478f33);
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modal-btn.ciceksepeti-btn:hover {
    background: linear-gradient(135deg, #478f33, #3d7829);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 161, 58, 0.4);
}

.modal-btn.ciceksepeti-btn .ciceksepeti-logo-small {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1);
}

.ciceksepeti-price .ciceksepeti-logo-small {
    height: 16px;
    width: auto;
    /* Logo orijinal renklerinde kalacak */
}

@media (max-width: 768px) {
    .divider-text {
        margin: 16px 0;
    }
    
    .divider-text::before,
    .divider-text::after {
        width: calc(50% - 25px);
        height: 1px;
        background: linear-gradient(90deg, transparent, #cbd5e1 30%, #cbd5e1 70%, transparent);
    }
    
    .divider-text span {
        padding: 6px 16px;
        font-size: 11px;
        border-radius: 16px;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid #e2e8f0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }
}
@media (prefers-contrast: high) {
    .nav {
        background: rgba(255, 255, 255, 1);
        border-left: 3px solid var(--primary-color);
    }
    
    .nav-link {
        border: 2px solid transparent;
    }
    
    .nav-link:focus,
    .nav-link:hover {
        border-color: var(--primary-color);
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .nav,
    .nav-toggle span,
    .nav-link {
        transition: none;
    }
    
    .nav-list {
        animation: none;
    }
}

/* Navigation focus management for accessibility */
.nav-link:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

.nav-toggle:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.3);
}

/* Small devices additional fixes */
@media (max-width: 480px) {
    .nav {
        padding-top: max(4rem, calc(4rem + env(safe-area-inset-top)));
    }
    
    .nav-list {
        gap: 1.2rem;
        max-width: 280px;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 16px 18px;
    }
    
    .nav-toggle {
        min-width: 48px;
        min-height: 48px;
        padding: 12px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }
}

/* Task 1.3 Completed: Mobile navigation with body scroll lock and iOS Safari fixes */
/* ===== TRENDYOL MODAL STYLES ===== */
.trendyol-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.trendyol-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalSlideIn 0.4s ease;
}

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

.modal-header {
    display: flex;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 18px;
}

.modal-header h3 {
    flex: 1;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 24px;
}

.price-info {
    margin-bottom: 24px;
}

.price-warning {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fef3cd;
    border: 1px solid #fde047;
    border-radius: 12px;
    margin-bottom: 20px;
}

.price-warning i {
    color: #d97706;
    font-size: 18px;
    margin-top: 2px;
}

.price-warning p {
    margin: 0;
    color: #92400e;
    font-size: 14px;
    line-height: 1.5;
}

.price-comparison {
    display: flex;
    gap: 16px;
}

.price-option {
    flex: 1;
    padding: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s ease;
}

.price-option.whatsapp-price {
    border-color: #10b981;
    background: #f0fdf4;
}

.price-option.trendyol-price {
    border-color: #f97316;
    background: #fff7ed;
}

.price-option i {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.price-option.whatsapp-price i {
    color: #10b981;
}

.price-option.trendyol-price i {
    color: #f97316;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.price-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.modal-message {
    text-align: center;
    color: #4b5563;
    font-size: 16px;
}

.modal-message p {
    margin: 0;
}

.modal-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 12px;
}

.modal-btn {
    flex: 1;
    min-width: 0;
    width: calc(50% - 6px);
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.modal-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.modal-btn:hover:before {
    left: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.trendyol-btn {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.trendyol-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.modal-btn i {
    font-size: 20px;
}

.btn-price {
    font-size: 16px;
    font-weight: 700;
    opacity: 0.9;
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .trendyol-modal {
        padding: 16px;
    }
    
    .modal-content {
        max-width: 100%;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 12px;
    }
    
    .modal-footer {
        padding: 20px;
        flex-direction: row;
        gap: 12px;
    }
    
    .modal-btn {
        padding: 14px 16px;
        font-size: 16px;
    }
}
/* WhatsApp Button Enhanced Styles */
.whatsapp-btn {
    flex-direction: column !important;
    gap: 5px !important;
}

.whatsapp-main-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

.whatsapp-support-text {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    margin-top: 2px;
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
    .feature-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .whatsapp-btn {
        min-height: 44px;
        padding: 12px 24px !important;
    }
    
    .whatsapp-main-text {
        font-size: 1rem;
    }
    
    .whatsapp-support-text {
        font-size: 0.75rem;
    }
}
