/* Ana Renkler */
:root {
    --primary-color: #e7850e ; /* RAL1004 - Altın Sarısı */
    --secondary-color: #000000; /* Siyah */
    --text-color: #333333;
    --light-color: #FFFFFF; /* Beyaz */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #444444;
    --accent-color: #ff9b00; /* Vurgu rengi - RAL1004 */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Metin gölgesi */
    
    /* Premium Theme Variables */
    --premium-primary: #cc9a66; /* Elegant gold */
    --premium-secondary: #1d2025; /* Rich dark charcoal */
    --premium-accent: #e2b883; /* Light gold accent */
    --premium-light: #fff; /* Crisp white */
    --premium-text: #3a3a3a; /* Dark gray for text */
    --premium-text-light: #757575; /* Light gray for secondary text */
    --premium-border: #e5e5e5; /* Light border color */
    --premium-shadow: 0 8px 30px rgba(0,0,0,0.1); /* Subtle shadow */
    --premium-gradient: linear-gradient(135deg, #d5ac82 0%, #cc9a66 100%); /* Gold gradient */
    --premium-success: #5c9f7d; /* Elegant green for success states */
    
    /* Turuncu Theme Variables */
    --orange-primary: #ff7e00; /* Ana turuncu renk */
    --orange-secondary: #222222; /* Koyu gri/siyah */
    --orange-light: #fff9f2; /* Açık turuncu arka plan */
    --orange-dark: #d46a00; /* Koyu turuncu */
    --orange-accent: #ff9535; /* Vurgu turuncu */
    --orange-border: #f0e0d0; /* Turuncu kenarlık */
    --orange-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Gölge */
    --orange-gradient: linear-gradient(135deg, #ff9f40 0%, #ff7e00 100%); /* Turuncu gradient */
    --orange-gradient-hover: linear-gradient(135deg, #e67200 0%, #ff8928 50%, #e67200 100%);
}

/* Genel Stil Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Kategori Kutuları - Mobilya ve Halı */
.category-boxes {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.category-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.category-box-link {
    text-decoration: none;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.category-box-link:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.category-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.category-video,
.category-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video desteklenmediğinde GIF gösterilmesi için */
.category-video:not([playsinline]) ~ .category-gif {
    display: block !important;
}

.category-video[playsinline] + .category-gif {
    display: none;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1));
    z-index: 2;
    transition: background 0.5s ease;
}

.category-box-link:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2));
}

.category-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 40px;
    z-index: 3;
    color: #fff;
    text-align: center;
    transition: transform 0.4s ease;
}

.category-box-link:hover .category-box-content {
    transform: translateY(-10px);
}

.category-box-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    font-weight: 700;
}

.category-box-content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn-discover {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.category-box-link:hover .btn-discover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-discover i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.category-box-link:hover .btn-discover i {
    transform: translateX(5px);
}

/* Üst Bildirim Bandı */
.top-strip {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    top: 0;
    z-index: 100;
}

/* Header İçerik */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    position: relative !important;
    z-index: 10 !important;
}

.logo a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px !important; /* Standart logo boyutu - tüm sayfalarda aynı */
    width: auto !important; /* Orantılı genişlik */
    height: auto !important;
    max-width: 180px !important; /* Maksimum genişlik sınırı */
    transition: transform 0.3s ease;
    margin: 0 !important; /* Tüm marginleri sıfırla */
    object-fit: contain !important; /* Logo oranını koru */
    
}

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

