/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #6b7280;
    --success-color: #10b981;
    --error-color: #ef4444;
    --warning-color: #f59e0b;
    --bg-color: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e2e8f0;
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --border-color: #f8fafc;
    --border-light: #f1f5f9;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(226, 232, 240, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 50%, #f1f5f9 100%);
    min-height: 100vh;
}

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

/* Header - Light Theme Glass Morphism Tasarımı */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(226, 232, 240, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.8s ease-out;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(79, 70, 229, 0.03) 0%,
        rgba(55, 48, 163, 0.02) 50%,
        rgba(79, 70, 229, 0.03) 100%);
    pointer-events: none;
    z-index: -1;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 var(--border-light);
    transform: translateY(0);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1.2rem 0;
    position: relative;
}

/* Logo - Sol Taraf Temaya Uygun Tasarım */
.logo-left {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.logo-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa, var(--primary-color));
    background-size: 200% 100%;
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.6;
    }
}

.logo-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.logo-link:hover::before {
    opacity: 1;
    animation: none;
}

.logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    min-width: 44px;
    height: 44px;
}

.cart-icon:hover {
    background: var(--bg-tertiary);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--error-color);
    color: white;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--bg-color);
    padding: 0 4px;
    line-height: 1;
    box-sizing: border-box;
    white-space: nowrap;
    z-index: 10;
}

/* Navigation - Ultra Modern */
.nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: center;
    flex: 1;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    margin: 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
    cursor: pointer;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(79, 70, 229, 0.08),
        rgba(79, 70, 229, 0.15),
        rgba(79, 70, 229, 0.08));
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.nav a:hover::before {
    left: 0;
}

.nav a:hover::after {
    width: 300px;
    height: 300px;
}

.nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
}

.nav a.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(55, 48, 163, 0.18));
    border: 1px solid var(--primary-color);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.nav a.active::before {
    left: 0;
}

.nav a:active {
    transform: translateY(0);
    transition: all 0.1s ease;
}

/* Admin Panel Butonu - Özel Tasarım */
.nav a[href*="admin"] {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.nav a[href*="admin"]:hover {
    background: linear-gradient(135deg, var(--primary-dark), #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    color: white !important;
    border-color: var(--primary-dark);
}

.nav a[href*="admin"]::before {
    display: none;
}

/* Profil ve Çıkış Butonları */
.nav a[href*="profile"],
.nav a[href*="logout"] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.nav a[href*="profile"]:hover,
.nav a[href*="logout"]:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--border-color);
    z-index: 10000 !important;
    position: relative;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
    outline: none;
}

.menu-toggle:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.menu-toggle:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    pointer-events: none;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none !important;
    }
    .header-content {
        padding: 1rem 0;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        position: relative;
    }
    
    .logo-left {
        flex-shrink: 1;
        order: 1;
    }
    
    .nav {
        justify-content: flex-end;
        flex: 0;
    }

    .logo-link {
        font-size: 1.3rem;
        padding: 0.4rem 0.8rem;
    }

    .logo-img {
        height: 24px;
    }


    .menu-toggle {
        display: flex !important;
        order: 2;
        margin-left: auto;
        margin-right: 0;
        pointer-events: auto !important;
        touch-action: manipulation;
        z-index: 1002 !important;
        position: relative;
    }
    
    .menu-toggle:active {
        transform: scale(0.95);
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #c2d5f0;
}

.btn-danger {
    background-color: var(--error-color);
    color: var(--white);
}

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

.btn-orange {
    background: linear-gradient(135deg, #fb5607, #ff6b35);
    color: white;
    border: none;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ff6b35, #fb5607);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 86, 7, 0.4);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-large {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    max-height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    display: block !important;
    background: #dce0e7;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block !important;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block !important;
    min-height: 500px;
}

.banner-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.7) 0%, rgba(30, 64, 175, 0.7) 100%);
    padding: 0;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 50%,
        rgba(241, 245, 249, 0.95) 100%);
    padding: 2rem 0;
    counter-reset: banner-counter;
}

