/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #0f172a;
    --accent-color: #60a5fa;
    --text-color: #ffffff;
    --text-light: #cbd5e1;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --border-color: #334155;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: var(--bg-darker);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Top Bar */
.header-top-bar {
    background: var(--bg-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
    white-space: nowrap;
}

.top-link.balance-link {
    color: var(--success-color);
    font-weight: 600;
}

.top-link:hover {
    color: var(--text-color);
}

.top-link i {
    margin-right: 5px;
}

.lang-currency-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background 0.3s;
}

.lang-currency-selector:hover {
    background: rgba(255, 255, 255, 0.05);
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

/* Main Header */
.header-main {
    background: var(--bg-darker);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.header-main-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-logo {
    flex-shrink: 0;
}

.main-logo-img {
    max-height: 50px;
    max-width: 180px;
    object-fit: contain;
}

.main-logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
}

.main-search-bar {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.main-search-bar form {
    display: flex;
    position: relative;
    width: 100%;
}

.main-search-input {
    flex: 1;
    padding: 10px 45px 10px 15px;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-color);
    font-size: 14px;
    width: 100%;
}

.main-search-input::placeholder {
    color: var(--text-light);
}

.main-search-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--bg-card);
}

.main-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 35px;
    height: 35px;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: color 0.3s;
}

.main-search-btn:hover {
    color: var(--text-color);
}

.main-user-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Header Icon Buttons (Bildirim, Mesaj) */
.header-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.header-icon-btn:hover {
    background: var(--bg-dark);
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.header-icon-btn .icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    line-height: 1.4;
}

/* Notification Dropdown */
.notification-btn {
    position: relative;
}

.notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 380px;
    max-height: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    overflow: hidden;
}

.notification-dropdown.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.dropdown-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark);
}

.dropdown-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.dropdown-header a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 13px;
}

.dropdown-content {
    max-height: 400px;
    overflow-y: auto;
}

.dropdown-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-light);
}

.dropdown-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.dropdown-item {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s;
}

.dropdown-item:hover {
    background: var(--bg-dark);
}

.dropdown-item.unread {
    background: rgba(59, 130, 246, 0.1);
    border-left: 3px solid var(--primary-light);
}

.dropdown-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-light);
}

.dropdown-item-content {
    flex: 1;
    min-width: 0;
}

.dropdown-item-content strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.dropdown-item-content p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.4;
}

.dropdown-item-time {
    font-size: 11px;
    color: var(--text-light);
    opacity: 0.7;
}

/* User Dropdown */
.user-dropdown-wrapper {
    position: relative;
}

.user-login-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
}

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

.user-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.user-btn-label {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

.user-btn-name {
    font-size: 14px;
    font-weight: 600;
}

.user-login-btn i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.user-dropdown-wrapper.active .user-login-btn i {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 280px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    overflow: hidden;
    padding: 10px 0;
}

.user-dropdown-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.dropdown-arrow {
    position: absolute;
    top: -8px;
    right: 30px;
    width: 16px;
    height: 16px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
    transform: rotate(45deg);
}

.dropdown-section {
    padding: 5px 0;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.dropdown-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

.dropdown-menu-item:hover {
    background: var(--bg-dark);
    padding-left: 25px;
}

.dropdown-menu-item i {
    width: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
}

.dropdown-menu-item:hover i {
    color: var(--primary-light);
}

.dropdown-menu-item.logout-item {
    color: var(--danger-color);
}

.dropdown-menu-item.logout-item:hover {
    background: rgba(239, 68, 68, 0.1);
}

.main-cart-btn {
    position: relative;
    padding: 12px 15px;
    background: var(--bg-card);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 20px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-cart-btn:hover {
    background: var(--bg-dark);
}

.main-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger-color);
    color: white;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0 5px;
}

/* Category Navigation */
.category-nav {
    background: var(--bg-dark);
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}

.category-nav-content {
    display: flex;
    gap: 0;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

.category-nav-content::-webkit-scrollbar {
    height: 4px;
}

.category-nav-content::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

.category-nav-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: var(--text-light);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    border-bottom: 3px solid transparent;
}

.category-nav-item:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.03);
    border-bottom-color: var(--primary-light);
}

