/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-secondary: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

/* Utility Text Colors */
.text-success {
    color: var(--success-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Touch-friendly elements */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(102, 126, 234, 0.1);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        left: 100%;
    }
}

.top-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    text-underline-offset: 3px;
}

.top-banner a:hover {
    text-decoration-thickness: 2px;
    transform: scale(1.05);
    display: inline-block;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    width: 100%;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

/* Mobile Header Fixed */
@media (max-width: 768px) {
    /* Top banner'ı da fixed yap */
    .top-banner {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        width: 100%;
    }
    
    .header {
        position: fixed;
        top: 46px; /* Top banner yüksekliği kadar aşağıda */
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        z-index: 1000;
        will-change: transform;
        transition: top 0.3s ease;
    }
    
    .header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 1);
    }
    
    /* Top banner mobilde optimize */
    .top-banner {
        position: relative;
        z-index: 999;
        padding: 10px 15px;
        font-size: 13px;
        line-height: 1.4;
    }
    
    .top-banner p {
        margin: 0;
    }
    
    .top-banner a {
        display: inline-block;
        margin-left: 5px;
        white-space: nowrap;
    }
    
    /* Header yüksekliği için main-content'e margin ekle (top banner + header) */
    .main-content {
        margin-top: 226px; /* Top banner (46px) + header (~180px) */
    }
    
    /* Page header için extra margin */
    .page-header {
        margin-top: -10px;
    }
}

.header-top {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
}

.logo img {
    height: 50px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    /* PNG şeffaflık desteği */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Arama Çubuğu */
.header-search {
    max-width: 600px;
    width: 100%;
    justify-self: center;
}

.search-form {
    position: relative;
    display: flex;
    width: 100%;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--bg-secondary);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.search-form input::placeholder {
    color: #999;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.05);
}

.search-btn i {
    font-size: 16px;
}

.header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 11px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.header-btn i {
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.header-btn:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

.header-btn:hover i {
    transform: scale(1.1);
}

.header-btn:active {
    transform: translateY(0);
}

.mobile-menu-toggle {
    display: none;
}

/* Icon animations for mobile actions */
.header-btn i.fa-heart {
    color: #ef4444;
}

.header-btn i.fa-shopping-bag {
    color: var(--primary-color);
}

.header-btn i.fa-user {
    color: #667eea;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.1);
    }
}

.header-btn:hover i.fa-heart {
    animation: heartbeat 0.8s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-2px) rotate(-5deg);
    }
    75% {
        transform: translateX(2px) rotate(5deg);
    }
}

.header-btn:hover i.fa-shopping-bag {
    animation: shake 0.5s ease-in-out;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: white;
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.mobile-menu-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.mobile-menu-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Mobile Menu Search */
.mobile-menu-search {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 12px 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.mobile-search-input-wrapper:focus-within {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.mobile-search-input-wrapper i.fa-search {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 10px;
}

.mobile-search-input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-color);
    background: transparent;
}

.mobile-search-input-wrapper input::placeholder {
    color: #999;
}

.mobile-search-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: 8px;
}

.mobile-search-submit:hover,
.mobile-search-submit:active {
    transform: translateX(3px);
}

.mobile-menu-items {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu-items > li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-items > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-menu-items > li > a i {
    font-size: 18px;
    color: var(--primary-color);
    width: 24px;
    text-align: center;
}

.mobile-menu-items > li > a:hover,
.mobile-menu-items > li > a:active {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.mobile-submenu {
    display: none;
    padding: 0;
    margin: 0;
    list-style: none;
    background: #f9f9f9;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 56px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 14px;
    transition: all 0.3s;
}

.mobile-submenu li a:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.mobile-menu-toggle-submenu {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.mobile-menu-toggle-submenu.active {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-menu-item-wrapper {
    position: relative;
}

.theme-text {
    display: none;
}

.cart-btn {
    position: relative;
}

.cart-btn span:not(.cart-count) {
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 12px;
    min-width: 18px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    border: 2px solid white;
    animation: cartBadgePulse 2s ease-in-out infinite;
    z-index: 10;
    pointer-events: none;
}

@keyframes cartBadgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cart-btn:hover .cart-count {
    animation: cartBadgeBounce 0.5s ease;
}

@keyframes cartBadgeBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Navigation */
.main-nav {
    background: var(--bg-secondary);
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--border-color);
}

.nav-toggle {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.nav-item a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-item a:hover {
    color: var(--primary-color);
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    z-index: 100;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
}

.view-all-btn {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
}

.slide {
    display: none;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slide.active {
    display: flex;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot:hover,
.slider-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Products Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex-wrap: wrap;
    gap: 15px;
}

.active-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.25);
}

.filter-tag i {
    cursor: pointer;
    padding: 2px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.filter-tag i:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sort-options select {
    padding: 10px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.sort-options select:hover {
    border-color: var(--primary-color);
}

.sort-options select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Featured products - "Daha Fazla Göster" gizli kartlar */
.featured-products .product-card.is-hidden-featured {
    display: none;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.product-brand {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.75));
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 3;
    backdrop-filter: blur(10px);
}

.product-rank {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.product-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(102, 126, 234, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.05));
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 12px;
    min-height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
    color: #1a202c;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.old-price {
    font-size: 16px;
    text-decoration: line-through;
    color: #94a3b8;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #64748b;
}

.product-rating .stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.product-rating .stars i {
    font-size: 14px;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 14px;
    padding: 12px 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-actions .btn-outline {
    background: white;
    border: 2px solid #e2e8f0;
    color: #475569;
}

.product-actions .btn-outline:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.product-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.product-actions .btn-primary:hover {
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.35);
    transform: translateY(-2px);
}

.product-actions .btn-primary i {
    margin-right: 6px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-outline-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    margin-bottom: 10px;
}

.btn-large {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-color);
}

.btn-icon:hover {
    border-color: var(--danger-color);
    color: var(--danger-color);
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-color);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    width: 100%;
}

.category-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-color);
}