.banner-slider::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(148, 163, 184, 0.15) 20%,
        rgba(148, 163, 184, 0.25) 50%,
        rgba(148, 163, 184, 0.15) 80%,
        transparent 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.banner-slider::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg,
        transparent,
        transparent 30px,
        rgba(148, 163, 184, 0.1) 30px,
        rgba(148, 163, 184, 0.1) 32px);
    z-index: 1;
}

.banner-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
}

@media (max-width: 768px) {
    .banner-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .banner-container {
        height: 250px;
    }
}

.banner-slide {
    flex: 0 0 300px;
    height: 250px;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 50%,
        rgba(241, 245, 249, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    counter-increment: banner-counter;
}

/* Banner numarası */
.banner-slide::before {
    content: counter(banner-counter);
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    z-index: 5;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(231, 230, 241, 0.1) 0%,
        rgba(221, 221, 228, 0.08) 50%,
        rgba(79, 70, 229, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.banner-slide:hover {
    transform: translateY(-15px) scale(1.08) rotate(1deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(79, 70, 229, 0.1),
        0 0 0 2px rgba(79, 70, 229, 0.05);
    border-color: rgba(79, 70, 229, 0.2);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(248, 250, 252, 0.95) 50%,
        rgba(241, 245, 249, 0.98) 100%);
}

.banner-slide:hover::before {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(248, 250, 252, 0.5) 50%,
        rgba(241, 245, 249, 0.6) 100%);
}

/* Tren tekerlek efekti - Açık Tema */
.banner-slide::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg,
        rgba(148, 163, 184, 0.8) 0%,
        rgba(100, 116, 139, 0.9) 100%);
    border-radius: 50% 50% 20px 20px;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 15;
}

@media (max-width: 768px) {
    .banner-slide {
        flex: 0 0 250px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .banner-slide {
        flex: 0 0 200px;
        height: 150px;
    }
}

.banner-slide-image {
    width: 100%;
    height: 100%;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 1;
    border-radius: 18px;
    background: rgba(190, 231, 255, 0.8);
}

.banner-slide-placeholder {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    padding: 2rem;
}

.banner-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(248, 250, 252, 0.9) 50%,
        rgba(255, 255, 255, 0.95) 100%);
    color: var(--white);
    z-index: 15;
    border-radius: 0 0 18px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        inset 0 2px 10px rgba(0, 0, 0, 0.05),
        0 -4px 20px rgba(79, 70, 229, 0.1);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    min-height: 80px;
}

@media (max-width: 768px) {
    .banner-slide-content {
        bottom: 30px;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .banner-slide-content {
        bottom: 20px;
        padding: 1rem 1.5rem;
        max-width: 95%;
    }
}

.banner-slide-content h1 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .banner-slide-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-slide-content h1 {
        font-size: 1.5rem;
    }
}

.banner-slide-content p {
    font-size: 0.9rem;
    margin: 0 0 0.8rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .banner-slide-content p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-slide-content p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

.banner-slide-content .btn {
    margin-top: 0.3rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 480px) {
    .banner-slide-content .btn {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

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

/* Banner Indicators */
.banner-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.banner-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(79, 70, 229, 0.5);
    position: relative;
}

.banner-indicator:hover {
    transform: scale(1.2);
    background: rgba(148, 163, 184, 0.7);
}

.banner-indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
}

.banner-indicator:hover {
    background: rgba(148, 163, 184, 0.9);
}

.banner-indicator.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    text-align: center;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* Content Page */
.content-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.content-text {
    line-height: 1.8;
    font-size: 1.125rem;
    color: var(--text-color);
}

/* Contact Page */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem 0;
}