.category-nav-item i {
    font-size: 16px;
}

.category-nav-item span {
    display: inline-block;
}

.nav-item i {
    margin-right: 8px;
}

/* Hero Section */
.hero-section {
    padding: 30px 0;
    background: var(--bg-dark);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.hero-slider {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    padding: 40px;
    min-height: 400px;
    overflow: hidden;
}

.slider-item {
    display: none;
}

.slider-item.active {
    display: block;
}

.slider-content {
    display: flex;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.slider-left {
    flex-shrink: 0;
}

.slider-icon {
    font-size: 120px;
    color: rgba(255, 255, 255, 0.2);
}

.slider-right h1 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.slider-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.slider-features span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
}

.slider-features i {
    color: var(--success-color);
    margin-right: 5px;
}

.slider-logo {
    font-size: 24px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-banner {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.sidebar-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0.9;
}

.sidebar-banner h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    font-size: 20px;
}

.banner-link {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s;
    width: fit-content;
}

.banner-link:hover {
    transform: translateY(-2px);
}

/* Popular Categories */
.popular-categories {
    padding: 30px 0;
    background: var(--bg-dark);
}

.category-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s;
    min-width: 100px;
}

.category-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.category-icon i {
    font-size: 32px;
}

.category-icon span {
    font-size: 12px;
    text-align: center;
}

/* Products Section */
.products-section {
    padding: 50px 0;
    background: var(--bg-darker);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    font-size: 28px;
    color: var(--text-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
}

.view-all {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.view-all:hover {
    color: var(--primary-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-dark);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
    min-height: 48px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 14px;
}

.current-price {
    color: var(--accent-color);
    font-size: 20px;
    font-weight: bold;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s;
}

.product-btn:hover {
    background: var(--primary-light);
}

/* Category Products Section (Homepage) */
.category-products-section {
    padding: 40px 0;
    background: var(--bg-darker);
}

.category-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.category-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.category-section-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    margin: 0;
}

.category-section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.view-all-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: var(--accent-color);
}

.products-scroll-container {
    position: relative;
    overflow: hidden;
}

.products-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-dark);
}

.products-scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.products-scroll-wrapper::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-radius: 10px;
}

.products-scroll-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.products-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

.product-card-scroll {
    flex: 0 0 220px;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card-scroll:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-dark);
}

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

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    color: var(--text-light);
    font-size: 48px;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card-scroll:hover .product-actions {
    opacity: 1;
}

.product-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 14px;
}

.product-action-btn:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

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

.product-info-scroll {
    padding: 15px;
}

.product-title-scroll {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.old-price-scroll {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 12px;
}

.current-price-scroll {
    color: var(--primary-light);
    font-size: 18px;
    font-weight: bold;
}

/* Empty Category Message */
.empty-category-message {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.empty-category-message i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-category-message p {
    color: var(--text-light);
    font-size: 16px;
    margin: 0;
}

/* Responsive Category Products */
@media (max-width: 768px) {
    .product-card-scroll {
        flex: 0 0 180px;
    }
    
    .product-image-wrapper {
        height: 150px;
    }
    
    .category-section-title {
        font-size: 20px;
    }
    
    .product-actions {
        opacity: 1;
    }
    
    .empty-category-message {
        padding: 40px 20px;
    }
    
    .empty-category-message i {
        font-size: 48px;
    }
}

/* Categories Page */
.categories-page {
    padding: 30px 0 50px;
    background: var(--bg-darker);
    min-height: calc(100vh - 400px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--text-color);
}

.breadcrumb i.fa-chevron-right {
    font-size: 12px;
    opacity: 0.5;
}

.breadcrumb span {
    color: var(--text-color);
}

.categories-search-section {
    margin-bottom: 40px;
}

.categories-search-wrapper {
    display: flex;
    gap: 15px;
    max-width: 600px;
}

.category-search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-color);
    font-size: 14px;
    transition: border-color 0.3s;
}

.category-search-input:focus {
    outline: none;
    border-color: var(--primary-light);
}

.category-search-input::placeholder {
    color: var(--text-light);
}