/* Dark mode */
[data-theme="dark"] .category-card {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

[data-theme="dark"] .category-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Sol taraf - Genel Puan */
.reviews-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.overall-rating {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.rating-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1;
}

.rating-stars {
    color: #fbbf24;
    font-size: 24px;
    margin: 10px 0;
}

.rating-stars i {
    margin: 0 2px;
}

.rating-count {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

/* Puan Dağılımı */
.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.star-label {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 40px;
    color: var(--text-color);
    font-weight: 500;
}

.star-label i {
    color: #fbbf24;
    font-size: 12px;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    border-radius: 10px;
    transition: width 0.3s ease;
}

.rating-bar-item .count {
    min-width: 35px;
    text-align: right;
    color: var(--text-light);
    font-size: 13px;
}

/* Sağ taraf - Yorumlar Listesi */
.reviews-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.review-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-stars {
    color: #fbbf24;
    font-size: 14px;
}

.review-stars i {
    margin-right: 2px;
}

.review-date {
    font-size: 13px;
    color: var(--text-light);
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1e293b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 2px;
}

.author-badge {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.author-badge i {
    color: #10b981;
}

.review-score {
    font-weight: 600;
    color: #10b981;
    font-size: 14px;
    padding: 4px 12px;
    background: #d1fae5;
    border-radius: 20px;
    flex-shrink: 0;
}

/* Dark mode için */
[data-theme="dark"] .reviews-summary,
[data-theme="dark"] .review-card {
    background: var(--card-bg);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

[data-theme="dark"] .review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

[data-theme="dark"] .author-avatar {
    background: #334155;
}

[data-theme="dark"] .review-score {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

[data-theme="dark"] .progress-bar {
    background: #374151;
}

/* Eski review stilleri - geriye dönük uyumluluk için */
.review-stats {
    margin-top: 20px;
}

.rating-score {
    display: inline-block;
    text-align: center;
}

.rating-score .score {
    font-size: 48px;
    font-weight: bold;
    color: var(--warning-color);
}

.stars {
    color: var(--warning-color);
    margin: 10px 0;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.verified {
    color: var(--success-color);
    font-size: 12px;
    display: block;
}

.review-rating {
    color: var(--warning-color);
}

/* Brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.brand-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: transform 0.3s;
    text-decoration: none;
    color: var(--text-color);
}

.brand-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

/* Cart Page */
.page-header {
    background: var(--bg-secondary);
    padding: 40px 0;
    margin-bottom: 40px;
}

.breadcrumb {
    margin-top: 10px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.item-image {
    width: 100px;
    height: 100px;
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 10px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.item-price {
    color: var(--primary-color);
    font-weight: 600;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.item-quantity button {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px;
}

.item-total {
    font-weight: bold;
    min-width: 120px;
    text-align: right;
}

.item-remove {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    font-size: 20px;
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
}

.free {
    color: var(--success-color);
    font-weight: 600;
}

.empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.empty-cart i {
    font-size: 100px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Product Detail */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-images {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    height: 500px;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.3);
}

.product-info-detail h1 {
    font-size: 32px;
    margin: 20px 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

.product-price-detail .price {
    font-size: 36px;
}

.discount {
    background: var(--danger-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success-color);
    margin-bottom: 30px;
}

.product-options {
    margin: 30px 0;
}

.product-options h3 {
    margin-bottom: 15px;
}

.color-options, .storage-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option, .storage-option {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.color-option:hover, .storage-option:hover,
.color-option.active, .storage-option.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.quantity-selector {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-selector button {
    width: 50px;
    height: 50px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
}

.quantity-selector button:hover {
    background: var(--bg-secondary);
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    font-size: 16px;
}

.product-description,
.product-features {
    margin: 30px 0;
}

.product-description h3,
.product-features h3 {
    margin-bottom: 15px;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo a {
    display: inline-block;
    margin-bottom: 5px;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
    display: block;
    /* PNG şeffaflık desteği */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-logo p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.modal-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Old mobile menu styles removed - using new mobile-menu-sidebar styles */

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
    z-index: 1000;
}

.scroll-top:hover {
    transform: scale(1.1);
}

/* Filter Toggle Mobile */
.mobile-filter-toggle {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    cursor: pointer;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Modern Mobile Header */
    .header {
        box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
    }
    
    .header-top {
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 0;
    }
    
    .logo {
        grid-column: 1;
        grid-row: 1;
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 42px;
        max-width: 140px;
        transition: transform 0.3s ease;
    }
    
    .logo:active img {
        transform: scale(0.95);
    }
    
    .header-search {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 100%;
    }
    
    .header-actions {
        grid-column: 2;
        grid-row: 1;
        justify-content: flex-end;
    }
    
    .search-form {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }
    
    .search-form input {
        padding: 12px 50px 12px 18px;
        border-radius: 16px;
        border: 2px solid #f0f0f0;
        font-size: 13px;
    }
    
    .search-btn {
        width: 35px;
        height: 35px;
    }
    
    /* Modern Mobile Header Actions */
    .header-actions {
        gap: 8px;
        padding: 8px;
        background: rgba(248, 249, 250, 0.8);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.8);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .header-btn span:not(.cart-count) {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    
    .mobile-menu-toggle::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        opacity: 0;
        transition: opacity 0.3s;
        border-radius: 12px;
    }
    
    .mobile-menu-toggle:hover::before {
        opacity: 0.1;
    }
    
    .header-btn {
        padding: 10px;
        font-size: 10px;
        min-width: 44px;
        min-height: 44px;
        border-radius: 14px;
        position: relative;
        overflow: hidden;
    }
    
    .header-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(102, 126, 234, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.4s, height 0.4s;
        z-index: 0;
    }
    
    .header-btn:active::before {
        width: 100px;
        height: 100px;
    }
    
    .header-btn i {
        font-size: 20px;
        position: relative;
        z-index: 1;
    }
    
    .cart-count {
        top: 4px;
        right: 4px;
        font-size: 9px;
        padding: 2px 5px;
        min-width: 16px;
        animation: cartBadgePulse 2s ease-in-out infinite;
        z-index: 10;
        pointer-events: none;
    }
    
    .header-btn:hover {
        background: rgba(102, 126, 234, 0.08);
        transform: translateY(-2px) scale(1.05);
    }
    
    .header-btn:active {
        transform: translateY(0) scale(0.95);
    }
    
    /* Navigation */
    .main-nav {
        display: none !important;
    }
    
    .nav-toggle {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 300px;
    }
    
    .slide-content h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 18px;
    }
    
    /* Sections */
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    /* Products Toolbar */
    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        gap: 12px;
    }
    
    .active-filters {
        width: 100%;
    }
    
    .sort-options {
        width: 100%;
    }
    
    .sort-options select {
        width: 100%;
        padding: 12px 16px;
        font-size: 15px;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 220px;
        padding: 16px;
    }
    
    .product-info {
        padding: 16px;
    }
    
    .product-title {
        font-size: 14px;
        min-height: 42px;
        -webkit-line-clamp: 2;
    }
    
    .price {
        font-size: 20px;
    }
    
    .old-price {
        font-size: 14px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions .btn {
        width: 100%;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .product-badge,
    .product-brand {
        font-size: 10px;
        padding: 5px 10px;
    }
    
    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .category-card {
        padding: 15px;
    }
    
    .category-image {
        height: 140px;
    }
    
    .category-content h3 {
        font-size: 14px;
    }
    
    /* Reviews */
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-summary {
        position: static;
    }
    
    .reviews-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-card {
        padding: 16px;
    }
    
    .rating-number {
        font-size: 42px;
    }
    
    .rating-bar-item {
        font-size: 13px;
    }
    
    /* Brands */
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .brand-card {
        padding: 20px;
        height: 80px;
    }
    
    /* Cart */
    .cart-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cart-item {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .item-image {
        width: 80px;
        height: 80px;
    }
    
    .item-details {
        flex: 1 1 100%;
        order: 3;
    }
    
    .item-quantity {
        order: 4;
    }
    
    .item-total {
        order: 2;
        min-width: auto;
    }
    
    .item-remove {
        order: 1;
        position: absolute;
        right: 10px;
        top: 10px;
    }
    
    /* Product Detail */
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-images {
        position: static;
    }
    
    .main-image {
        height: 350px;
        padding: 20px;
    }
    
    .thumbnail-images img {
        width: 60px;
        height: 60px;
    }
    
    .product-info-detail h1 {
        font-size: 22px;
    }
    
    .product-price-detail .price {
        font-size: 28px;
    }
    
    .product-actions-detail {
        flex-wrap: wrap;
    }
    
    .quantity-selector {
        width: 100%;
        order: 1;
    }
    
    .btn-large {
        width: 100%;
        order: 3;
    }
    
    .btn-icon {
        width: 100%;
        height: 45px;
        order: 2;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    /* Page Header */
    .page-header {
        padding: 20px 0;
    }
    
    /* Scroll to Top */
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    /* Extra small devices */
    .container {
        padding: 0 10px;
    }
    
    /* Mobile Quick Nav - 2 columns */
    .mobile-quick-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-nav-item {
        padding: 18px 12px;
    }
    
    .quick-nav-item span {
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .slide-content h1 {
        font-size: 22px;
    }
    
    .slide-content p {
        font-size: 14px;
        display: none; /* Çok küçük ekranlarda gizle */
    }
    
    .product-image {
        height: 180px;
        padding: 12px;
    }
    
    .product-card {
        padding: 8px;
    }
    
    .product-title {
        font-size: 13px;
        min-height: 38px;
    }
    
    .price {
        font-size: 18px;
    }
    
    .old-price {
        font-size: 13px;
    }
    
    /* Touch-friendly buttons */
    .btn {
        min-height: 44px;
        font-size: 14px;
    }
    
    .header-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Blog Cards */
    .blog-card {
        min-width: 280px;
    }
    
    .blog-card-image {
        height: 160px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 20px;
    }
    
    /* Page Header */
    .page-header h1 {
        font-size: 24px;
    }
    
    .breadcrumb {
        font-size: 12px;
    }
    
    /* Product Detail */
    .main-image {
        height: 300px;
        padding: 15px;
    }
    
    .product-info-detail h1 {
        font-size: 20px;
    }
    
    .product-price-detail .price {
        font-size: 24px;
    }
    
    /* Footer */
    .footer-column h3 {
        font-size: 16px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    /* Specifications Table */
    .spec-name, .spec-value {
        font-size: 13px;
    }
}

/* Tablet - Reviews için özel ayar */
@media (min-width: 769px) and (max-width: 1024px) {
    .reviews-container {
        grid-template-columns: 300px 1fr;
        gap: 25px;
    }
    
    .reviews-summary {
        padding: 20px;
    }
    
    .rating-number {
        font-size: 48px;
    }
    
    .reviews-list {
        grid-template-columns: 1fr;
    }
}

/* Touch Friendly */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 44px;
    }
    
    .header-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-toggle {
        min-height: 44px;
    }
}

/* ============================================
   BLOG YAZILARI BÖLÜMÜ
   ============================================ */
.blog-section {
    background: var(--bg-color);
    padding: 60px 0;
    overflow: hidden;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-color);
}

.view-all-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.view-all-link:hover {
    gap: 12px;
}

/* Horizontal Scroll Container */
.blog-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding: 0 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.blog-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.blog-slider {
    display: flex;
    gap: 30px;
    width: max-content;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 350px;
    width: 350px;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.blog-author i {
    font-size: 20px;
    color: var(--primary-color);
}

.read-more {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 10px;
}

/* Tablet için Responsive */
@media (max-width: 1024px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .blog-slider-wrapper {
        padding: 0 20px;
    }
    
    .blog-card {
        flex: 0 0 320px;
        width: 320px;
    }
    
    .blog-slider {
        gap: 20px;
    }
}

/* Mobil için Responsive */
@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .blog-slider-wrapper {
        padding: 0 15px;
    }
    
    .blog-slider {
        gap: 15px;
    }
    
    .blog-card {
        flex: 0 0 280px;
        width: 280px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 18px;
    }
    
    .blog-title {
        font-size: 17px;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
    
    .blog-meta {
        gap: 15px;
        font-size: 12px;
    }
}