.contact-info {
    background-color: var(--bg-secondary, #f8fafc);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color, #3b82f6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color, #3b82f6);
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.75rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color, #3b82f6);
    font-weight: 600;
    font-size: 1.0625rem;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form-wrapper {
    background-color: var(--bg-secondary, #f8fafc);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color, #3b82f6);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color, #3b82f6);
    font-weight: 700;
    font-size: 1.5rem;
}

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

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-color, #3b82f6);
    font-size: 1.0625rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white, #ffffff);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
    background-color: var(--white, #ffffff);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Kategoriler */
.categories {
    padding: 3rem 0;
}

.categories h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.category-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Ürünler */
.products {
    padding: 3rem 0;
}

.products h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(364px, 1fr));
    gap: 2rem;
}

.product-card {
    width: 260px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: Arial, sans-serif;
    margin: 0 auto;
}

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

.product-image {
    position: relative;
}

.product-image img {
    width: 100%;
    display: block;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e63946;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: var(--bg-tertiary);
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: bold;
}

.product-info-compact {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 0 0 16px 16px;
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-title {
    font-size: 16px;
    margin: 0 0 10px;
    color: #333;
}

.product-price {
    margin-bottom: 12px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 6px;
}

.new-price {
    color: #2a9d8f;
    font-size: 18px;
    font-weight: bold;
}

.product-buttons {
    display: flex;
    gap: 8px;
}

.add-to-cart, .detail-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.add-to-cart {
    background: #264653;
    color: #fff;
}

.add-to-cart:hover {
    background: #1d3557;
}

.detail-btn {
    background: #f1f5f9;
    color: #374151;
    border: 1px solid #d1d5db;
}

.detail-btn:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-radius: 10px;
    border: 1px solid #fbbf24;
    box-shadow: 0 1px 3px rgba(251, 191, 36, 0.1);
    transition: all 0.2s ease;
}

.rating-stars:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(251, 191, 36, 0.15);
}

.rating-stars .stars {
    color: #d97706;
    font-size: 1.1rem;
    filter: drop-shadow(0 1px 2px rgba(217, 119, 6, 0.2));
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    border: 1px solid #22c55e;
    box-shadow: 0 1px 3px rgba(34, 197, 94, 0.1);
    transition: all 0.2s ease;
}

.price-display:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.15);
}

.original-price {
    font-size: 0.85rem;
    color: #dc2626;
    text-decoration: line-through;
    text-decoration-color: #dc2626;
    text-decoration-thickness: 2px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    border: 1px solid #fca5a5;
}

.current-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #166534;
    text-shadow: 0 1px 2px rgba(22, 101, 52, 0.1);
}

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

.product-rating .stars {
    color: #fbbf24;
    font-size: 1rem;
}

.product-rating .rating-text {
    color: var(--text-color);
    font-weight: 500;
}

.product-rating .review-count {
    color: var(--text-light);
}



/* Ürün Detay */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.product-image-large {
    width: 100%;
    height: 500px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.product-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-tertiary);
    transition: transform 0.3s ease;
}

.placeholder-image-large {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    font-weight: bold;
}

.product-info-large h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-color);
    color: var(--primary-color);
    border-radius: 1rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-description-full {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-actions {
    margin-top: 2rem;
}

/* Kategori Filtre */
.category-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: inline-block;
}

.filter-btn:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    font-weight: 600;
}

/* Auth Sayfaları */
.auth-page {
    padding: 3rem 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.auth-card h2 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-tertiary);
    color: var(--text-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
}

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

.auth-link a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Alert Mesajları */
.alert {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1.5rem;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #86efac;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.text-success {
    color: var(--success-color);
}