.category-filter-btn {
    padding: 12px 24px;
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
    white-space: nowrap;
}

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

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.category-tile {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
    opacity: 0.3;
    pointer-events: none;
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-tile-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.category-icon-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.category-tile-image {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-tile-icon {
    font-size: 64px;
    color: white;
    opacity: 0.9;
}

.category-tile-name {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 1.3;
}

.category-tile-btn {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s;
    backdrop-filter: blur(10px);
}

.category-tile-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.no-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: 12px;
}

.no-categories i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-categories p {
    color: var(--text-light);
    font-size: 18px;
}

.categories-info-section {
    margin-top: 50px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.categories-info-content {
    max-width: 800px;
}

.info-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
}

.info-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.info-subtitle {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.info-list li {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.info-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-size: 24px;
    line-height: 1;
}

    .info-list li strong {
        color: var(--text-color);
    }

/* Category Page */
.category-page {
    padding: 30px 0 50px;
    background: var(--bg-darker);
    min-height: calc(100vh - 400px);
}

.category-page-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.category-info-section {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.category-info-banner {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
    opacity: 0.3;
    pointer-events: none;
}

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

.category-banner-logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.category-banner-site {
    color: white;
    font-size: 12px;
    opacity: 0.9;
}

.category-info-body {
    padding: 25px;
}

.category-info-item {
    margin-bottom: 20px;
}

.category-info-item strong {
    color: var(--text-color);
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.category-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.category-description p {
    margin-bottom: 10px;
}

.category-description i {
    margin-right: 8px;
    color: var(--primary-light);
}

.category-features {
    margin-top: 20px;
}

.category-feature-item {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-feature-item i {
    color: var(--primary-light);
    font-size: 16px;
}

.category-features-group {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.category-feature-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
}

.category-feature-icon i {
    color: var(--primary-light);
    font-size: 16px;
}

.category-feature-check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 10px;
}

.category-feature-check i {
    color: var(--success-color);
    font-size: 16px;
}

.read-more-link {
    color: var(--primary-light);
    text-decoration: none;
    margin-left: auto;
    font-size: 12px;
}

.read-more-link:hover {
    text-decoration: underline;
}

.category-subcategories-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.subcategory-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    padding: 8px 0;
    transition: color 0.3s;
    border-bottom: 1px solid var(--border-color);
}

.subcategory-link:last-child {
    border-bottom: none;
}

.subcategory-link:hover {
    color: var(--primary-light);
}

.category-products-section {
    min-height: 400px;
}

.category-products-header {
    margin-bottom: 30px;
}

.category-products-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
}

.category-products-controls {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.product-search-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    position: relative;
}

.product-search-input {
    flex: 1;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-card);
    color: var(--text-color);
    font-size: 14px;
}

.product-search-input:focus {
    outline: none;
    border-color: var(--primary-light);
}

.product-search-input::placeholder {
    color: var(--text-light);
}

.product-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 10px;
    font-size: 16px;
    transition: color 0.3s;
}

.product-search-btn:hover {
    color: var(--text-color);
}

.product-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
}

.filter-toggle input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.sort-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.sort-selector select {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-card);
    color: var(--text-color);
    font-size: 14px;
    cursor: pointer;
}

.sort-selector select:focus {
    outline: none;
    border-color: var(--primary-light);
}

.subcategories-section {
    margin-bottom: 40px;
}

.subcategories-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.subcategory-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.subcategory-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.subcategory-card-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.subcategory-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subcategory-card-placeholder {
    font-size: 48px;
    color: white;
    opacity: 0.9;
}

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

.subcategory-card-logo {
    display: block;
    color: var(--text-light);
    font-size: 11px;
    margin-bottom: 8px;
}