.logo h1 {
    font-size: 28px !important; /* Standart yazı boyutu - tüm sayfalarda aynı */
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo h1:hover {
    color: var(--primary-color);
}

/* Modern Arama Çubuğu Tasarımı */
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.search-bar form {
    display: flex;
    background-color: #222;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--primary-color); /* Border'ı turuncu yaptık */
    transition: all 0.3s ease;
}

.search-bar form:focus-within {
    box-shadow: 0 0 0 2px var(--primary-color);
    border-color: var(--primary-color);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    background-color: transparent;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #ff9966; /* Placeholder rengini daha açık turuncu yaptık */
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

/* Arama Önerileri için Hazırlık */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-bar form:focus-within + .search-suggestions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Sepet ve profil ikonları sağda olsun */
.action-item.cart {
    order: 1 !important;
}

.profile-icon {
    order: 2 !important;
}

.action-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item.cart {
    position: relative;
    padding-right: 10px;
}

.action-item i {
    font-size: 22px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-info {
    display: flex;
    flex-direction: column;
}

.action-label {
    font-size: 13px;
    color: #ccc;
    transition: color 0.3s ease;
}

.action-item:hover .action-label {
    color: var(--primary-color);
}

.cart-amount {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Profil İkonu Stili */
.profile-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color); /* Arka planı turuncu yaptık */
    transition: all 0.3s ease;
}

.profile-icon:hover {
    background: #e56b00; /* Hover durumunda koyu turuncu */
    transform: translateY(-2px);
}

.profile-icon i {
    font-size: 22px;
    color: #fff;
}

/* Ana Menü Stilleri */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* Navigation Dropdown Menü Stilleri */
.nav-items .has-submenu {
    position: relative;
}

.nav-items .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0 !important;
    background-color: #fff !important;
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    z-index: 1000;
    border-radius: 10px !important;
    padding: 15px 0 !important;
    margin: 0;
    list-style: none;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transform: none !important;
}

.nav-items .has-submenu:hover .submenu {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

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

.nav-items .submenu li {
    display: block;
    border-bottom: 1px solid #f8f8f8;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-items .submenu li:last-child {
    border-bottom: none;
}

.nav-items .submenu li:hover {
    background-color: #f8f9fa;
}

.nav-items .submenu a {
    display: block !important;
    padding: 15px 25px !important;
    color: #444 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent;
    position: relative;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.nav-items .submenu a:hover {
    background-color: #f8f9fa !important;
    color: #FF6600 !important;
    border-left-color: #FF6600 !important;
    padding-left: 30px !important;
    transform: translateX(5px);
}

.nav-items .submenu a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6600;
}

.nav-items .submenu a:hover::before {
    opacity: 1;
    right: 15px;
}

/* Responsive Dizayn için Dropdown Ayarları */
@media (max-width: 992px) {
    .nav-items .submenu {
        width: 280px !important;
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-items .submenu {
        width: 250px !important;
        padding: 10px 0 !important;
    }
    
    .nav-items .submenu a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .nav-items .submenu a:hover {
        padding-left: 25px !important;
    }
}

/* Üst Bildirim Bandı */
.top-strip {
    background-color: #1a1a1a;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Sidebar Stil */
.profile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.profile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #777;
    transition: color 0.2s;
}

.close-sidebar:hover {
    color: #333;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.login-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.login-btn:hover {
    background-color: #e56b00;
}

.register-btn {
    background-color: #333;
    color: #fff;
}

.register-btn:hover {
    background-color: #444;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Responsive Dizayn */
@media (max-width: 992px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
        margin-bottom: 0 !important;
    }
    
    .search-bar {
        display: none !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin: 0 !important;
        width: auto !important;
        justify-content: flex-end !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .action-label {
        display: none;
    }
    
    .cart-info {
        display: none;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-items li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 576px) {
    .nav-items li a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slider-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

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

.slider-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

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

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

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

.slider-nav-btn i {
    color: #fff;
    font-size: 1.2rem;
}

/* Öne Çıkan Ürünler ve İndirimli Ürünler */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
}

.featured-products.discounted-products {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.discounted-products .section-title {
    color: var(--primary-color);
    font-weight: 700;
}

.discounted-products .section-title::after {
    background-color: var(--primary-color);
}

.discounted-products .product-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.1);
}

.discounted-products .product-card:hover {
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.2);
    transform: translateY(-8px);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

/* Remove any overlay on hover */
.product-card:hover:before,
.product-card:hover:after,
.product-card .overlay,
.product-card:hover .overlay {
    display: none !important;
}

/* Make sure hover effect only affects card position, not internal overlays */
.product-card:hover img {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0; /* Görsel alanı küçülmesin */
}

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

.product-info {
    padding: 20px;
    flex-grow: 1; /* İçerik alanı esnek olsun */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği düzenli dağıt */
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Sabit yükseklik */
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff7700; /* Turuncu */
}

.product-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-category a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto; /* Aşağıda hizala */
}

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

.current-price {
    color: #ff7700; /* Turuncu fiyat */
    font-size: 18px;
    font-weight: 700;
}

.discounted-products .current-price {
    color: var(--light-color);
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.discounted-products .view-all-btn .btn {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.discounted-products .view-all-btn .btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.no-products p {
    font-size: 18px;
    color: #777;
}

.no-products.light {
    background-color: rgba(255, 255, 255, 0.1);
}

.no-products.light p {
    color: var(--light-color);
}

/* Neden Biz Bölümü */
.why-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-us-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-us-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 34px;
    border-radius: 50%;
}

.why-us-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-us-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Kampanya Banner */
.promo-banner {
    background-color: var(--secondary-color);
    background-image: url('assets/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0;
    text-align: center;
    margin: 60px 0;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 15px;
    display: inline-block;
    max-width: 700px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--light-color);
}

.banner-content .btn {
    font-size: 18px;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.banner-content .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Hizmetler */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hızlı İletişim */
.quick-contact {
    padding: 80px 0;
    background-color: #fff;
}

.quick-contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quick-contact-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.quick-contact-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}

.phone-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

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

.email-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 25px;
    text-align: left;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.footer-logo p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-links {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

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

.quick-links li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
}

.quick-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-links li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--premium-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    overflow: hidden;
}

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

.back-to-top:hover {
    background-color: var(--premium-accent);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 16px;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    
    .back-to-top i {
        font-size: 14px;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-boxes-container {
        gap: 30px;
    }
    
    .category-box-link {
        height: 400px;
    }
    
    .category-box-content {
        padding: 40px 30px;
    }
    
    .category-box-content h2 {
        font-size: 30px;
    }
    
    .category-box-content p {
        font-size: 16px;
    }
    
    .products,
    .why-us-items,
    .service-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .nav-items {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .category-boxes-container {
        grid-template-columns: 1fr;
    }
    
    .category-box-link {
        height: 350px;
    }
    
    .category-box-content h2 {
        font-size: 28px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slider-content h2 {
        font-size: 2rem;
    }
    
    .slider-content p {
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* Navigation Dropdown Menü Stilleri */
.nav-items .has-submenu {
    position: relative;
}

.nav-items .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0 !important;
    background-color: #fff !important;
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    z-index: 1000;
    border-radius: 10px !important;
    padding: 15px 0 !important;
    margin: 0;
    list-style: none;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transform: none !important;
}

.nav-items .has-submenu:hover .submenu {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

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

.nav-items .submenu li {
    display: block;
    border-bottom: 1px solid #f8f8f8;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-items .submenu li:last-child {
    border-bottom: none;
}

.nav-items .submenu li:hover {
    background-color: #f8f9fa;
}

.nav-items .submenu a {
    display: block !important;
    padding: 15px 25px !important;
    color: #444 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent;
    position: relative;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.nav-items .submenu a:hover {
    background-color: #f8f9fa !important;
    color: #FF6600 !important;
    border-left-color: #FF6600 !important;
    padding-left: 30px !important;
    transform: translateX(5px);
}

.nav-items .submenu a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6600;
}

.nav-items .submenu a:hover::before {
    opacity: 1;
    right: 15px;
}

/* Responsive Dizayn için Dropdown Ayarları */
@media (max-width: 992px) {
    .nav-items .submenu {
        width: 280px !important;
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-items .submenu {
        width: 250px !important;
        padding: 10px 0 !important;
    }
    
    .nav-items .submenu a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .nav-items .submenu a:hover {
        padding-left: 25px !important;
    }
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}
/* Ana Renkler */
:root {
    --primary-color: #e7850e ; /* RAL1004 - Altın Sarısı */
    --secondary-color: #000000; /* Siyah */
    --text-color: #333333;
    --light-color: #FFFFFF; /* Beyaz */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #444444;
    --accent-color: #ff9b00; /* Vurgu rengi - RAL1004 */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Metin gölgesi */
    
    /* Premium Theme Variables */
    --premium-primary: #cc9a66; /* Elegant gold */
    --premium-secondary: #1d2025; /* Rich dark charcoal */
    --premium-accent: #e2b883; /* Light gold accent */
    --premium-light: #fff; /* Crisp white */
    --premium-text: #3a3a3a; /* Dark gray for text */
    --premium-text-light: #757575; /* Light gray for secondary text */
    --premium-border: #e5e5e5; /* Light border color */
    --premium-shadow: 0 8px 30px rgba(0,0,0,0.1); /* Subtle shadow */
    --premium-gradient: linear-gradient(135deg, #d5ac82 0%, #cc9a66 100%); /* Gold gradient */
    --premium-success: #5c9f7d; /* Elegant green for success states */
    
    /* Turuncu Theme Variables */
    --orange-primary: #ff7e00; /* Ana turuncu renk */
    --orange-secondary: #222222; /* Koyu gri/siyah */
    --orange-light: #fff9f2; /* Açık turuncu arka plan */
    --orange-dark: #d46a00; /* Koyu turuncu */
    --orange-accent: #ff9535; /* Vurgu turuncu */
    --orange-border: #f0e0d0; /* Turuncu kenarlık */
    --orange-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Gölge */
    --orange-gradient: linear-gradient(135deg, #ff9f40 0%, #ff7e00 100%); /* Turuncu gradient */
    --orange-gradient-hover: linear-gradient(135deg, #e67200 0%, #ff8928 50%, #e67200 100%);
}

/* Genel Stil Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Kategori Kutuları - Mobilya ve Halı */
.category-boxes {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.category-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.category-box-link {
    text-decoration: none;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.category-box-link:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.category-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.category-video,
.category-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video desteklenmediğinde GIF gösterilmesi için */
.category-video:not([playsinline]) ~ .category-gif {
    display: block !important;
}

.category-video[playsinline] + .category-gif {
    display: none;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1));
    z-index: 2;
    transition: background 0.5s ease;
}

.category-box-link:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2));
}

.category-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 40px;
    z-index: 3;
    color: #fff;
    text-align: center;
    transition: transform 0.4s ease;
}

.category-box-link:hover .category-box-content {
    transform: translateY(-10px);
}

.category-box-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    font-weight: 700;
}

.category-box-content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn-discover {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.category-box-link:hover .btn-discover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-discover i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.category-box-link:hover .btn-discover i {
    transform: translateX(5px);
}

/* Üst Bildirim Bandı */
.top-strip {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    top: 0;
    z-index: 100;
}

/* Header İçerik */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Modern Arama Çubuğu Tasarımı */
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.search-bar form {
    display: flex;
    background-color: #222;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--primary-color); /* Border'ı turuncu yaptık */
    transition: all 0.3s ease;
}

.search-bar form:focus-within {
    box-shadow: 0 0 0 2px var(--primary-color);
    border-color: var(--primary-color);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    background-color: transparent;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #ff9966; /* Placeholder rengini daha açık turuncu yaptık */
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

/* Arama Önerileri için Hazırlık */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-bar form:focus-within + .search-suggestions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Sepet ve profil ikonları sağda olsun */
.action-item.cart {
    order: 1 !important;
}

.profile-icon {
    order: 2 !important;
}

.action-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item.cart {
    position: relative;
    padding-right: 10px;
}

.action-item i {
    font-size: 22px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-info {
    display: flex;
    flex-direction: column;
}

.action-label {
    font-size: 13px;
    color: #ccc;
    transition: color 0.3s ease;
}

.action-item:hover .action-label {
    color: var(--primary-color);
}

.cart-amount {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Profil İkonu Stili */
.profile-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color); /* Arka planı turuncu yaptık */
    transition: all 0.3s ease;
}

.profile-icon:hover {
    background: #e56b00; /* Hover durumunda koyu turuncu */
    transform: translateY(-2px);
}

.profile-icon i {
    font-size: 22px;
    color: #fff;
}

/* Ana Menü Stilleri */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* Üst Bildirim Bandı */
.top-strip {
    background-color: #1a1a1a;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Sidebar Stil */
.profile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.profile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #777;
    transition: color 0.2s;
}

.close-sidebar:hover {
    color: #333;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.login-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.login-btn:hover {
    background-color: #e56b00;
}

.register-btn {
    background-color: #333;
    color: #fff;
}

.register-btn:hover {
    background-color: #444;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Responsive Dizayn */
@media (max-width: 992px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
        margin-bottom: 0 !important;
    }
    
    .search-bar {
        display: none !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin: 0 !important;
        width: auto !important;
        justify-content: flex-end !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .action-label {
        display: none;
    }
    
    .cart-info {
        display: none;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-items li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 576px) {
    .nav-items li a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slider-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

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

.slider-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

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

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

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

.slider-nav-btn i {
    color: #fff;
    font-size: 1.2rem;
}

/* Öne Çıkan Ürünler ve İndirimli Ürünler */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
}

.featured-products.discounted-products {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.discounted-products .section-title {
    color: var(--primary-color);
    font-weight: 700;
}

.discounted-products .section-title::after {
    background-color: var(--primary-color);
}

.discounted-products .product-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.1);
}

.discounted-products .product-card:hover {
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.2);
    transform: translateY(-8px);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

/* Remove any overlay on hover */
.product-card:hover:before,
.product-card:hover:after,
.product-card .overlay,
.product-card:hover .overlay {
    display: none !important;
}

/* Make sure hover effect only affects card position, not internal overlays */
.product-card:hover img {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0; /* Görsel alanı küçülmesin */
}

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

.product-info {
    padding: 20px;
    flex-grow: 1; /* İçerik alanı esnek olsun */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği düzenli dağıt */
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Sabit yükseklik */
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff7700; /* Turuncu */
}

.product-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-category a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto; /* Aşağıda hizala */
}

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

.current-price {
    color: #ff7700; /* Turuncu fiyat */
    font-size: 18px;
    font-weight: 700;
}

.discounted-products .current-price {
    color: var(--light-color);
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.discounted-products .view-all-btn .btn {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.discounted-products .view-all-btn .btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.no-products p {
    font-size: 18px;
    color: #777;
}

.no-products.light {
    background-color: rgba(255, 255, 255, 0.1);
}

.no-products.light p {
    color: var(--light-color);
}

/* Neden Biz Bölümü */
.why-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-us-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-us-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 34px;
    border-radius: 50%;
}

.why-us-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-us-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Kampanya Banner */
.promo-banner {
    background-color: var(--secondary-color);
    background-image: url('assets/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0;
    text-align: center;
    margin: 60px 0;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 15px;
    display: inline-block;
    max-width: 700px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--light-color);
}

.banner-content .btn {
    font-size: 18px;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.banner-content .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Hizmetler */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hızlı İletişim */
.quick-contact {
    padding: 80px 0;
    background-color: #fff;
}

.quick-contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quick-contact-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.quick-contact-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}

.phone-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

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

.email-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 25px;
    text-align: left;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.footer-logo p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-links {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

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

.quick-links li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
}

.quick-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-links li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--premium-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    overflow: hidden;
}

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

.back-to-top:hover {
    background-color: var(--premium-accent);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 16px;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    
    .back-to-top i {
        font-size: 14px;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-boxes-container {
        gap: 30px;
    }
    
    .category-box-link {
        height: 400px;
    }
    
    .category-box-content {
        padding: 40px 30px;
    }
    
    .category-box-content h2 {
        font-size: 30px;
    }
    
    .category-box-content p {
        font-size: 16px;
    }
    
    .products,
    .why-us-items,
    .service-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .nav-items {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .category-boxes-container {
        grid-template-columns: 1fr;
    }
    
    .category-box-link {
        height: 350px;
    }
    
    .category-box-content h2 {
        font-size: 28px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slider-content h2 {
        font-size: 2rem;
    }
    
    .slider-content p {
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* Navigation Dropdown Menü Stilleri */
.nav-items .has-submenu {
    position: relative;
}

.nav-items .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0 !important;
    background-color: #fff !important;
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    z-index: 1000;
    border-radius: 10px !important;
    padding: 15px 0 !important;
    margin: 0;
    list-style: none;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transform: none !important;
}

.nav-items .has-submenu:hover .submenu {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

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

.nav-items .submenu li {
    display: block;
    border-bottom: 1px solid #f8f8f8;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-items .submenu li:last-child {
    border-bottom: none;
}

.nav-items .submenu li:hover {
    background-color: #f8f9fa;
}

.nav-items .submenu a {
    display: block !important;
    padding: 15px 25px !important;
    color: #444 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent;
    position: relative;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.nav-items .submenu a:hover {
    background-color: #f8f9fa !important;
    color: #FF6600 !important;
    border-left-color: #FF6600 !important;
    padding-left: 30px !important;
    transform: translateX(5px);
}

.nav-items .submenu a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6600;
}

.nav-items .submenu a:hover::before {
    opacity: 1;
    right: 15px;
}

/* Responsive Dizayn için Dropdown Ayarları */
@media (max-width: 992px) {
    .nav-items .submenu {
        width: 280px !important;
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-items .submenu {
        width: 250px !important;
        padding: 10px 0 !important;
    }
    
    .nav-items .submenu a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .nav-items .submenu a:hover {
        padding-left: 25px !important;
    }
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

    .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

    .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* Navigation Dropdown Menü Stilleri */
.nav-items .has-submenu {
    position: relative;
}

.nav-items .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0 !important;
    background-color: #fff !important;
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    z-index: 1000;
    border-radius: 10px !important;
    padding: 15px 0 !important;
    margin: 0;
    list-style: none;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transform: none !important;
}

.nav-items .has-submenu:hover .submenu {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

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

.nav-items .submenu li {
    display: block;
    border-bottom: 1px solid #f8f8f8;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-items .submenu li:last-child {
    border-bottom: none;
}

.nav-items .submenu li:hover {
    background-color: #f8f9fa;
}

.nav-items .submenu a {
    display: block !important;
    padding: 15px 25px !important;
    color: #444 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent;
    position: relative;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.nav-items .submenu a:hover {
    background-color: #f8f9fa !important;
    color: #FF6600 !important;
    border-left-color: #FF6600 !important;
    padding-left: 30px !important;
    transform: translateX(5px);
}

.nav-items .submenu a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6600;
}

.nav-items .submenu a:hover::before {
    opacity: 1;
    right: 15px;
}

/* Responsive Dizayn için Dropdown Ayarları */
@media (max-width: 992px) {
    .nav-items .submenu {
        width: 280px !important;
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-items .submenu {
        width: 250px !important;
        padding: 10px 0 !important;
    }
    
    .nav-items .submenu a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .nav-items .submenu a:hover {
        padding-left: 25px !important;
    }
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

    .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Ana Renkler */
:root {
    --primary-color: #e7850e ; /* RAL1004 - Altın Sarısı */
    --secondary-color: #000000; /* Siyah */
    --text-color: #333333;
    --light-color: #FFFFFF; /* Beyaz */
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #444444;
    --accent-color: #ff9b00; /* Vurgu rengi - RAL1004 */
    --success-color: #28a745;
    --danger-color: #dc3545;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Metin gölgesi */
    
    /* Premium Theme Variables */
    --premium-primary: #cc9a66; /* Elegant gold */
    --premium-secondary: #1d2025; /* Rich dark charcoal */
    --premium-accent: #e2b883; /* Light gold accent */
    --premium-light: #fff; /* Crisp white */
    --premium-text: #3a3a3a; /* Dark gray for text */
    --premium-text-light: #757575; /* Light gray for secondary text */
    --premium-border: #e5e5e5; /* Light border color */
    --premium-shadow: 0 8px 30px rgba(0,0,0,0.1); /* Subtle shadow */
    --premium-gradient: linear-gradient(135deg, #d5ac82 0%, #cc9a66 100%); /* Gold gradient */
    --premium-success: #5c9f7d; /* Elegant green for success states */
    
    /* Turuncu Theme Variables */
    --orange-primary: #ff7e00; /* Ana turuncu renk */
    --orange-secondary: #222222; /* Koyu gri/siyah */
    --orange-light: #fff9f2; /* Açık turuncu arka plan */
    --orange-dark: #d46a00; /* Koyu turuncu */
    --orange-accent: #ff9535; /* Vurgu turuncu */
    --orange-border: #f0e0d0; /* Turuncu kenarlık */
    --orange-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Gölge */
    --orange-gradient: linear-gradient(135deg, #ff9f40 0%, #ff7e00 100%); /* Turuncu gradient */
    --orange-gradient-hover: linear-gradient(135deg, #e67200 0%, #ff8928 50%, #e67200 100%);
}

/* Genel Stil Sıfırlama */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

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

.btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Başlıklar */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Kategori Kutuları - Mobilya ve Halı */
.category-boxes {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.category-boxes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.category-box-link {
    text-decoration: none;
    display: block;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.category-box-link:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.category-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.category-video,
.category-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video desteklenmediğinde GIF gösterilmesi için */
.category-video:not([playsinline]) ~ .category-gif {
    display: block !important;
}

.category-video[playsinline] + .category-gif {
    display: none;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.1));
    z-index: 2;
    transition: background 0.5s ease;
}

.category-box-link:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2));
}

.category-box-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 40px;
    z-index: 3;
    color: #fff;
    text-align: center;
    transition: transform 0.4s ease;
}

.category-box-link:hover .category-box-content {
    transform: translateY(-10px);
}

.category-box-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    letter-spacing: 1px;
    font-weight: 700;
}

.category-box-content p {
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.btn-discover {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.category-box-link:hover .btn-discover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-discover i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.category-box-link:hover .btn-discover i {
    transform: translateX(5px);
}

/* Üst Bildirim Bandı */
.top-strip {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 8px 0;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    top: 0;
    z-index: 100;
}

/* Header İçerik */
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    position: relative !important;
    z-index: 10 !important;
}

.logo a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 80px !important; /* Standart logo boyutu - tüm sayfalarda aynı */
    width: auto !important; /* Orantılı genişlik */
    height: auto !important;
    max-width: 180px !important; /* Maksimum genişlik sınırı */
    transition: transform 0.3s ease;
    margin: 0 !important; /* Tüm marginleri sıfırla */
    object-fit: contain !important; /* Logo oranını koru */
}

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

.logo h1 {
    font-size: 28px !important; /* Standart yazı boyutu - tüm sayfalarda aynı */
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo h1:hover {
    color: var(--primary-color);
}

/* Modern Arama Çubuğu Tasarımı */
.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    position: relative;
}

.search-bar form {
    display: flex;
    background-color: #222;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--primary-color); /* Border'ı turuncu yaptık */
    transition: all 0.3s ease;
}

.search-bar form:focus-within {
    box-shadow: 0 0 0 2px var(--primary-color);
    border-color: var(--primary-color);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    background-color: transparent;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #ff9966; /* Placeholder rengini daha açık turuncu yaptık */
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

/* Arama Önerileri için Hazırlık */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 5px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.search-bar form:focus-within + .search-suggestions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Sepet ve profil ikonları sağda olsun */
.action-item.cart {
    order: 1 !important;
}

.profile-icon {
    order: 2 !important;
}

.action-item {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item.cart {
    position: relative;
    padding-right: 10px;
}

.action-item i {
    font-size: 22px;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.cart-info {
    display: flex;
    flex-direction: column;
}

.action-label {
    font-size: 13px;
    color: #ccc;
    transition: color 0.3s ease;
}

.action-item:hover .action-label {
    color: var(--primary-color);
}

.cart-amount {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Profil İkonu Stili */
.profile-icon {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color); /* Arka planı turuncu yaptık */
    transition: all 0.3s ease;
}

.profile-icon:hover {
    background: #e56b00; /* Hover durumunda koyu turuncu */
    transform: translateY(-2px);
}

.profile-icon i {
    font-size: 22px;
    color: #fff;
}

/* Ana Menü Stilleri */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* Navigation Dropdown Menü Stilleri */
.nav-items .has-submenu {
    position: relative;
}

.nav-items .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0 !important;
    background-color: #fff !important;
    width: 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
    z-index: 1000;
    border-radius: 10px !important;
    padding: 15px 0 !important;
    margin: 0;
    list-style: none;
    border: 1px solid #f0f0f0;
    overflow: hidden;
    transform: none !important;
}

.nav-items .has-submenu:hover .submenu {
    display: block;
    animation: fadeInUp 0.3s ease-out;
}

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

.nav-items .submenu li {
    display: block;
    border-bottom: 1px solid #f8f8f8;
    margin: 0;
    transition: all 0.3s ease;
}

.nav-items .submenu li:last-child {
    border-bottom: none;
}

.nav-items .submenu li:hover {
    background-color: #f8f9fa;
}

.nav-items .submenu a {
    display: block !important;
    padding: 15px 25px !important;
    color: #444 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-left: 3px solid transparent;
    position: relative;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.nav-items .submenu a:hover {
    background-color: #f8f9fa !important;
    color: #FF6600 !important;
    border-left-color: #FF6600 !important;
    padding-left: 30px !important;
    transform: translateX(5px);
}

.nav-items .submenu a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #FF6600;
}

.nav-items .submenu a:hover::before {
    opacity: 1;
    right: 15px;
}

/* Responsive Dizayn için Dropdown Ayarları */
@media (max-width: 992px) {
    .nav-items .submenu {
        width: 280px !important;
        left: 0;
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-items .submenu {
        width: 250px !important;
        padding: 10px 0 !important;
    }
    
    .nav-items .submenu a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .nav-items .submenu a:hover {
        padding-left: 25px !important;
    }
}

/* Üst Bildirim Bandı */
.top-strip {
    background-color: #1a1a1a;
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Sidebar Stil */
.profile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px;
}

.profile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #777;
    transition: color 0.2s;
}

.close-sidebar:hover {
    color: #333;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
}

.login-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.login-btn:hover {
    background-color: #e56b00;
}

.register-btn {
    background-color: #333;
    color: #fff;
}

.register-btn:hover {
    background-color: #444;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Responsive Dizayn */
@media (max-width: 992px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
        margin-bottom: 0 !important;
    }
    
    .search-bar {
        display: none !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin: 0 !important;
        width: auto !important;
        justify-content: flex-end !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .action-label {
        display: none;
    }
    
    .cart-info {
        display: none;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-items li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 576px) {
    .nav-items li a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slider-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

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

.slider-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

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

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

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

.slider-nav-btn i {
    color: #fff;
    font-size: 1.2rem;
}

/* Öne Çıkan Ürünler ve İndirimli Ürünler */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
}

.featured-products.discounted-products {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.discounted-products .section-title {
    color: var(--primary-color);
    font-weight: 700;
}

.discounted-products .section-title::after {
    background-color: var(--primary-color);
}

.discounted-products .product-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.1);
}

.discounted-products .product-card:hover {
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.2);
    transform: translateY(-8px);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

/* Remove any overlay on hover */
.product-card:hover:before,
.product-card:hover:after,
.product-card .overlay,
.product-card:hover .overlay {
    display: none !important;
}

/* Make sure hover effect only affects card position, not internal overlays */
.product-card:hover img {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0; /* Görsel alanı küçülmesin */
}

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

.product-info {
    padding: 20px;
    flex-grow: 1; /* İçerik alanı esnek olsun */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği düzenli dağıt */
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Sabit yükseklik */
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff7700; /* Turuncu */
}

.product-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-category a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto; /* Aşağıda hizala */
}

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

.current-price {
    color: #ff7700; /* Turuncu fiyat */
    font-size: 18px;
    font-weight: 700;
}

.discounted-products .current-price {
    color: var(--light-color);
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.discounted-products .view-all-btn .btn {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.discounted-products .view-all-btn .btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.no-products p {
    font-size: 18px;
    color: #777;
}

.no-products.light {
    background-color: rgba(255, 255, 255, 0.1);
}

.no-products.light p {
    color: var(--light-color);
}

/* Neden Biz Bölümü */
.why-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-us-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-us-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 34px;
    border-radius: 50%;
}

.why-us-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-us-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Kampanya Banner */
.promo-banner {
    background-color: var(--secondary-color);
    background-image: url('assets/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0;
    text-align: center;
    margin: 60px 0;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 15px;
    display: inline-block;
    max-width: 700px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--light-color);
}

.banner-content .btn {
    font-size: 18px;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.banner-content .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Hizmetler */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hızlı İletişim */
.quick-contact {
    padding: 80px 0;
    background-color: #fff;
}

.quick-contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quick-contact-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.quick-contact-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}

.phone-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

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

.email-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 25px;
    text-align: left;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.footer-logo p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-links {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

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

.quick-links li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
}

.quick-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-links li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--premium-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    overflow: hidden;
}

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

.back-to-top:hover {
    background-color: var(--premium-accent);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 16px;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    
    .back-to-top i {
        font-size: 14px;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-boxes-container {
        gap: 30px;
    }
    
    .category-box-link {
        height: 400px;
    }
    
    .category-box-content {
        padding: 40px 30px;
    }
    
    .category-box-content h2 {
        font-size: 30px;
    }
    
    .category-box-content p {
        font-size: 16px;
    }
    
    .products,
    .why-us-items,
    .service-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .nav-items {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .category-boxes-container {
        grid-template-columns: 1fr;
    }
    
    .category-box-link {
        height: 350px;
    }
    
    .category-box-content h2 {
        font-size: 28px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slider-content h2 {
        font-size: 2rem;
    }
    
    .slider-content p {
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

/* Responsive Dizayn */
@media (max-width: 992px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
        margin-bottom: 0 !important;
    }
    
    .search-bar {
        display: none !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .header-content {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    
    .logo {
        flex: 0 0 auto !important;
        order: 1 !important;
    }
    
    .header-actions {
        flex: 0 0 auto !important;
        order: 2 !important;
        margin: 0 !important;
        width: auto !important;
        justify-content: flex-end !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .action-label {
        display: none;
    }
    
    .cart-info {
        display: none;
    }
    
    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-items li a {
        padding: 12px 15px;
        font-size: 14px;
    }

    .action-item.cart {
        order: 1 !important;
    }

    .profile-icon {
        order: 2 !important;
    }
}

@media (max-width: 576px) {
    .nav-items li a {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-item.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slider-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #fff;
}

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

.slider-content .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: background 0.3s ease;
}

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

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

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

.slider-nav-btn i {
    color: #fff;
    font-size: 1.2rem;
}

/* Öne Çıkan Ürünler ve İndirimli Ürünler */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
}

.featured-products.discounted-products {
    background-color: var(--secondary-color);
    padding: 80px 0;
}

.discounted-products .section-title {
    color: var(--primary-color);
    font-weight: 700;
}

.discounted-products .section-title::after {
    background-color: var(--primary-color);
}

.discounted-products .product-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.1);
}

.discounted-products .product-card:hover {
    box-shadow: 0 8px 25px rgba(255, 119, 0, 0.2);
    transform: translateY(-8px);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

/* Remove any overlay on hover */
.product-card:hover:before,
.product-card:hover:after,
.product-card .overlay,
.product-card:hover .overlay {
    display: none !important;
}

/* Make sure hover effect only affects card position, not internal overlays */
.product-card:hover img {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0; /* Görsel alanı küçülmesin */
}

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

.product-info {
    padding: 20px;
    flex-grow: 1; /* İçerik alanı esnek olsun */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği düzenli dağıt */
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Sabit yükseklik */
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff7700; /* Turuncu */
}

.product-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-category a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto; /* Aşağıda hizala */
}

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

.current-price {
    color: #ff7700; /* Turuncu fiyat */
    font-size: 18px;
    font-weight: 700;
}

.discounted-products .current-price {
    color: var(--light-color);
}

.view-all-btn {
    text-align: center;
    margin-top: 40px;
}

.view-all-btn .btn {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.discounted-products .view-all-btn .btn {
    background-color: var(--light-color);
    color: var(--secondary-color);
}

.discounted-products .view-all-btn .btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.no-products p {
    font-size: 18px;
    color: #777;
}

.no-products.light {
    background-color: rgba(255, 255, 255, 0.1);
}

.no-products.light p {
    color: var(--light-color);
}

/* Neden Biz Bölümü */
.why-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-us-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-us-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 34px;
    border-radius: 50%;
}

.why-us-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-us-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Kampanya Banner */
.promo-banner {
    background-color: var(--secondary-color);
    background-image: url('assets/images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    padding: 100px 0;
    text-align: center;
    margin: 60px 0;
}

.banner-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: 15px;
    display: inline-block;
    max-width: 700px;
    margin: 0 auto;
}

.banner-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: var(--text-shadow);
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 22px;
    margin-bottom: 30px;
    color: var(--light-color);
}

.banner-content .btn {
    font-size: 18px;
    padding: 14px 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.banner-content .btn:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: scale(1.05);
}

/* Hizmetler */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-item i {
    font-size: 46px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.service-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Hızlı İletişim */
.quick-contact {
    padding: 80px 0;
    background-color: #fff;
}

.quick-contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quick-contact-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.quick-contact-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-btn {
    background-color: #f0f0f0;
    color: var(--secondary-color);
}

.phone-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

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

.email-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 25px;
    text-align: left;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.footer-logo p {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-logo h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.quick-links {
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

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

.quick-links li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    font-size: 14px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 15px;
}

.quick-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-links li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--medium-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--premium-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    overflow: hidden;
}

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

.back-to-top:hover {
    background-color: var(--premium-accent);
    transform: translateY(-3px);
}

.back-to-top i {
    font-size: 16px;
}

/* Mobile fixes */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    
    .back-to-top i {
        font-size: 14px;
    }
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-boxes-container {
        gap: 30px;
    }
    
    .category-box-link {
        height: 400px;
    }
    
    .category-box-content {
        padding: 40px 30px;
    }
    
    .category-box-content h2 {
        font-size: 30px;
    }
    
    .category-box-content p {
        font-size: 16px;
    }
    
    .products,
    .why-us-items,
    .service-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .nav-items {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .category-boxes-container {
        grid-template-columns: 1fr;
    }
    
    .category-box-link {
        height: 350px;
    }
    
    .category-box-content h2 {
        font-size: 28px;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .slider-content h2 {
        font-size: 2rem;
    }
    
    .slider-content p {
        font-size: 1.2rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

    .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

    .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .products {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 220px;
    }
    
    .category-box-content {
        padding: 30px 20px;
    }
    
    .category-box-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .category-box-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn-discover {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .banner-content {
        padding: 30px 15px;
    }
    
    .banner-content h2 {
        font-size: 28px;
    }
    
    .banner-content p {
        font-size: 16px;
    }
}

.quick-nav ul li a:hover {
    color: var(--primary-color);
}

.quick-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.quick-nav ul li a:hover::after {
    width: 100%;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #aaa;
}

.search-bar button {
    background-color: var(--primary-color);
    border: none;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.search-bar button span {
    margin-left: 8px;
}

.search-bar button:hover {
    background-color: #e56b00;
}

.search-bar button i {
    font-size: 18px;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
}

.action-item:hover {
    color: var(--primary-color);
}

.action-item i {
    font-size: 18px;
}

.action-item.cart {
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 4px;
}

.action-label {
    display: inline-block;
    margin-left: 5px;
}

/* Ana Menü */
.main-nav {
    background-color: #111;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.nav-items {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-items li {
    position: relative;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 16px 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-items li a:hover {
    background-color: #222;
    color: var(--primary-color);
}

.nav-items li a.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.nav-items li a.highlight:hover {
    background-color: #e56b00;
}

/* İkincil Menü */
.secondary-menu {
    background-color: var(--light-gray);
    padding: 15px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.secondary-menu-content {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
}

.secondary-menu-column {
    flex: 1;
    max-width: 250px;
}

.secondary-menu-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

.secondary-menu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.secondary-menu-column ul li {
    margin-bottom: 8px;
}

.secondary-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: color 0.2s;
}

.secondary-menu-column ul li a:hover {
    color: var(--primary-color);
}

/* Kategoriler */
.category-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--light-color);
    margin: 0;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    margin-top: 10px;
}

.product-rating span {
    color: var(--dark-gray);
    margin-left: 5px;
}

/* Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

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

.footer-column ul li a {
    color: var(--medium-gray);
    transition: color 0.3s, transform 0.2s;
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column ul li a:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-campaign {
    background-color: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin-top: 5px;
    transition: transform 0.3s;
}

.footer-campaign:hover {
    transform: translateY(-5px);
}

.footer-campaign h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-campaign p {
    color: var(--light-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 4px;
}

.payment-icons img {
    height: 30px;
    filter: brightness(1.2);
}

.footer-contact {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-contact .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--medium-gray);
}

.footer-contact .contact-info li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Product Detail Page */
.product-detail {
    padding: 80px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

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

    .product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail-item {
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-item:hover {
    border-color: var(--primary-color);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail {
    padding: 20px 0;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.product-meta .category {
    font-size: 16px;
    color: #777;
}

.product-meta .category a {
    color: var(--primary-color);
    font-weight: 600;
}

.product-meta .in-stock {
    color: var(--success-color);
    font-weight: 600;
    font-size: 14px;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 5px 10px;
    border-radius: 4px;
}

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

.current-price-detail {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price-detail {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background-color: var(--danger-color);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 4px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-description p {
    margin-bottom: 15px;
    color: #666;
}

.product-attributes {
    margin-bottom: 30px;
}

.attribute-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.color-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.color-option.active::after {
    content: '';
    position: absolute;
    width: 36px;
    height: 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.size-options {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.size-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.size-option.active,
.size-option:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

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

.quantity-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.quantity-input {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-input button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.quantity-input input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-btn {
    flex: 2;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    color: white;
}

.wishlist-btn {
    flex: 1;
    padding: 15px;
    background-color: #f5f5f5;
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlist-btn:hover {
    background-color: #eee;
}

.product-share {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.pinterest {
    background-color: #bd081c;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    transform: translateY(-3px);
}

/* Tabs */
.product-tabs {
    margin-top: 60px;
}

.tabs-navigation {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-button {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #777;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    padding: 20px 0;
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.tab-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #666;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
}

.specifications-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specifications-table th, .specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    vertical-align: middle;
    width: 50%; /* Eşit genişlik */
}

.specifications-table th {
    font-weight: 600;
    color: #555;
    background-color: #f9f9f9;
}

/* Reviews */
.review-item {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.review-user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.review-date {
    color: #999;
    font-size: 14px;
}

.review-rating {
    color: var(--primary-color);
}

.review-content {
    color: #666;
    line-height: 1.7;
}

.write-review {
    margin-top: 40px;
}

.write-review h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-input, .form-textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-textarea {
    height: 150px;
    resize: none;
}

.rating-select {
    display: flex;
    gap: 10px;
}

.rating-option {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
}

.rating-option.active, .rating-option:hover {
    color: var(--primary-color);
}

.submit-review-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    width: auto;
    align-self: flex-start;
}

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

/* Related Products */
.related-products {
    margin-top: 80px;
}

.related-products .section-title {
    margin-bottom: 30px;
}

.related-products .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Cart Page */
.cart-page {
    padding: 80px 0;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-header h1 {
    font-size: 32px;
    color: var(--secondary-color);
}

.cart-empty {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.cart-empty i {
    font-size: 48px;
    color: #999;
    margin-bottom: 20px;
}

.cart-empty h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.cart-empty p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.cart-columns {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-list {
    margin-top: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

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

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-product-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-product-details h3 a {
    color: var(--secondary-color);
}

.cart-product-meta {
    font-size: 14px;
    color: #777;
}

.cart-quantity {
    display: flex;
    align-items: center;
    width: 120px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.cart-quantity button {
    width: 30px;
    height: 40px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.cart-quantity input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
}

.cart-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.cart-actions {
    display: flex;
    justify-content: flex-end;
}

.remove-from-cart {
    background-color: transparent;
    border: none;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-from-cart:hover {
    color: var(--danger-color);
}

.cart-summary {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.coupon-section {
    flex: 1;
    max-width: 400px;
}

.coupon-title {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.coupon-form {
    display: flex;
    margin-bottom: 30px;
}

.coupon-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.apply-coupon-btn {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.totals-section {
    flex: 1;
    max-width: 400px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.totals-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.totals-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--secondary-color);
}

.totals-label {
    color: #666;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

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

.continue-shopping {
    display: inline-block;
    margin-top: 30px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: all 0.3s;
}

.continue-shopping i {
    margin-right: 5px;
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Responsive Tasarım - Daha fazla */
@media (max-width: 992px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3) {
        display: none;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cart-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .coupon-section, .totals-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cart-columns, .cart-item {
        grid-template-columns: 2fr 1fr;
    }
    
    .cart-columns div:nth-child(3), .cart-item div:nth-child(3),
    .cart-columns div:nth-child(4), .cart-item div:nth-child(4) {
        display: none;
    }
    
    .product-main-image {
        height: 350px;
    }
    
    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .thumbnail-item {
        height: 70px;
    }
    
    .related-products .products {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tabs-navigation {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .product-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .related-products .products {
        grid-template-columns: 1fr;
    }
    
    .product-actions-detail {
        flex-direction: column;
    }
    
    .add-to-cart-btn, .wishlist-btn {
        width: 100%;
    }
    
    .product-price-detail {
        flex-wrap: wrap;
    }
    
    .tab-button {
        padding: 10px;
        font-size: 14px;
    }
}

/* Profil İkonu ve Sidebar */
.profile-icon {
    position: relative;
    cursor: pointer;
}

.profile-icon i {
    font-size: 22px;
    color: var(--secondary-color);
}

.profile-sidebar {
    position: fixed;
    top: 0;
    right: -400px; /* Başlangıçta gizli */
    width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 25px;
}

.profile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-header h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin: 0;
}

.close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-sidebar:hover {
    color: var(--secondary-color);
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-button {
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
}

.login-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.register-btn {
    background: #fff;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.register-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

/* Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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

/* Mobilya Sayfası Stilleri */
.furniture-page {
    padding-bottom: 60px;
}

.category-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/furniture-banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.category-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.category-banner p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Alt Kategoriler */
.subcategories {
    margin-bottom: 50px;
}

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

.subcategory-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.subcategory-card:hover {
    transform: translateY(-5px);
}

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

.subcategory-card h3 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
    color: var(--secondary-color);
}

/* Ürün Filtreleri */
.product-filters {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}
/* Ürün Filtre Kenar Çubuğu Stilleri */
.product-sidebar {
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filter-section {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filter-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.filter-section h3 {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
}

.filter-section h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

.parent-category {
    margin-bottom: 10px;
    font-size: 15px;
}

.parent-category a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s;
}

.parent-category a:hover {
    color: var(--primary-color);
}

.subcategory-list {
    list-style: none;
    padding-left: 10px;
    margin-bottom: 15px;
}

.subcategory-list li {
    margin-bottom: 8px;
}

.subcategory-list li a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
    padding: 3px 0;
}

.subcategory-list li a:hover {
    color: var(--primary-color);
}

.view-all-link {
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.filter-options {
    margin-bottom: 15px;
}

.filter-option {
    margin-bottom: 10px;
}

.filter-option label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

#sort-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    outline: none;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.filter-button {
    flex: 1;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-button:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.reset-button {
    flex: 1;
    padding: 10px 15px;
    background-color: #f0f0f0;
    color: #666;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.reset-button:hover {
    background-color: #e0e0e0;
}

/* Düzen için Özel Stiller */
.product-page-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .product-page-content {
        grid-template-columns: 1fr;
    }
}
.sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

/* Ürün Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 450px; /* Sabit yükseklik */
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0; /* Görsel alanı küçülmesin */
}

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

.product-info {
    padding: 20px;
    flex-grow: 1; /* İçerik alanı esnek olsun */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği düzenli dağıt */
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Maksimum 2 satır */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px; /* Sabit yükseklik */
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff7700; /* Turuncu */
}

.product-category {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-category a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    margin-top: auto; /* Aşağıda hizala */
}

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

.current-price {
    color: #ff7700; /* Turuncu fiyat */
    font-size: 18px;
    font-weight: 700;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background-color: #ff7700; /* Turuncu */
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background-color: #e56b00; /* Koyu turuncu */
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border-radius: 5px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: #ddd;
}

.page-link.active {
    background: #ff7700; /* Turuncu */
    color: white;
    font-weight: 600;
}

.page-link.prev, .page-link.next {
    padding: 0 15px;
}

/* Ürün Bulunamadı */
.no-products {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #666;
}

.no-products p {
    font-size: 16px;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .category-banner {
        padding: 60px 0;
    }
    
    .category-banner h1 {
        font-size: 32px;
    }
    
    .product-filters {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .product-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .current-price {
        font-size: 16px;
    }
    
    .add-to-cart-btn {
        padding: 8px;
        font-size: 13px;
    }
}

/* Footer Ödeme Yöntemleri */
.payment-methods {
    margin: 30px 0;
}

.payment-methods-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

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

.payment-icons img {
    height: 60px; /* Görsel boyutunu büyüttük (önceki değer daha küçüktü) */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.payment-icons img:hover {
    transform: scale(1.1);
    filter: grayscale(0);
}

/* Halı ve Mobilya Sayfaları için Özel Stiller - Turuncu Tema */

/* Banner Bölümü */
.category-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/banner-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    margin-bottom: 40px;
    text-align: center;
}

.category-banner h1 {
    font-size: 42px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.banner-buttons .btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ff7700 !important; /* Turuncu renk */
    color: white !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #e56b00 !important; /* Koyu turuncu */
}

.btn-secondary {
    background-color: transparent !important;
    color: white !important;
    border: 2px solid white !important;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

/* Kategori Kartları */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.category-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.category-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.category-overlay span {
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-info {
    padding: 15px;
    background-color: white;
}

.category-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.category-info p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Düzeltilmiş Filtreleme ve Ürün Bölümü */
.product-page-content {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

/* Geliştirilmiş Filtre Kenar Çubuğu */
.product-sidebar-container {
    width: 280px;
    flex-shrink: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px 8px 0 0;
    border: 1px solid #e1e5ea;
    border-bottom: 2px solid #ff7700; /* Turuncu alt çizgi */
}

.filter-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.toggle-filter {
    background: none;
    border: none;
    color: #ff7700; /* Turuncu ikon */
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.toggle-filter:hover {
    color: #e56b00; /* Koyu turuncu */
}

.filter-content {
    border: 1px solid #e1e5ea;
    border-top: none;
    border-radius: 0 0 8px 8px;
    padding: 15px;
    background-color: white;
}

.filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h4 {
    font-size: 16px;
    margin: 0 0 15px;
    color: #444;
    font-weight: 600;
}

.filter-options {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.filter-option {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.filter-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.filter-option input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    accent-color: #ff7700; /* Turuncu seçim */
}

.price-range {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.price-range input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.filter-buttons button {
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-grow: 1;
    text-align: center;
}

.apply-filter {
    background-color: #ff7700; /* Turuncu */
    color: white;
    border: none;
}

.apply-filter:hover {
    background-color: #e56b00; /* Koyu turuncu */
}

.reset-filter {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.reset-filter:hover {
    background-color: #e9ecef;
}

/* Ürün Listesi Bölümü */
.product-list-container {
    flex-grow: 1;
}

.product-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5ea;
}

.product-count {
    font-size: 16px;
    color: #666;
}

.product-count strong {
    color: #333;
    font-weight: 600;
}

.product-sort {
    display: flex;
    align-items: center;
}

.product-sort label {
    margin-right: 10px;
    font-weight: 500;
    color: #555;
}

.product-sort select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    min-width: 180px;
    color: #444;
    font-size: 14px;
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-toggle button {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
}

.view-toggle button.active {
    background-color: #ff7700; /* Turuncu */
    border-color: #ff7700;
    color: white;
}

/* Geliştirilmiş Ürün Kartları */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff7700; /* Turuncu */
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 1;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5; /* Increased z-index to ensure it's above other elements */
    opacity: 1; /* Always visible, not just on hover */
    transform: translateX(0); /* No transform needed */
    transition: opacity 0.3s;
}

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

.product-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: none;
}

.product-action-btn:hover {
    background-color: #ff9b00;
    color: white;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #ff7700; /* Turuncu */
}

.product-category {
    margin-bottom: 8px;
}

.product-category a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: #ff7700; /* Turuncu */
}

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

.stars {
    color: #ff7700; /* Turuncu yıldızlar */
    margin-right: 5px;
}

.product-rating span {
    color: #666;
    font-size: 13px;
}

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

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

.current-price {
    color: #ff7700; /* Turuncu fiyat */
    font-size: 18px;
    font-weight: 700;
}

.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background-color: #ff7700; /* Turuncu */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background-color: #e56b00; /* Koyu turuncu */
}

/* Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 5px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: white;
    color: #333;
    text-decoration: none;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.page-link.prev,
.page-link.next {
    width: auto;
    padding: 0 15px;
}

.page-link.active {
    background-color: #ff7700; /* Turuncu */
    color: white;
    border-color: #ff7700;
}

.page-link:hover:not(.active):not(.dots) {
    background-color: #f8f9fa;
    border-color: #ddd;
}

.page-link.dots {
    border: none;
    cursor: default;
}

/* ===== SEPET SAYFASI BAŞLANGIÇ ===== */

/* Sayfa Başlık Kısmı */
.cart-header {
    background-color: var(--light-color);
    padding: 30px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cart-header .page-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
}

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

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

.breadcrumb .separator {
    margin: 0 8px;
    color: #aaa;
}

.breadcrumb .current {
    color: #555;
    font-weight: 500;
}

/* Boş Sepet Gösterimi */
.empty-cart-container {
    padding: 60px 0;
}

.empty-cart {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.empty-cart-icon {
    width: 100px;
    height: 100px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.empty-cart-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.empty-cart h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.empty-cart .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
}

/* Sepet Bölümü */
.cart-section {
    padding-bottom: 60px;
}

.cart-table-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.cart-header-message {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.message-content {
    display: flex;
    align-items: center;
}

.message-content i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
}

.message-content p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.cart-table {
    width: 100%;
    overflow-x: auto;
}

.cart-table table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.cart-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.cart-table tbody tr:last-child {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background-color: #f9f9f9;
}

.cart-table td {
    padding: 20px 15px;
    vertical-align: middle;
}

/* Ürün Detayları */
.product-details {
    display: flex;
    align-items: center;
}

.product-image {
    flex: 0 0 90px;
    margin-right: 15px;
}

.product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

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

.product-info {
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-category {
    font-size: 0.85rem;
}

.product-category a {
    color: #777;
    text-decoration: none;
    transition: color 0.3s;
}

.product-category a:hover {
    color: var(--primary-color);
}

/* Fiyat Sütunu */
.price-container {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.current-price {
    font-size: 1.05rem;
    color: #333;
    font-weight: 600;
}

/* Miktar Kontrolü */
.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    width: 120px;
    overflow: hidden;
}

.quantity-btn {
    background-color: #f5f5f5;
    border: none;
    width: 32px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #ebebeb;
}

.quantity-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.quantity-btn i {
    font-size: 12px;
    color: #555;
}

.quantity-value {
    width: 50px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    padding: 0;
    background: transparent;
}

.quantity-value::-webkit-inner-spin-button,
.quantity-value::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Toplam Sütunu */
.total-price {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Silme Butonu */
.remove-btn {
    border: none;
    background: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.remove-btn:hover {
    background-color: #ffeeee;
}

.remove-btn i {
    font-size: 14px;
    color: #ff5151;
}

/* Sepet Aksiyonları */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #eee;
}

.continue-shopping a {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.continue-shopping a i {
    margin-right: 8px;
}

.cart-buttons {
    display: flex;
    gap: 10px;
}

/* Sepet Sidebar */
.cart-sidebar {
    position: sticky;
    top: 20px;
}

/* Kargo Bilgisi */
.shipping-info-box,
.cart-summary,
.coupon-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    overflow: hidden;
}

.shipping-header,
.summary-header,
.coupon-header {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.shipping-header h3,
.summary-header h3,
.coupon-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.shipping-header h3 i,
.coupon-header h3 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.shipping-content {
    padding: 20px;
}

.shipping-message {
    margin-bottom: 15px;
}

.shipping-message p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: #555;
}

.shipping-message.success {
    padding: 15px;
    background-color: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 20px;
}

.shipping-message.success p {
    color: #2e7d32;
    display: flex;
    align-items: center;
}

.shipping-message.success p i {
    margin-right: 8px;
    font-size: 16px;
}

.shipping-progress {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 5px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
    transition: width 0.5s ease-in-out;
}

.progress-bar.complete {
    background: linear-gradient(90deg, #4caf50, #8bc34a);
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 15px;
}

.shipping-notes {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.shipping-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shipping-notes li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.shipping-notes li:last-child {
    margin-bottom: 0;
}

.shipping-notes li i {
    color: #4caf50;
    margin-right: 8px;
}

/* Sepet Özeti */
.summary-body {
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-label {
    font-size: 0.95rem;
    color: #555;
}

.summary-value {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.free-shipping {
    color: #4caf50;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background-color: #eee;
    margin: 15px 0;
}

.summary-row.total {
    margin-bottom: 25px;
}

.summary-row.total .summary-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
}

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

.checkout-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-btn i {
    margin-right: 8px;
}

/* Kupon Kodı */
.coupon-body {
    padding: 20px;
}

.coupon-input-group {
    display: flex;
    margin-bottom: 10px;
}

.coupon-input {
    flex: 1;
    height: 45px;
    border: 1px solid #e0e0e0;
    border-radius: 5px 0 0 5px;
    padding: 0 15px;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s;
}

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

.coupon-btn {
    height: 45px;
    border: none;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 500;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.coupon-btn:hover {
    background-color: #0056b3;
}

.coupon-info {
    font-size: 0.85rem;
    color: #777;
    margin: 10px 0 0;
}

/* Modal */
.modal-content {
    border-radius: 10px;
    border: none;
    overflow: hidden;
    position: relative;
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 15px 20px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-weight: 600;
    color: #333;
    margin: 0 auto;
    text-align: center;
}

.modal-cancel-btn {
    padding: 7px 15px;
    font-size: 0.85rem;
    border-radius: 5px;
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.modal-cancel-btn:hover {
    background-color: #e9ecef;
    color: #333;
}

.modal-confirm-btn {
    padding: 7px 15px;
    font-size: 0.85rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-close {
    display: none; /* Artık gerekli değil */
}

.delete-confirmation {
    text-align: center;
    padding: 30px 20px;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background-color: #fff5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirmation-icon i {
    font-size: 40px;
    color: #ff5151;
}

.delete-confirmation p {
    color: #555;
    font-size: 1rem;
    margin: 0;
}

.modal-footer {
    border-top: 1px solid #eee;
    padding: 15px 20px;
}

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

.fade-out {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s, transform 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
    .cart-sidebar {
        margin-top: 30px;
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-header .page-title {
        font-size: 1.6rem;
    }
    
    .product-details {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .product-image {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .continue-shopping {
        order: 2;
    }
    
    .cart-buttons {
        order: 1;
    }
    
    .continue-shopping a, 
    .cart-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .quantity-input {
        width: 100px;
    }
}

@media (max-width: 576px) {
    .cart-table th:not(.product-col),
    .cart-table td:not(.product-col) {
        display: none;
    }
    
    .cart-table thead {
        display: none;
    }
    
    .cart-table td.product-col {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 15px;
        position: relative;
    }
    
    .product-details {
        flex-direction: row;
        width: 100%;
    }
    
    .product-image {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .product-info {
        flex: 1;
    }
    
    .cart-mobile-price {
        display: block;
        margin-top: 5px;
        font-size: 0.9rem;
        color: #666;
    }
    
    .remove-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    .cart-mobile-actions {
        display: flex;
        align-items: center;
        margin-top: 10px;
    }
    
    .cart-mobile-quantity {
        margin-right: 15px;
    }
    
    .quantity-label {
        display: block;
        font-size: 0.8rem;
        color: #777;
        margin-bottom: 5px;
    }
    
    .cart-mobile-total {
        margin-left: auto;
    }
}

/* Sepet Uyarıları ve Bildirimler */
.swal2-popup {
    font-family: var(--body-font);
    border-radius: 15px;
}

.swal2-title {
    font-weight: 600;
    color: #333;
}

.swal2-html-container {
    color: #555;
}

.swal2-styled.swal2-confirm {
    background-color: var(--primary-color);
}

.swal2-styled.swal2-confirm:hover {
    background-color: var(--primary-dark-color);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #e0e0e0;
    color: #555;
    transition: all 0.3s;
}

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

.btn-outline-danger {
    background-color: transparent;
    border: 1px solid #ff5151;
    color: #ff5151;
}

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

/* ===== SEPET SAYFASI BİTİŞ ===== */

/* ÜRÜN LİSTELEME SAYFASI (MOBILYA/HALI) YENİ TASARIM */
.product-page {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.category-header {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-header h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-header p {
    color: #666;
    margin-bottom: 0;
}

.page-breadcrumb {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.page-breadcrumb a {
    color: #ff9b00;
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb a:hover {
    color: #e58c00;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ccc;
}

/* SIDEBAR FİLTRELEME BÖLÜMÜ */
.filter-sidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px;
    position: sticky;
    top: 20px;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.filter-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 50px;
    height: 3px;
    background-color: #ff9b00;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.filter-section h3 .toggle-icon {
    transition: transform 0.3s;
}

.filter-section h3.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.filter-section-content {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.filter-section-content::-webkit-scrollbar {
    width: 5px;
}

.filter-section-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-section-content::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.filter-section-content::-webkit-scrollbar-thumb:hover {
    background: #ccc;
}

.category-filter-item, 
.brand-filter-item,
.attribute-filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.category-filter-item label,
.brand-filter-item label,
.attribute-filter-item label {
    margin-left: 10px;
    cursor: pointer;
    color: #555;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.category-filter-item label span,
.brand-filter-item label span,
.attribute-filter-item label span {
    color: #999;
    font-size: 13px;
}

.category-filter-item input[type="checkbox"],
.brand-filter-item input[type="checkbox"],
.attribute-filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #ff9b00;
}

.price-range {
    padding: 0 5px;
}

.price-slider {
    height: 5px;
    position: relative;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 25px;
}

.price-slider .ui-slider-range {
    height: 5px;
    background: #ff9b00;
    position: absolute;
}

.price-slider .ui-slider-handle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ff9b00;
    position: absolute;
    margin-left: -9px;
    top: -7px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.price-input-field {
    width: 45%;
    display: flex;
    align-items: center;
}

.price-input-field span {
    color: #666;
    margin-right: 5px;
}

.price-input-field input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    color: #333;
}

.filter-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.filter-button {
    padding: 10px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.apply-filters {
    background-color: #ff9b00;
    color: white;
    border: none;
    flex-grow: 1;
    margin-right: 10px;
}

.apply-filters:hover {
    background-color: #e58c00;
}

.reset-filters {
    background-color: #f1f1f1;
    color: #555;
    border: 1px solid #ddd;
}

.reset-filters:hover {
    background-color: #e6e6e6;
}

/* ÜRÜN SIRALAMA VE GÖRÜNÜM SEÇENEKLERİ */
.products-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.products-found {
    font-size: 14px;
    color: #666;
}

.products-found strong {
    color: #333;
    font-weight: 600;
}

.products-sorting {
    display: flex;
    align-items: center;
}

.sort-label {
    font-size: 14px;
    color: #666;
    margin-right: 10px;
}

.sort-select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.sort-select:focus {
    border-color: #ff9b00;
}

.view-options {
    display: flex;
    margin-left: 20px;
}

.view-option {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-left: 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-option:hover {
    border-color: #ff9b00;
    color: #ff9b00;
}

.view-option.active {
    background-color: #ff9b00;
    border-color: #ff9b00;
    color: white;
}

/* ÜRÜN KARTLARI (YENİ TASARIM) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.product-image {
    position: relative;
    padding-top: 58%;
    overflow: hidden;
    background-color: #f9f9f9;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1;
}

.product-badge {
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    color: white;
}

.product-badge.new {
    background-color: #4CAF50;
}

.product-badge.discount {
    background-color: #FF5722;
}

.product-badge.out-of-stock {
    background-color: #F44336;
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s, transform 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: none;
}

.product-action-btn:hover {
    background-color: #ff9b00;
    color: white;
}

.product-action-btn i {
    font-size: 14px;
}

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: #ff9b00;
}

.product-variant-info {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
}

.product-variant-badge {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f8f8f8;
    border-radius: 15px;
    color: #555;
    font-size: 11px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #eee;
}

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

.product-rating i {
    color: #FFD700;
    font-size: 12px;
    margin-right: 2px;
}

.rating-count {
    font-size: 12px;
    color: #777;
    margin-left: 5px;
}

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

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff9b00;
    margin-right: 10px;
}

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

.discount-percent {
    font-size: 12px;
    color: #FF5722;
    font-weight: 600;
    margin-left: auto;
}

.product-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #ff9b00;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-btn:hover {
    background-color: #e58c00;
}

.product-btn i {
    margin-right: 5px;
}

/* GÖRÜNÜM MODARİI: LİSTE */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-list .product-card {
    display: flex;
    align-items: stretch;
}

.products-list .product-image {
    width: 250px;
    flex-shrink: 0;
    padding-top: 0;
    height: auto;
}

.products-list .product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.products-list .product-title {
    height: auto;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    margin-bottom: 10px;
}

.products-list .product-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-list .product-bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products-list .product-price {
    margin-bottom: 0;
}

.products-list .product-btn {
    width: auto;
    padding: 8px 15px;
}

/* Pagination */
.pagination-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.pagination li {
    border-right: 1px solid #eee;
}

.pagination li:last-child {
    border-right: none;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.pagination a:hover {
    background-color: #f9f9f9;
    color: #ff9b00;
}

.pagination a.active {
    background-color: #ff9b00;
    color: white;
}

/* Mobil responsivlik */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-list .product-card {
        flex-direction: column;
    }
    
    .products-list .product-image {
        width: 100%;
        padding-top: 75%;
    }
    
    .products-list .product-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-list .product-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .products-topbar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .products-sorting {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-select {
        flex-grow: 1;
        margin-right: 10px;
    }
    
    .filter-sidebar {
        margin-bottom: 20px;
        position: static;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-badges {
        flex-direction: row;
    }
    
    .product-actions {
        flex-direction: row;
    }
    
    .pagination a {
        width: 35px;
        height: 35px;
    }
}

/* Sadece masaüstünde gösterilecek mobil filtre butonu */
.mobile-filter-toggle {
    display: none;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .mobile-filter-toggle {
        display: block;
        width: 100%;
        padding: 12px;
        background-color: #ff9b00;
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .filter-sidebar {
        display: none;
    }
    
    .filter-sidebar.active {
        display: block;
    }
}

/* Quick View Modal */
.quickview-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.quickview-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quickview-content {
    background-color: #fff;
    border-radius: 8px;
    max-width: 900px;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.quickview-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: none;
    color: #555;
    font-size: 16px;
}

.quickview-close:hover {
    background-color: #f5f5f5;
}

.quickview-body {
    display: flex;
    padding: 20px;
}

.quickview-gallery {
    width: 50%;
    padding-right: 20px;
}

.quickview-main-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

.quickview-thumbnails {
    display: flex;
    gap: 10px;
}

.quickview-thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.quickview-thumbnail.active {
    border-color: #ff9b00;
}

.quickview-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quickview-info {
    width: 50%;
    padding-left: 20px;
}

.quickview-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.quickview-category {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.quickview-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.quickview-current-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff9b00;
    margin-right: 15px;
}

.quickview-old-price {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.quickview-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quickview-variants {
    margin-bottom: 20px;
}

.variant-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.variant-option {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
}

.variant-option:hover {
    border-color: #ff9b00;
}

.variant-option.active {
    background-color: #ff9b00;
    border-color: #ff9b00;
    color: white;
}

.quickview-quantity {
    margin-bottom: 20px;
}

.quantity-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.quantity-buttons {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background-color: #eee;
}

.quantity-input {
    width: 50px;
    height: 35px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    color: #333;
}

.quickview-actions {
    display: flex;
    gap: 10px;
}

.quickview-btn {
    flex-grow: 1;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quickview-cart-btn {
    background-color: #ff9b00;
    color: white;
    border: none;
}

.quickview-cart-btn:hover {
    background-color: #e58c00;
}

.quickview-wishlist-btn {
    background-color: #f5f5f5;
    color: #555;
    border: 1px solid #ddd;
}

.quickview-wishlist-btn:hover {
    background-color: #eee;
}

.quickview-full-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #ff9b00;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.quickview-full-btn:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .quickview-body {
        flex-direction: column;
    }
    
    .quickview-gallery, .quickview-info {
        width: 100%;
        padding: 0;
    }
    
    .quickview-gallery {
        margin-bottom: 20px;
    }
    
    .quickview-main-image {
        height: 300px;
    }
}

/* Ayaydın Mobilya - Özel Stil Düzenlemeleri */

/* Tablolardaki tüm bilgilerin hizalanması */
.specifications-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.specifications-table th, 
.specifications-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
    vertical-align: middle;
}

.specifications-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    width: 40%;
}

.specifications-table td {
    width: 60%;
}

/* Fiyat gösterimi düzeltmeleri */
.product-price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 10px 0;
    position: relative;
}

.product-price-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 15px 0;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 4px;
}

/* Sepet simgesi ve miktarı düzeltmeleri */
.cart-icon {
    position: relative;
    font-size: 24px;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff5722;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Butonların büyütülmesi */
.add-to-cart-btn {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.checkout-btn {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Sepet sayfasındaki tablo düzeltmeleri */
.cart-table th, 
.cart-table td {
    text-align: center;
    vertical-align: middle;
    padding: 15px;
}

/* İndirimli fiyatın sepette doğru gösterilmesi */
.cart-price .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff5722;
    display: block;
}

.cart-price .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    display: block;
}

/* Mobil uyumluluk için düzeltmeler */
@media (max-width: 768px) {
    .add-to-cart-btn {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .cart-icon {
        font-size: 22px;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

/* Ürün Tabloları ve Hizalama Düzeltmeleri */
.product-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.product-table th,
.product-table td {
    padding: 12px 15px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #e0e0e0;
}

.product-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.product-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.product-table tr:hover {
    background-color: #f0f0f0;
}

/* Ürün resmi hücreleri */
.product-table .product-image-cell {
    width: 100px;
    height: 100px;
    padding: 5px;
}

.product-table .product-image-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

/* Ürün bilgileri hücreleri */
.product-table .product-info-cell {
    text-align: left;
    width: 35%;
}

.product-table .product-price-cell {
    width: 15%;
    font-weight: 600;
}

.product-table .product-quantity-cell {
    width: 15%;
}

.product-table .product-total-cell {
    width: 15%;
    font-weight: 700;
    color: #ff5722;
}

/* İndirimli fiyat düzeltmeleri */
.product-price-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.product-price-detail .current-price-detail {
    font-size: 24px;
    font-weight: 700;
    color: #ff5722;
    margin-right: 10px;
}

.product-price-detail .old-price-detail {
    font-size: 18px;
    text-decoration: line-through;
    color: #999;
}

/* Mobil görünüm için düzeltmeler */
@media (max-width: 768px) {
    .product-table th,
    .product-table td {
        padding: 8px 10px;
    }
    
    .product-table .product-image-cell {
        width: 80px;
        height: 80px;
    }
    
    .product-info-cell {
        width: 40%;
    }
    
    .product-price-detail .current-price-detail {
        font-size: 20px;
    }
    
    .product-price-detail .old-price-detail {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .product-table {
        font-size: 14px;
    }
    
    .product-table .product-image-cell {
        width: 60px;
        height: 60px;
    }
    
    .product-price-detail .current-price-detail {
        font-size: 16px;
    }
    
    .product-price-detail .old-price-detail {
        font-size: 14px;
    }
}

/* line-clamp standardizasyonu */
.class-with-line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Auth Pages Styles - Premium Design */
.auth-container {
    min-height: 100vh;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 155, 0, 0.05) 0%, rgba(255, 155, 0, 0.1) 100%);
}

.auth-wrapper {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.auth-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
    padding: 40px;
}

.auth-card.register {
    max-width: 550px;
}

.auth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #ffb74d);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.auth-header p {
    color: #777;
    font-size: 16px;
}

.auth-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.auth-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.auth-form .form-group.half {
    flex: 1;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.auth-form .input-group {
    position: relative;
}

.auth-form .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
    transition: color 0.3s;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.auth-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 155, 0, 0.1);
    background-color: #fff;
}

.auth-form input:focus + .input-icon {
    color: var(--primary-color);
}

.auth-form .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.auth-form .password-toggle:hover {
    color: #666;
}

.auth-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.auth-form .remember-me {
    display: flex;
    align-items: center;
}

.auth-form .remember-me input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.auth-form .remember-me label {
    margin-bottom: 0;
    font-weight: 400;
    color: #666;
    font-size: 14px;
    cursor: pointer;
}

.auth-form .forgot-password {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-form .forgot-password:hover {
    color: #e56b00;
    text-decoration: underline;
}

.auth-button {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(90deg, var(--primary-color), #ffb74d);
    color: var(--secondary-color);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.auth-button:hover {
    background: linear-gradient(90deg, #e56b00, #ff9b00);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 155, 0, 0.2);
}

.auth-button:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.auth-footer p {
    font-size: 14px;
    color: #666;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-footer a:hover {
    color: #e56b00;
    text-decoration: underline;
}

.auth-alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    font-size: 14px;
}

.auth-alert i {
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
}

.auth-alert.error {
    background-color: #fff5f5;
    color: #e53e3e;
    border: 1px solid #fed7d7;
}

.auth-alert.success {
    background-color: #f0fff4;
    color: #38a169;
    border: 1px solid #c6f6d5;
}

.auth-alert ul {
    margin: 0;
    padding-left: 20px;
}

.auth-alert ul li {
    margin-bottom: 5px;
}

.auth-alert ul li:last-child {
    margin-bottom: 0;
}

.auth-form .form-group.terms {
    margin-bottom: 30px;
}

.auth-form .checkbox-group {
    display: flex;
    align-items: flex-start;
}

.auth-form .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.auth-form .checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.auth-form .checkbox-group label a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.auth-form .checkbox-group label a:hover {
    color: #e56b00;
    text-decoration: underline;
}

.auth-redirect {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e6f7ef;
    text-align: center;
}

.auth-redirect p {
    margin-bottom: 10px;
    font-size: 14px;
}

.auth-loader {
    width: 100%;
    height: 4px;
    background-color: #e6f7ef;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.auth-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background-color: #38a169;
    animation: loading 2s infinite ease-in-out;
}

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

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: #e56b00;
    text-decoration: underline;
}

.mt-20 {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 576px) {
    .auth-container {
        padding: 30px 0;
    }
    
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .auth-form .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .auth-button {
        padding: 12px 16px;
        font-size: 15px;
    }
}

/* User Profile Sidebar */
.user-sidebar {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.user-sidebar-header {
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 15px;
    overflow: hidden;
    background-color: #fff;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.user-info p {
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
    margin: 0;
}

.user-nav {
    padding: 15px 0;
}

.user-nav-item {
    padding: 0;
    margin: 0;
    list-style: none;
}

.user-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.user-nav-link:hover {
    background-color: #f9f9f9;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.user-nav-link.active {
    background-color: #fff5e6;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.user-nav-link i {
    margin-right: 10px;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.user-logout {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}

.logout-btn {
    display: flex;
    align-items: center;
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 10px 15px;
    border-radius: 6px;
}

.logout-btn:hover {
    background-color: #fff5f5;
}

.logout-btn i {
    margin-right: 10px;
    font-size: 18px;
}

/* Profesyonel Giriş Sayfası Stilleri */
.login-page {
    background-color: #ffffff;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

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

.login-wrapper {
    display: flex;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
}

.login-image {
    flex: 1;
    background: var(--orange-gradient);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    display: none;
}

.login-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern.png') repeat;
    opacity: 0.1;
    z-index: 1;
}

.login-image-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}

.login-image-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.login-image-content p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.login-form-container {
    flex: 1;
    background: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.login-header h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--orange-gradient);
    border-radius: 3px;
}

.login-header p {
    color: var(--text-color);
    font-size: 16px;
}

.login-form {
    margin-bottom: 30px;
}

.login-form .form-group {
    margin-bottom: 25px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--orange-secondary);
}

.login-form .input-group {
    position: relative;
}

.login-form .input-icon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 18px;
    transition: all 0.3s ease;
}

.login-form input[type="text"],
.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    height: 52px;
    padding: 10px 15px 10px 45px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-color);
    transition: all 0.3s ease;
    background-color: #fff;
}

.login-form input:focus {
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.1);
    outline: none;
}

.login-form input:focus + .input-icon {
    color: var(--orange-primary);
}

.login-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.login-form .remember-me {
    display: flex;
    align-items: center;
}

.login-form .remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
}

.login-form .remember-me label {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
}

.login-form .forgot-password {
    font-size: 14px;
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-form .forgot-password:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

.login-button {
    width: 100%;
    height: 52px;
    background: var(--orange-gradient);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 126, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-button:hover {
    background: var(--orange-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 126, 0, 0.4);
}

.login-button:active {
    transform: translateY(-1px);
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #999;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #eee;
}

.login-divider span {
    padding: 0 15px;
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.social-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #555;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.social-login-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-login-button.facebook {
    background: #3b5998;
    color: #fff;
}

.social-login-button.google {
    background: #db4437;
    color: #fff;
}

.social-login-button.twitter {
    background: #1da1f2;
    color: #fff;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 10px;
}

.login-footer a {
    color: var(--orange-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-footer a:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

.login-alert {
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.login-alert i {
    font-size: 20px;
    margin-top: 2px;
}

.login-alert.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.login-alert.success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.login-alert ul {
    list-style-type: disc;
    padding-left: 15px;
    margin: 5px 0 0;
}

.login-alert ul li {
    margin-bottom: 5px;
}

.login-alert ul li:last-child {
    margin-bottom: 0;
}

.admin-login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #f5f5f5;
    color: #666;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.admin-login-link i {
    margin-right: 8px;
    font-size: 16px;
}

.admin-login-link:hover {
    background: #eee;
    color: #333;
}

.register-button {
    width: 100%;
    height: 52px;
    background: #fff;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
}

.register-button:hover {
    background: rgba(255, 126, 0, 0.05);
    transform: translateY(-3px);
}

@media (min-width: 992px) {
    .login-image {
        display: block;
    }
    
    .login-wrapper {
        max-width: 1000px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .login-form-container {
        padding: 40px 30px;
    }
    
    .login-header h1 {
        font-size: 24px;
    }
    
    .login-form .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .login-form .forgot-password {
        margin-left: 26px;
    }
}

@media (max-width: 576px) {
    .login-form-container {
        padding: 30px 20px;
    }
    
    .login-header h1 {
        font-size: 22px;
    }
    
    .login-button, .register-button {
        height: 48px;
        font-size: 14px;
    }
    
    .social-login-button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Login Image Content Enhancements */
.brand-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-style: italic;
    letter-spacing: 0.5px;
}

.login-image-divider {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 20px auto;
    border-radius: 2px;
}

.login-features {
    margin-top: 30px;
    text-align: left;
}

.login-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
}

.login-feature-item i {
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
    background: rgba(255, 255, 255, 0.2);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-feature-item span {
    font-size: 15px;
    opacity: 0.9;
}

.login-image-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.trust-badges i {
    margin-right: 6px;
    font-size: 16px;
}

.trust-badges i.ml-3 {
    margin-left: 20px;
}

@media (min-width: 992px) {
    .login-image {
        display: block;
        min-height: 600px;
    }
    
    .login-image-content {
        padding: 20px;
    }
}

/* Register sayfası için ek stiller */
.register-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.register-form-col {
    flex: 1;
}

.register-terms {
    margin-bottom: 25px;
}

.register-checkbox-group {
    display: flex;
    align-items: flex-start;
}

.register-checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
}

.register-checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.register-checkbox-group label a {
    color: var(--orange-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.register-checkbox-group label a:hover {
    color: var(--orange-dark);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .register-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Varyant Seçim Modalı Stilleri */
.variant-selection-modal {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.variant-selection-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    padding: 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.variant-selection-content {
    padding: 20px;
}

.product-basic-info {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}

.variant-product-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.variant-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    display: block;
}

.product-details {
    flex: 1;
}