.text-warning {
    color: var(--warning-color);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 2.5rem 0 1.5rem;
    margin-top: 4rem;
    color: var(--text-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo h3 {
    color: var(--text-color);
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.footer-section h4 {
    color: var(--text-color);
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
    padding: 0.25rem 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border: none;
    margin: 0;
}

.footer-contact .contact-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    opacity: 0.8;
}

.footer-contact .contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.footer-contact .contact-item span {
    color: var(--text-light);
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
    margin-top: 1.5rem;
}

.footer-bottom-content {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom-content strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-contact {
        gap: 0.75rem;
    }
}

/* Site Header Section - Ana Vurgu */
.site-header-section {
    padding: 4rem 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(30, 41, 59, 0.9) 50%,
        rgba(51, 65, 85, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.site-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.site-header-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.site-title {
    text-align: center;
}

.site-name {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        #60a5fa 30%,
        #93c5fd 60%,
        var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    }
    to {
        text-shadow: 0 4px 30px rgba(59, 130, 246, 0.6);
    }
}

.site-subtitle {
    margin-top: 1.5rem;
}

.site-subtitle p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 300;
}

.subtitle-decoration {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    margin: 1rem auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.site-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .banner-content h1,
    .banner-slide-content h1 {
        font-size: 2rem;
    }
    
    .banner-content p,
    .banner-slide-content p {
        font-size: 1.25rem;
    }
    
    .banner-section,
    .banner-slider {
        min-height: 400px;
    }
    
    .banner-container {
        height: 400px;
    }
    
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .product-image-large {
        height: 300px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .site-header-section {
        padding: 3rem 0;
    }

    .site-header-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .site-name {
        font-size: 3rem;
    }

    .site-subtitle p {
        font-size: 1.25rem;
    }

    .site-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .category-filter {
        justify-content: center;
    }
    
    .contact-page {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 2rem;
        border-radius: 10px;
    }

    .contact-info h2,
    .contact-form-wrapper h2 {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        padding: 0.875rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }

    .profile-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .logout-tab {
        margin-left: 0;
        margin-top: 1rem;
    }

    .order-header {
        flex-direction: column;
        gap: 1rem;
    }

    .order-status {
        text-align: left;
    }

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

    .tracking-steps::before {
        display: none;
    }

    .tracking-step::before {
        display: none;
    }
}

/* Profile Page Styles */
.profile-page {
    padding: 2rem 0;
}

.profile-header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-header h1 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.profile-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.profile-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 1rem;
}

.tab-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--text-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-link:hover {
    background: var(--bg-tertiary);
    color: var(--text-color);
    transform: translateY(-2px);
}

.tab-link.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tab-icon {
    font-size: 1.2rem;
}

.logout-tab {
    margin-left: auto;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.logout-tab:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* Orders Section */
.orders-section h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.empty-orders {
    text-align: center;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.empty-orders p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.orders-list {
    display: grid;
    gap: 1.5rem;
}

.order-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.order-info h3 {
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.order-number {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

.order-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.order-status {
    text-align: right;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.status-pending { background: #f59e0b; }
.status-paid { background: #3b82f6; }
.status-confirmed { background: #10b981; }
.status-shipped { background: #8b5cf6; }
.status-delivered { background: #22c55e; }
.status-cancelled { background: #ef4444; }

.order-details {
    padding: 1.5rem;
}

.order-amount {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tracking-info {
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.tracking-info h4 {
    color: var(--text-color);
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.tracking-info p {
    color: var(--text-light);
    margin: 0.5rem 0;
}

.tracking-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 0.5rem;
}

.tracking-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.tracking-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    position: relative;
}

.tracking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.tracking-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.tracking-step.completed .step-icon {
    background: var(--primary-color);
    color: white;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.tracking-step.completed::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
}

.tracking-step span {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

.tracking-step.completed span {
    color: var(--text-color);
    font-weight: 500;
}

/* Product Card Link Styles */
.product-card-link {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.product-card-link:hover {
    transform: translateY(-4px);
}

.product-actions-overlay {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    justify-content: center;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* Modern Hero Section */
.modern-hero {
    position: relative;
    background: linear-gradient(135deg,
        rgba(79, 70, 229, 0.05) 0%,
        rgba(59, 130, 246, 0.03) 25%,
        rgba(147, 197, 253, 0.02) 50%,
        rgba(79, 70, 229, 0.05) 100%);
    overflow: hidden;
    padding: 4rem 1rem 2rem 1rem;
    margin-bottom: 3rem;
    animation: heroBackgroundShift 8s ease-in-out infinite alternate;
}

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

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Carousel Wrapper - Tam Genişlik */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

/* Hero Overlay Content */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: linear-gradient(135deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.2) 100%);
}

.hero-text-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}


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

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    animation: titleSlideUp 1.2s ease-out 0.3s both;
}

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

.hero-highlight {
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
}

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

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    border-radius: 2px;
    animation: underlineGrow 2s ease-out 1s both;
}

@keyframes underlineGrow {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.8s both;
    animation: fadeInUp 1s ease-out 0.6s both;
}

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

.hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.9s both;
}

.hero-actions .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.hero-actions .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 ease;
}

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

.hero-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 70, 229, 0.4);
}

.hero-actions .btn-secondary {
    background: white;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.hero-actions .btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

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

.hero-image-container {
    position: relative;
    max-width: 500px;
    animation: float 6s ease-in-out infinite;
}

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

.hero-main-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.hero-main-image {
    position: relative;
    overflow: hidden;
}

.hero-main-image img {
    width: 100%;
    height: 400px; /* Carousel ile aynı yükseklik */
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.hero-main-image:hover img {
    transform: scale(1.05); /* 1.1 yerine 1.05 daha yumuşak */
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: min(50vh, 450px); /* Ekranın %50'si veya maksimum 450px */
    min-height: 350px; /* Minimum yükseklik */
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #4f46e5;
    z-index: 5;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
}

.hero-slide-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    right: 60px;
    max-width: 600px;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-slide-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-default {
    position: relative;
    width: 100%;
    height: min(50vh, 450px); /* Ekranın %50'si veya maksimum 450px */
    min-height: 350px; /* Minimum yükseklik */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.hero-default img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 24px;
}

.hero-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-carousel-slide .hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
}

.hero-carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.hero-carousel-prev,
.hero-carousel-next {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.hero-carousel-indicators {
    display: flex;
    gap: 8px;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator:hover {
    background: rgba(148, 163, 184, 0.7);
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-carousel-slide:hover .hero-overlay,
.hero-main-image:hover .hero-overlay {
    opacity: 1;
}

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


.hero-overlay h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }
}

.hero-carousel-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Hero Stats Section */
.hero-stats-section {
    order: 2;
    margin: 2rem 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-stats .stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(10px);
    padding: 1.5rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: statSlideUp 1s ease-out 1.2s both;
}

.hero-stats .stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Stats Section */
.hero-stats-section {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.2rem 1rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(79, 70, 229, 0.1);
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: statSlideUp 1s ease-out 1.2s both;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--primary-color),
        #60a5fa,
        #a855f7,
        var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.stat-item .stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    transition: width 0.3s ease;
}

.stat-item:hover .stat-number::after {
    width: 100%;
}

.stat-item .stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
}

/* İstatistik kartlarına özel ikonlar */
.stat-item:nth-child(1) .stat-number::before {
    content: '⭐';
    position: absolute;
    left: -25px;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.stat-item:nth-child(2) .stat-number::before {
    content: '👥';
    position: absolute;
    left: -30px;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.stat-item:nth-child(3) .stat-number::before {
    content: '🕒';
    position: absolute;
    left: -25px;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.stat-item:nth-child(4) .stat-number::before {
    content: '⚡';
    position: absolute;
    left: -25px;
    top: 0;
    font-size: 1.5rem;
    opacity: 0.8;
}

.stat-item:nth-child(1) { animation-delay: 1.2s; }
.stat-item:nth-child(2) { animation-delay: 1.4s; }
.stat-item:nth-child(3) { animation-delay: 1.6s; }

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

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

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
    fill: white;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out both;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #60a5fa);
    border-radius: 2px;
    animation: titleUnderline 1s ease-out 0.8s both;
}

@keyframes titleUnderline {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.category-card-modern {
    background: #ffffff;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    cursor: pointer;
    min-height: 80px;
}


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


.category-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}


.category-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: white;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.15);
    transition: all 0.2s ease;
}

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

.category-card-modern:hover .category-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

.category-card-modern h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}


.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.category-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, white 100%);
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: featureSlideIn 0.8s ease-out both;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.3s; }
.feature-card:nth-child(3) { animation-delay: 0.5s; }
.feature-card:nth-child(4) { animation-delay: 0.7s; }

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Featured Products */
.featured-products {
    padding: 3rem 0;
    background: #f8fafc;
}

.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* HepsiBurada Style Product Cards */
.product-card-hepsiburada {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: productFadeIn 0.6s ease-out both;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 312px;
    margin: 0 auto;
}

.product-card-hepsiburada:nth-child(1) { animation-delay: 0.1s; }
.product-card-hepsiburada:nth-child(2) { animation-delay: 0.2s; }
.product-card-hepsiburada:nth-child(3) { animation-delay: 0.3s; }
.product-card-hepsiburada:nth-child(4) { animation-delay: 0.4s; }
.product-card-hepsiburada:nth-child(5) { animation-delay: 0.5s; }
.product-card-hepsiburada:nth-child(6) { animation-delay: 0.6s; }

.product-card-hepsiburada:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

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

/* Product Image Container */
.product-image-container {
    position: relative;
    width: 100%;
    height: 65%;
    overflow: hidden;
    background: #f8fafc;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    background: #f8fafc;
}

.product-heart {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
}

.product-card-hepsiburada:hover .product-heart {
    opacity: 1;
    transform: scale(1.1);
}

.product-heart:hover {
    background: #fef2f2;
    color: #ef4444;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Product Info Section */
.product-info-hepsiburada {
    padding: 0.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-brand {
    font-size: 0.375rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25px;
}

.product-name {
    font-size: 0.45rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.product-rating-hepsiburada {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}

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

.rating-text {
    color: #374151;
    font-weight: 600;
}

.review-count {
    color: #6b7280;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.product-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

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

.current-price {
    font-size: 0.55rem;
    font-weight: 700;
    color: #111827;
}

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

.discount-badge {
    background: #ef4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Product Actions */
.product-actions-hepsiburada {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-add-cart,
.btn-view-detail {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    text-decoration: none;
}

.btn-add-cart {
    background: var(--primary-color);
    color: white;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-view-detail {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-view-detail:hover {
    background: var(--primary-color);
    color: white;
}

/* Product Shipping */
.product-shipping {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f3f4f6;
}

.shipping-text {
    display: block;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
}

.delivery-text {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 2px;
}

.product-image-modern {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 1.5rem;
}

.product-category-tag {
    display: inline-block;
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-price-modern {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-price-modern .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.product-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.stars {
    font-size: 0.875rem;
    color: #fbbf24;
}

.rating-count {
    font-size: 0.75rem;
    color: var(--text-light);
}

.product-actions-modern {
    display: flex;
    gap: 0.75rem;
}

.product-actions-modern .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.product-actions-modern .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
}

.product-actions-modern .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.view-all-products {
    text-align: center;
}

.view-all-products .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Promo Section */
.promo-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.promo-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: promoSlideIn 1s ease-out both;
}

.promo-card:nth-child(1) { animation-delay: 0.2s; }
.promo-card:nth-child(2) { animation-delay: 0.4s; }

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

.promo-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.promo-content {
    flex: 1;
}

.promo-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.promo-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-content .btn {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.promo-content .btn:hover {
    background: var(--bg-secondary);
    color: var(--primary-dark);
}

.promo-visual {
    flex-shrink: 0;
    opacity: 0.8;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.trust-header {
    text-align: center;
    margin-bottom: 3rem;
}

.trust-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.trust-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: trustSlideIn 0.8s ease-out both;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.3s; }
.trust-item:nth-child(3) { animation-delay: 0.5s; }
.trust-item:nth-child(4) { animation-delay: 0.7s; }

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

.trust-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

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

.trust-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Floating Elements Animation */
@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

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

/* Scroll-triggered animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Parallax effect for background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Gradient text animation */
.gradient-text {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease infinite;
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    animation: whatsappPulse 2s ease-in-out infinite, bounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* Mobile Responsive for WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Ultra-wide ekranlar için */
@media (min-width: 1800px) {
    .hero-content {
        gap: 8rem; /* Çok geniş ekranlar için çok büyük gap */
        padding: 0 4rem; /* Çok geniş ekranlar için çok büyük padding */
    }

    .hero-container {
        max-width: 2000px; /* Çok geniş ekranlar için maksimum genişlik */
    }

    .hero-carousel {
        height: 500px; /* Çok geniş ekranlar için daha büyük yükseklik */
        min-height: 400px;
    }

    .products-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(364px, 1fr));
        gap: 2rem;
        max-width: 1600px;
    }
}

/* Responsive Styles for New Sections */
@media (max-width: 1200px) {
    .hero-container {
        max-width: 1200px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-overlay-content {
        padding: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .products-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.2rem;
        max-width: 1200px;
    }

    .product-card-hepsiburada {
        max-width: 200px;
    }
}

@media (max-width: 968px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .promo-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 3rem 0.5rem 1rem 0.5rem;
    }

    .hero-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .hero-overlay-content {
        padding: 1rem;
    }

    .hero-text-content {
        padding: 1.5rem;
        max-width: 90%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.6rem;
    }

    .hero-actions .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-stats .stat-item {
        padding: 1rem 0.8rem;
    }

    .hero-stats .stat-number {
        font-size: 1.3rem;
    }

    .hero-stats .stat-label {
        font-size: 0.75rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 0.8rem 0;
        padding: 0 0.5rem;
    }

    .hero-stats .stat-item {
        padding: 1rem 0.8rem;
    }

    .hero-stats .stat-number {
        font-size: 1.3rem;
    }

    .hero-stats .stat-label {
        font-size: 0.75rem;
    }

    .hero-carousel-section {
        gap: 1.5rem;
    }

    .hero-carousel {
        height: min(40vh, 320px); /* Mobil için daha küçük yükseklik */
        min-height: 280px;
        border-radius: 12px;
    }

    .hero-default {
        height: min(40vh, 320px); /* Mobil için daha küçük yükseklik */
        min-height: 280px;
        border-radius: 12px;
    }

    .hero-carousel-controls {
        padding: 8px 15px;
        gap: 10px;
    }

    .hero-carousel-prev,
    .hero-carousel-next {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .hero-carousel-controls {
        display: none; /* Mobil'de gizle */
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
    }
}

/* Desktop carousel controls */
@media (min-width: 769px) {
    .hero-carousel-controls {
        display: flex !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        max-width: 100%;
    }

    .product-card-hepsiburada {
        max-width: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .promo-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modern-hero {
        padding: 3rem 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .categories-section,
    .features-section,
    .featured-products,
    .trust-section {
        padding: 2rem 0;
    }

    .category-card-modern {
        padding: 1rem 0.75rem;
    }

    .feature-card,
    .promo-card {
        padding: 1.5rem;
    }

    .products-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(208px, 1fr));
        gap: 1rem;
    }

    .product-card-hepsiburada {
        margin: 0 -0.5rem;
        max-width: 160px;
    }

    .product-image-container {
        height: 60%;
    }

    .product-info-hepsiburada {
        padding: 0.375rem;
    }

    .product-brand {
        font-size: 0.35rem;
    }

    .product-name {
        font-size: 0.4rem;
    }

    .current-price {
        font-size: 0.475rem;
    }

    .product-card {
        width: 220px;
    }

    .product-title {
        font-size: 14px;
    }

    .new-price {
        font-size: 16px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 6px;
    }

    .add-to-cart, .detail-btn {
        padding: 8px;
        font-size: 13px;
    }

    .rating-stars {
        padding: 0.35rem 0.6rem;
    }

    .rating-stars .stars {
        font-size: 1rem;
    }

    .price-display {
        padding: 0.7rem 0.9rem;
        flex-direction: column;
        gap: 0.4rem;
        align-items: center;
    }

    .original-price {
        font-size: 0.75rem;
        padding: 0.15rem 0.3rem;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .product-actions-hepsiburada {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-add-cart,
    .btn-view-detail {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .product-actions-modern {
        flex-direction: column;
    }

    .product-actions-modern .btn {
        margin-bottom: 0.5rem;
    }
}


/* Loading Animation Styles */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 400% 400%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: gradientShift 2s ease infinite;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

body.loading .loading-overlay {
    display: flex;
}

/* Homepage Hero Section Styles */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(1deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3) translateY(50px); }
    50% { opacity: 1; transform: scale(1.05) translateY(-10px); }
    70% { transform: scale(0.9) translateY(5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(100px) scale(0.8); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(59, 130, 246, 0.4); }
}

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

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(59, 130, 246, 0.5); }
    50% { text-shadow: 0 0 20px rgba(139, 92, 246, 0.8), 0 0 30px rgba(6, 182, 212, 0.6); }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-title {
    animation: bounceIn 1.5s ease-out, textGlow 2s ease-in-out infinite;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    animation: slideInUp 1.2s ease-out 0.3s both;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.6s both;
}

.stats-section {
    animation: slideInUp 1s ease-out 0.9s both;
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { width: 6px; height: 6px; left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { width: 6px; height: 6px; left: 15%; animation-delay: 9s; }

.cta-button {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.cta-button::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.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: bounceIn 1.8s ease-out 0.3s both;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.1) rotate(2deg);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.hero-slide:hover img {
    transform: scale(1.05);
}

.floating-card {
    animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