.subcategory-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.category-product-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.category-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-card-link {
    text-decoration: none;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-product-image {
    width: 100%;
    height: 200px;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.category-product-placeholder {
    font-size: 64px;
    color: var(--text-light);
    opacity: 0.5;
}

.category-product-details {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-product-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 10px 0;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.category-product-rating .fa-star {
    font-size: 12px;
}

.category-product-rating .star-filled {
    color: #fbbf24;
}

.category-product-rating .star-empty {
    color: #cbd5e1;
}

.rating-count {
    color: var(--text-light);
    font-size: 12px;
    margin-left: 5px;
}

.category-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.product-old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 13px;
}

.product-current-price {
    color: var(--primary-light);
    font-size: 20px;
    font-weight: bold;
}

.category-product-platforms {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.category-product-platforms i {
    color: var(--text-light);
    font-size: 16px;
    opacity: 0.7;
}

.category-product-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: 0 0 12px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.category-product-cart-btn:hover {
    background: var(--primary-color);
}

.category-product-cart-btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-card);
    border-radius: 12px;
}

.no-products i {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products p {
    color: var(--text-light);
    font-size: 18px;
}

/* Responsive Category Page */
@media (max-width: 1024px) {
    .category-page-content {
        grid-template-columns: 1fr;
    }
    
    .category-info-section {
        position: static;
    }
    
    .category-products-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-search-box {
        width: 100%;
    }
    
    .product-filters {
        width: 100%;
        justify-content: space-between;
    }
    
    .category-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .category-product-image {
        height: 150px;
    }
    
    .category-product-title {
        font-size: 14px;
        min-height: 40px;
    }
    
    .product-current-price {
        font-size: 18px;
    }
}

/* Responsive Categories Page */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .category-tile-icon {
        font-size: 48px;
    }
    
    .category-tile-name {
        font-size: 14px;
    }
    
    .categories-search-wrapper {
        flex-direction: column;
    }
    
    .category-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .categories-info-section {
        padding: 25px 20px;
    }
    
    .info-title {
        font-size: 20px;
    }
    
    .info-text {
        font-size: 14px;
    }
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    padding: 0;
    margin-top: 50px;
    border-top: 1px solid var(--border-color);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    flex: 1;
}

.footer-heading {
    color: var(--primary-light);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--primary-light);
}

.footer-contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item.full-width {
    grid-column: 1 / -1;
}

.contact-label {
    color: #999;
    font-size: 12px;
    font-weight: 500;
}

.contact-value {
    color: #ffffff;
    font-size: 14px;
}

.footer-contact-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.qr-code-section {
    text-align: center;
}

.qr-code {
    width: 120px;
    height: 120px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.qr-text {
    color: #ffffff;
    font-size: 12px;
    margin: 0;
}

.footer-bottom-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods {
    flex: 1;
}

.payment-logos {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-logo {
    width: 60px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    color: #ffffff;
    font-size: 13px;
    margin: 5px 0;
}

.footer-copyright .company-info {
    color: #999;
    font-size: 12px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-links-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-contact-section {
        flex-direction: column;
    }
    
    .footer-contact-right {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-copyright {
        text-align: left;
        width: 100%;
    }
    
    .payment-logos {
        justify-content: flex-start;
    }
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 50px auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
}

.btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.btn-block {
    width: 100%;
}

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

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

/* Responsive Design */
/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-sidebar {
        flex-direction: row;
    }
    
    .header-links {
        flex-wrap: wrap;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Mobile */
/* Responsive Header */
@media (max-width: 1024px) {
    .header-main-content {
        flex-wrap: wrap;
    }
    
    .main-search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .top-links {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top-bar {
        padding: 6px 0;
    }
    
    .header-top-bar-content {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .top-links {
        gap: 10px;
        font-size: 12px;
    }
    
    .top-link {
        font-size: 12px;
    }
    
    .lang-currency-selector {
        font-size: 12px;
        padding: 3px 8px;
    }
    
    .header-main {
        padding: 15px 0;
    }
    
    .header-main-content {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .main-logo-img {
        max-height: 45px;
    }
    
    .main-logo-text {
        font-size: 22px;
    }
    
    .main-search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
    }
    
    .user-login-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .user-btn-name {
        display: none;
    }
    
    .user-btn-label {
        font-size: 10px;
    }
    
    .header-icon-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .notification-dropdown {
        width: 320px;
        right: -50px;
    }
    
    .user-dropdown-menu {
        width: 260px;
        right: 0;
    }
    
    .main-cart-btn {
        padding: 10px 12px;
        font-size: 18px;
    }
    
    .category-nav-item {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .category-nav-item span {
        display: none;
    }
    
    .category-nav-item i {
        font-size: 18px;
    }
    
    .product-card-scroll {
        flex: 0 0 180px;
    }
    
    .product-image-wrapper {
        height: 150px;
    }
    
    .category-section-title {
        font-size: 20px;
    }
    
    .product-actions {
        opacity: 1;
    }
    
    .empty-category-message {
        padding: 40px 20px;
    }
    
    .empty-category-message i {
        font-size: 48px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo img {
        max-height: 40px;
        max-width: 150px;
    }
    
    .search-bar {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .header-links {
        display: none; /* Mobilde gizle, hamburger menü eklenebilir */
    }
    
    .user-cart {
        width: 100%;
        justify-content: space-between;
    }
    
    .login-btn, .user-btn {
        flex: 1;
        text-align: center;
        font-size: 12px;
        padding: 8px 15px;
    }
    
    .main-nav {
        padding: 10px 0;
    }
    
    .nav-content {
        gap: 8px;
        padding: 5px 0;
    }
    
    .nav-item {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .hero-section {
        padding: 20px 0;
    }
    
    .hero-slider {
        padding: 20px;
        min-height: 300px;
    }
    
    .slider-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .slider-icon {
        font-size: 80px;
    }
    
    .slider-right h1 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .slider-features {
        justify-content: center;
        gap: 10px;
    }
    
    .slider-features span {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .hero-sidebar {
        flex-direction: column;
    }
    
    .sidebar-banner {
        padding: 20px;
    }
    
    .sidebar-banner h3 {
        font-size: 18px;
    }
    
    .category-icons {
        gap: 10px;
    }
    
    .category-icon {
        min-width: 80px;
        padding: 15px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .category-icon span {
        font-size: 11px;
    }
    
    .products-section {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .product-card {
        border-radius: 10px;
    }
    
    .product-image {
        height: 150px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 14px;
        min-height: 40px;
    }
    
    .current-price {
        font-size: 18px;
    }
    
    .product-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .form-container {
        padding: 25px 20px;
        margin: 30px auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }
    
    .logo img {
        max-height: 35px;
        max-width: 120px;
    }
    
    .search-input {
        font-size: 12px;
        padding: 10px 45px 10px 15px;
    }
    
    .search-btn {
        width: 35px;
        height: 35px;
    }
    
    .nav-item {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .hero-slider {
        min-height: 250px;
        padding: 15px;
    }
    
    .slider-right h1 {
        font-size: 18px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-info h3 {
        font-size: 13px;
        min-height: 36px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .product-btn {
        padding: 8px;
        font-size: 12px;
    }
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.quick-view-content {
    position: relative;
    background: var(--bg-card);
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.quick-view-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-dark);
    border: none;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10002;
    transition: all 0.3s;
}

.quick-view-close:hover {
    background: var(--danger-color);
    color: white;
}

.quick-view-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.quick-view-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.quick-view-info h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.quick-view-price {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.quick-view-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quick-view-actions .btn {
    flex: 1;
    padding: 15px;
    font-size: 16px;
}

/* Ürün Karşılaştırma Tablosu */
.comparison-table-wrapper {
    margin-top: 30px;
}

.comparison-table {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-dark);
    font-weight: 600;
    text-align: left;
}

.comparison-table td {
    text-align: center;
}

.btn-remove {
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Son Görüntülenen Ürünler */
.recently-viewed-section {
    margin: 50px 0;
}

.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Ürün Önerileri */
.recommended-products {
    margin: 50px 0;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Flash Sale Badge */
.flash-sale-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    animation: pulse 2s infinite;
}

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

.flash-sale-countdown {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
}

.countdown-item {
    background: var(--bg-dark);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

.countdown-value {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-light);
}

.countdown-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
}

/* Ürün Etiketleri */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    z-index: 10;
}

.badge-new {
    background: var(--success-color);
    color: white;
}

.badge-popular {
    background: var(--primary-light);
    color: white;
}

.badge-sale {
    background: var(--danger-color);
    color: white;
}

.badge-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Responsive Quick View */
@media (max-width: 768px) {
    .quick-view-body {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .quick-view-image {
        order: 1;
    }
    
    .quick-view-info {
        order: 2;
    }
    
    .comparison-table-wrapper {
        overflow-x: scroll;
    }
    
    .comparison-table {
        min-width: 800px;
    }
}
