/* ==================== */
/* GENEL STILLER */
/* ==================== */
:root {
    --primary: #0c4a6e;
    --primary-dark: #082f49;
    --primary-light: #0ea5e9;
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

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

/* ==================== */
/* HEADER - ÜST BAR */
/* ==================== */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

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

.contact-info a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ==================== */
/* HEADER - ANA HEADER */
/* ==================== */
.main-header {
    background-color: var(--white);
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1002;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 3px;
}

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

.logo span {
    color: var(--accent);
    font-size: 40px;
}

/* Arama Çubuğu */
.search-bar {
    flex: 1;
    max-width: 600px;
    margin: 0 40px;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 16px 55px 16px 22px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.3s;
    background: var(--bg-light);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.search-bar button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-bar button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 15px rgba(12, 74, 110, 0.4);
}

/* Header Aksiyonları */
.header-actions {
    display: flex;
    gap: 8px;
}

.header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s;
    position: relative;
    padding: 10px 15px;
    border-radius: 12px;
}

.header-action:hover {
    color: #0369a1;
}

.header-action i {
    font-size: 22px;
    margin-bottom: 4px;
}

.header-action span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-action .badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

/* ==================== */
/* HEADER - NAVİGASYON / MENÜ BAR */
/* ==================== */
.nav-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 1001;
}

.nav-bar .container {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tüm Kategoriler Dropdown */
.all-categories {
    position: relative;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    padding: 16px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 220px;
    transition: all 0.3s;
}

.all-categories:hover {
    filter: brightness(1.1);
}

.all-categories i {
    color: #fff;
}

.all-categories span {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.all-categories .fa-chevron-down {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.3s;
}

.all-categories:hover .fa-chevron-down {
    transform: rotate(180deg);
}

/* Kategori Dropdown Menü */
.category-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
    border-radius: 0 0 12px 12px;
}

.all-categories:hover .category-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Dropdown Item Wrapper */
.category-dropdown .dropdown-item {
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

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

.category-dropdown .dropdown-item > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.category-dropdown .dropdown-item:last-child > a {
    border-radius: 0 0 12px 12px;
}

.category-dropdown .dropdown-item > a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(12, 74, 110, 0.05) 100%);
    color: var(--primary);
    padding-left: 28px;
}

.category-dropdown .dropdown-item > a i {
    color: var(--primary-light);
    width: 24px;
    text-align: center;
    font-size: 16px;
}

/* Alt Kategori Ok İkonu */
.category-dropdown .dropdown-item > a .submenu-arrow {
    margin-left: auto;
    font-size: 11px;
    color: #94a3b8;
    transition: all 0.3s;
    width: auto;
}

.category-dropdown .dropdown-item.has-children:hover > a .submenu-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

/* Alt Kategori Submenu */
.category-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.category-dropdown .dropdown-item.has-children:hover .category-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.category-submenu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.category-submenu a:first-child {
    border-radius: 12px 12px 0 0;
}

.category-submenu a:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.category-submenu a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(12, 74, 110, 0.05) 100%);
    color: var(--primary);
    padding-left: 24px;
}

.category-submenu a i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
    font-size: 14px;
}

/* Kategori Menüsü */
.category-menu {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

/* Category Item Wrapper */
.category-item-wrapper {
    position: relative;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    white-space: nowrap;
}

.category-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s;
}

.category-item:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.category-item:hover::after {
    width: 60%;
}

.category-item i {
    font-size: 15px;
    color: var(--accent);
}

/* Üst Menü Alt Kategori Ok */
.category-item .menu-arrow {
    font-size: 10px;
    margin-left: 4px;
    color: rgba(255,255,255,0.6);
    transition: transform 0.3s;
}

.category-item-wrapper:hover .menu-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Üst Menü Alt Kategori Dropdown */
.category-item-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.category-item-wrapper.has-dropdown:hover .category-item-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-item-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s;
}

.category-item-dropdown a:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.category-item-dropdown a:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(12, 74, 110, 0.05) 100%);
    color: var(--primary);
    padding-left: 24px;
}

.category-item-dropdown a i {
    color: var(--primary-light);
    width: 20px;
    text-align: center;
    font-size: 14px;
}

/* ==================== */
/* HERO SLIDER */
/* ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

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

.slide-content {
    max-width: 550px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.slide-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #1a1a2e;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.slide-btn:hover {
    background-color: #1a1a2e;
    color: #fff;
    transform: translateX(5px);
}

.slide-btn i {
    transition: transform 0.3s;
}

.slide-btn:hover i {
    transform: translateX(5px);
}

.slide-image {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #1f1f5d;
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.dot:hover {
    background-color: rgba(255,255,255,0.7);
}

.dot.active {
    background-color: #fff;
    transform: scale(1.2);
}

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

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

/* ==================== */
/* AVANTAJLAR BÖLÜMÜ */
/* ==================== */
.features-section {
    background-color: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.features-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 24px;
    color: #1f1f5d;
}

.feature-text h4 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 13px;
    color: #666;
}

/* ==================== */
/* GENEL SECTION STİLLERİ */
/* ==================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i {
    color: #1f1f5d;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1f1f5d;
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.view-all:hover {
    gap: 12px;
}

/* ==================== */
/* ÖNE ÇIKAN KATEGORİLER */
/* ==================== */
.categories-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

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

.category-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f1f5d 0%, #f093fb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

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

.category-card h4 {
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.category-card span {
    font-size: 13px;
    color: #666;
}

/* ==================== */
/* GÜNÜN FIRSATLARI */
/* ==================== */
.deals-section,
.popular-section,
.new-products-section {
    padding: 60px 0;
    background-color: #fff;
}

.deals-section .container,
.popular-section .container,
.new-products-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.countdown {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown > span {
    color: #666;
    font-size: 14px;
}

.countdown-timer {
    display: flex;
    gap: 10px;
}

.time-box {
    background-color: #1f1f5d;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.time-box span {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.time-box small {
    font-size: 11px;
    opacity: 0.8;
}

/* ==================== */
/* ÜRÜN GRID */
/* ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ==================== */
/* ÜRÜN KARTI */
/* ==================== */
.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #1f1f5d;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.product-badge.hot {
    background-color: #ff6b35;
}

.product-badge.new {
    background-color: #28a745;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0;
    overflow: hidden;
}

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    color: #ff5e2c;
    text-transform: uppercase;
    font-weight: 600;
}

.product-title {
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.4;
    font-weight: 500;
}

.product-title a {
    color: var(--text-dark);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
    font-weight: 500;
}

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

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

.product-rating i {
    color: #ffc107;
    font-size: 12px;
}

.product-rating span {
    color: #666;
    font-size: 12px;
    margin-left: 5px;
}

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

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

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

.add-to-cart-wrapper {
    position: relative;
    width: 100%;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.add-to-cart:hover {
    background: #0369a1;
}

.add-to-cart .qty-input-wrap {
    display: flex;
    align-items: center;
    gap: 5px;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.add-to-cart:hover .qty-input-wrap {
    max-width: 100px;
    opacity: 1;
    margin-left: 5px;
}

.add-to-cart .qty-input {
    width: 45px;
    padding: 4px 6px;
    border: none;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
}

.add-to-cart .qty-input:focus {
    outline: none;
    background: #fff;
}

.add-to-cart .qty-label {
    font-size: 12px;
    opacity: 0.9;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.action-btn:hover {
    background-color: #1f1f5d;
    color: #fff;
}

/* ==================== */
/* BANNER BÖLÜMÜ */
/* ==================== */
.banner-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.banner-item {
    border-radius: 12px;
    padding: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.banner-item.large {
    grid-row: span 2;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.banner-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
    display: block;
}

.banner-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.banner-btn {
    display: inline-block;
    background-color: #fff;
    color: #1a1a2e;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.banner-btn:hover {
    background-color: #1a1a2e;
    color: #fff;
}

/* ==================== */
/* RAKAMLARLA ASPAC BÖLÜMÜ */
/* ==================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.stats-section .section-header h2 {
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1f1f5d 30%, #FF5722 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 28px;
    color: #fff;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ==================== */
/* NEWSLETTER BÖLÜMÜ */
/* ==================== */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.1;
}

.newsletter-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 22px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    background: rgba(255,255,255,0.95);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.3);
}

.newsletter-form button {
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

/* ==================== */
/* FOOTER BÖLÜMÜ */
/* ==================== */
.footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #041c2c 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Footer Üst */
.footer-top {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.footer-logo img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo span {
    color: var(--accent);
    font-size: 38px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(135deg, #1f1f5d 30%, #FF5722 100%);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 15px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact li i {
    width: 36px;
    height: 36px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact li span {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
}

/* Footer Alt */
.footer-bottom {
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

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

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

.footer-bottom-content p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

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

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* ==================== */
/* HIZLI ÖNİZLEME MODAL */
/* ==================== */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.quick-view-modal.active {
    opacity: 1;
    visibility: visible;
}

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

.modal-container {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    max-width: 1000px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.quick-view-modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-gallery {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.modal-gallery .main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail-list {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(12, 74, 110, 0.2);
}

.modal-details {
    padding: 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.modal-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.modal-rating .stars {
    color: #fbbf24;
    font-size: 16px;
}

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

.modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(12, 74, 110, 0.05) 100%);
    border-radius: 12px;
}

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

.modal-price .current-price {
    color: var(--primary);
    font-size: 32px;
    font-weight: 800;
}

.discount-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.modal-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 14px;
}

.modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
}

.modal-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
}

.modal-features .feature i {
    color: #10b981;
    font-size: 14px;
}

.modal-quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.modal-quantity > span {
    font-weight: 600;
    color: var(--text-dark);
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s;
}

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

.qty-input {
    width: 60px;
    height: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.qty-input:focus {
    outline: none;
}

.stock-info {
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
}

.stock-info i {
    margin-right: 5px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-add-cart {
    flex: 1;
    padding: 16px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(12, 74, 110, 0.3);
}

.btn-buy-now {
    flex: 1;
    padding: 16px 25px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.modal-meta {
    display: flex;
    gap: 25px;
}

.meta-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

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

.meta-link i {
    font-size: 15px;
}

/* ==================== */
/* SLIDE PANELS (FAVORİLER & SEPET) */
/* ==================== */
.favorites-panel,
.cart-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.favorites-panel.active,
.cart-panel.active {
    opacity: 1;
    visibility: visible;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
}

.panel-container {
    position: absolute;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.favorites-panel.active .panel-container,
.cart-panel.active .panel-container {
    right: 0;
}

.panel-header {
    padding: 25px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.panel-header h3 i {
    font-size: 22px;
}

.cart-count {
    font-weight: 400;
    font-size: 14px;
    opacity: 0.8;
}

.panel-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Sepet Panel Items */
.cart-panel .panel-body .cart-panel-item,
.cart-panel-item {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 10px;
    align-items: center;
    position: relative;
}

.cart-panel-item .item-image {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.cart-panel-item .item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-panel-item .item-image i {
    font-size: 24px;
    color: #ddd;
}

.cart-panel-item .item-info {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 110px);
}

.cart-panel-item .item-info h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    display: block;
}

.cart-panel-item .item-price {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

.cart-panel-item .item-remove {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #fee2e2;
    border: none;
    border-radius: 8px;
    color: #ef4444;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    order: 3;
    margin-left: auto;
}

.cart-panel-item .item-remove:hover {
    background: #ef4444;
    color: white;
}

/* Favoriler Panel Items */
.panel-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--bg-light);
    border-radius: 14px;
    margin-bottom: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.panel-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.panel-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.panel-item:hover::before {
    opacity: 1;
}

.panel-item .item-image {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel-item .item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.panel-item .item-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
}

.panel-item .item-price {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.item-actions {
    display: flex;
    gap: 8px;
}

.item-cart-btn,
.item-remove-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.item-cart-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.item-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(12, 74, 110, 0.3);
}

.item-remove-btn {
    background: #fee2e2;
    color: #ef4444;
}

.item-remove-btn:hover {
    background: #ef4444;
    color: var(--white);
    transform: scale(1.1);
}

.panel-footer {
    padding: 20px 25px;
    border-top: 1px solid #e2e8f0;
}

.panel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s;
}

.panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12, 74, 110, 0.3);
}

/* Sepet Panel Items */
.cart-body {
    padding: 15px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s;
}

.cart-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.cart-item .item-image {
    width: 65px;
    height: 65px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item .item-details {
    flex: 1;
}

.cart-item .item-details h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
    padding-right: 25px;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-qty {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.qty-sm {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 10px;
    color: var(--text-dark);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-sm:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-qty span {
    width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
}

.cart-item .item-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 15px;
}

.item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.item-remove:hover {
    color: #ef4444;
    transform: scale(1.2);
}

/* Sepet Özeti */
.cart-summary {
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
}

.summary-row.discount span:last-child {
    color: #10b981;
    font-weight: 600;
}

.free-shipping {
    color: #10b981;
    font-weight: 600;
}

.summary-row.total {
    border-top: 2px solid var(--primary);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.summary-row.total span:last-child {
    color: var(--primary);
    font-size: 22px;
}

/* Sepet Footer */
.cart-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: var(--white);
}

.btn-view-cart {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
}

.btn-view-cart:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-checkout i {
    font-size: 14px;
}

/* ==================== */
/* ARAMA ÖNERİLERİ DROPDOWN */
/* ==================== */
.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: hidden;
}

.search-suggestions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.suggestions-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    border-bottom: 1px solid #e2e8f0;
}

.suggestions-header span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.suggestions-header i {
    color: var(--accent);
}

.suggestions-list {
    max-height: 320px;
    overflow-y: auto;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

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

.suggestion-item:hover {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(12, 74, 110, 0.03) 100%);
}

.suggestion-item .suggestion-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.suggestion-item .suggestion-icon i {
    font-size: 18px;
    color: var(--primary-light);
}

.suggestion-item .suggestion-info {
    flex: 1;
}

.suggestion-item .suggestion-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.suggestion-item .suggestion-info h4 .highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 1px 4px;
    border-radius: 4px;
    color: var(--text-dark);
}

.suggestion-item .suggestion-info span {
    font-size: 12px;
    color: var(--text-light);
}

.suggestion-item .suggestion-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

.suggestion-item .suggestion-arrow {
    color: #cbd5e1;
    font-size: 14px;
    transition: all 0.2s;
}

.suggestion-item:hover .suggestion-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.suggestions-footer {
    padding: 15px 20px;
    background: var(--bg-light);
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.see-all-results {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.see-all-results:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Popüler Aramalar */
.suggestion-item.popular .suggestion-icon {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.suggestion-item.popular .suggestion-icon i {
    color: var(--accent);
}

.suggestion-item.popular:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
}

/* Sonuç Bulunamadı */
.suggestion-item.no-result {
    cursor: default;
    padding: 25px 20px;
}

.suggestion-item.no-result:hover {
    background: transparent;
}

.suggestion-item.no-result .suggestion-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.suggestion-item.no-result .suggestion-icon i {
    font-size: 24px;
    color: #94a3b8;
}

.suggestion-item.no-result .suggestion-info h4 {
    color: var(--text-light);
    font-weight: 500;
}

/* ==================== */
/* TOAST BİLDİRİM SİSTEMİ */
/* ==================== */
.toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 300px;
    max-width: 450px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.hide {
    transform: translateY(-20px);
    opacity: 0;
}

.toast-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.toast.error .toast-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
}

.toast.warning .toast-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: var(--white);
}

.toast.info .toast-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
}

.toast-content {
    flex: 1;
}

.toast-content .toast-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.toast-content .toast-message {
    font-size: 13px;
    color: var(--text-light);
}

.toast-close {
    width: 28px;
    height: 28px;
    background: var(--bg-light);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 12px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #e2e8f0;
    color: var(--text-dark);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    border-radius: 0 0 14px 14px;
    animation: toastProgress 3s linear forwards;
}

.toast.success .toast-progress {
    background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
}

.toast.error .toast-progress {
    background: linear-gradient(90deg, #ef4444 0%, #f87171 100%);
}

.toast.warning .toast-progress {
    background: linear-gradient(90deg, var(--accent) 0%, #fbbf24 100%);
}

.toast.info .toast-progress {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

/* ==================== */
/* RESPONSIVE STYLES */
/* ==================== */

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--bg-light);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Close Button - Hidden by default */
.mobile-menu-close {
    display: none;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 9998;
    padding: 10px 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 10px;
    font-weight: 600;
    gap: 4px;
    position: relative;
    padding: 5px 15px;
    transition: all 0.3s;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
    color: var(--primary);
}

.mobile-bottom-nav .nav-item .badge {
    position: absolute;
    top: 0;
    right: 5px;
    background: var(--accent);
    color: white;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: 700;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 10000;
    padding: 20px;
    flex-direction: column;
}

.mobile-search-overlay.active {
    display: flex;
}

.mobile-search-overlay .search-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-search-overlay .search-header .back-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-search-overlay .search-input-wrap {
    flex: 1;
    position: relative;
}

.mobile-search-overlay .search-input-wrap input {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    background: var(--bg-light);
}

.mobile-search-overlay .search-input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

/* Mobile Categories Overlay */
.mobile-categories-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 10000;
    flex-direction: column;
}

.mobile-categories-overlay.active {
    display: flex;
}

.mobile-categories-overlay .categories-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-categories-overlay .categories-header .back-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s;
}

.mobile-categories-overlay .categories-header .back-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.mobile-categories-overlay .categories-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.mobile-categories-overlay .categories-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-categories-overlay .category-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    text-decoration: none;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: all 0.2s;
}

.mobile-categories-overlay .category-link:hover,
.mobile-categories-overlay .category-link:active {
    background: var(--bg-light);
}

.mobile-categories-overlay .category-icon-wrap {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-categories-overlay .category-icon-wrap i {
    font-size: 20px;
    color: var(--white);
}

.mobile-categories-overlay .category-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.mobile-categories-overlay .category-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.mobile-categories-overlay .category-count {
    font-size: 12px;
    color: var(--text-light);
}

.mobile-categories-overlay .category-link > i.fa-chevron-right {
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.2s;
}

.mobile-categories-overlay .category-link:hover > i.fa-chevron-right {
    color: var(--primary);
    transform: translateX(3px);
}

.mobile-categories-overlay .categories-footer {
    padding: 15px 20px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom));
    background: var(--bg-light);
    border-top: 1px solid var(--border);
}

.mobile-categories-overlay .view-all-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.mobile-categories-overlay .view-all-categories:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}

/* ==================== */
/* TABLET (1200px and below) */
/* ==================== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-grid .footer-col:last-child {
        grid-column: span 4;
        margin-top: 20px;
        padding-top: 30px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-item {
        padding: 16px 12px;
        font-size: 12px;
    }
}

/* ==================== */
/* TABLET (992px and below) */
/* ==================== */
@media (max-width: 992px) {
    /* Header */
    .main-header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .search-bar {
        order: 3;
        flex: none;
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .header-action span {
        display: none;
    }

    .header-action {
        padding: 10px;
    }

    /* Navigation */
    .nav-bar .container {
        flex-wrap: wrap;
    }

    .all-categories {
        min-width: auto;
        padding: 14px 20px;
    }

    .all-categories span {
        font-size: 13px;
    }

    .category-menu {
        display: none;
    }

    /* Hero Slider */
    .hero-slider {
        height: 500px;
    }

    .slide {
        padding: 0 50px;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .slide-image i {
        font-size: 150px !important;
    }

    /* Features */
    .features-section .container {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .feature-item {
        flex: 0 0 calc(50% - 10px);
        justify-content: center;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Banner */
    .banner-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.banner-item.large {
        grid-row: span 1;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Newsletter */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        max-width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid .footer-col:first-child {
        grid-column: span 2;
    }

    .footer-grid .footer-col:last-child {
        grid-column: span 2;
    }

    /* Modal */
    .modal-content {
        grid-template-columns: 1fr;
    }

    .modal-gallery {
        padding: 30px;
    }

    .main-image {
        height: 250px;
    }

    .modal-details {
        padding: 30px;
        max-height: 50vh;
    }
}

/* ==================== */
/* MOBILE (768px and below) */
/* ==================== */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
    }

    .contact-info {
        gap: 15px;
        font-size: 12px;
    }

    .social-icons {
        display: none;
    }

    /* Header */
    .main-header {
        padding: 12px 0;
    }

    .logo {
        font-size: 28px;
    }

    .logo span {
        font-size: 32px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .search-bar {
        display: none;
    }

    .header-actions {
        gap: 5px;
    }

    .header-action {
        padding: 8px;
    }

    .header-action i {
        font-size: 20px;
    }

    .header-action .badge {
        top: 2px;
        right: 2px;
        font-size: 9px;
        padding: 2px 5px;
    }

    /* Navigation */
    .nav-bar {
        display: none;
    }

    .nav-bar.mobile-open {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: var(--white);
        overflow-y: auto;
        animation: slideInLeft 0.3s ease;
    }

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

    .nav-bar.mobile-open .container {
        flex-direction: column;
        padding: 70px 20px 20px;
        min-height: 100vh;
    }

    .nav-bar.mobile-open .all-categories {
        display: none;
    }

    .nav-bar.mobile-open .category-dropdown {
        display: none;
    }

    .nav-bar.mobile-open .category-menu {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
        gap: 0;
    }

    /* Mobile Category Item Wrapper */
    .nav-bar.mobile-open .category-item-wrapper {
        width: 100%;
    }

    .nav-bar.mobile-open .category-item {
        padding: 16px 20px;
        border-bottom: 1px solid var(--border);
        color: var(--text-dark);
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 15px;
        background: var(--white);
        transition: all 0.2s;
        width: 100%;
    }

    .nav-bar.mobile-open .category-item-wrapper:first-child .category-item {
        border-top: 1px solid var(--border);
    }

    .nav-bar.mobile-open .category-item:hover,
    .nav-bar.mobile-open .category-item:active {
        background: var(--bg-light);
        color: var(--primary);
    }

    .nav-bar.mobile-open .category-item i {
        color: var(--primary);
        font-size: 18px;
        width: 24px;
        text-align: center;
    }

    /* Mobile Alt Kategori Ok */
    .nav-bar.mobile-open .category-item .menu-arrow {
        margin-left: auto;
        color: #94a3b8;
        font-size: 12px;
        transition: transform 0.3s;
    }

    .nav-bar.mobile-open .category-item-wrapper.open .menu-arrow {
        transform: rotate(180deg);
        color: var(--primary);
    }

    /* Mobile Alt Kategori Dropdown */
    .nav-bar.mobile-open .category-item-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: var(--bg-light);
    }

    .nav-bar.mobile-open .category-item-wrapper.open .category-item-dropdown {
        max-height: 500px;
    }

    .nav-bar.mobile-open .category-item-dropdown a {
        padding: 14px 20px 14px 55px;
        font-size: 14px;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
    }

    .nav-bar.mobile-open .category-item-dropdown a:last-child {
        border-radius: 0;
    }

    .nav-bar.mobile-open .category-item-dropdown a:hover {
        padding-left: 60px;
    }

    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
        background: var(--bg-light);
        border: none;
        border-radius: 12px;
        font-size: 22px;
        cursor: pointer;
        display: none;
        color: var(--text-dark);
        transition: all 0.2s;
    }

    .nav-bar.mobile-open .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-bar.mobile-open .mobile-menu-close:hover {
        background: var(--primary);
        color: var(--white);
    }

    /* Mobile Menu Header */
    .nav-bar.mobile-open::before {
        content: 'Kategoriler';
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
    }

    /* Hero Slider */
    .hero-slider {
        height: 400px;
    }

    .slide {
        padding: 0 20px;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .slide-image {
        display: none;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Features */
    .features-section {
        padding: 25px 0;
    }

    .feature-item {
        flex: 0 0 100%;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 20px;
    }

    .feature-text h4 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 12px;
    }

    /* Section Headers */
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 22px;
    }

    /* Categories */
    .categories-section {
        padding: 40px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .category-card {
        padding: 20px 15px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

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

    .category-card h4 {
        font-size: 14px;
    }

    /* Products */
    .deals-section,
    .popular-section,
    .new-products-section {
        padding: 40px 0;
    }

    .countdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .time-box {
        padding: 8px 12px;
        min-width: 50px;
    }

    .time-box span {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 150px;
    }

    .product-image i {
        font-size: 50px !important;
    }

    .product-info {
        padding: 15px;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .product-rating {
        margin-bottom: 8px;
    }

    .product-rating i {
        font-size: 10px;
    }

    .current-price {
        font-size: 18px;
    }

    .old-price {
        font-size: 12px;
    }

    .add-to-cart {
        padding: 10px;
        font-size: 12px;
    }

    .product-actions {
        top: 10px;
        right: 10px;
    }

    .action-btn {
        width: 32px;
        height: 32px;
    }

    /* Banner */
    .banner-section {
        padding: 40px 0;
    }

    .banner-grid {
        gap: 15px;
    }

    .banner-item {
        padding: 25px;
    }

    .banner-content h3 {
        font-size: 20px;
    }

    .banner-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    /* Stats */
    .stats-section {
        padding: 40px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-icon {
        width: 55px;
        height: 55px;
    }

    .stat-icon i {
        font-size: 22px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-text h3 {
        font-size: 22px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        padding: 14px 20px;
    }

    .newsletter-form button {
        padding: 14px 25px;
    }

    /* Footer */
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid .footer-col:first-child,
    .footer-grid .footer-col:last-child {
        grid-column: span 1;
    }

    .footer-logo {
        font-size: 28px;
    }

    .footer-col h4 {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .footer-contact {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    /* Modal */
    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .modal-gallery {
        padding: 20px;
    }

    .main-image {
        height: 200px;
    }

    .thumbnail {
        width: 55px;
        height: 55px;
    }

    .modal-details {
        padding: 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-price .current-price {
        font-size: 26px;
    }

    .modal-features {
        grid-template-columns: 1fr;
    }

    .modal-quantity {
        flex-wrap: wrap;
        gap: 15px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-meta {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Panels */
    .panel-container {
        width: 100%;
        right: -100%;
    }

    /* Toast */
    .toast-container {
        top: auto;
        bottom: 80px;
        left: 10px;
        right: 10px;
        transform: none;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }

    /* Mobile Bottom Nav - Show */
    .mobile-bottom-nav {
        display: block;
    }

    /* Add padding to body for bottom nav */
    body {
        padding-bottom: 70px;
    }
}

/* ==================== */
/* SMALL MOBILE (480px and below) */
/* ==================== */
@media (max-width: 480px) {
    .top-bar .container {
        padding: 0 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .main-header .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo span {
        font-size: 28px;
    }

    /* Hero */
    .hero-slider {
        height: 350px;
    }

    .slide-content h1 {
        font-size: 22px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 15px 10px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
    }

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

    .category-card h4 {
        font-size: 13px;
    }

    .category-card span {
        font-size: 11px;
    }

    /* Products */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-image {
        height: 120px;
    }

    .product-image i {
        font-size: 40px !important;
    }

    .product-info {
        padding: 12px;
    }

    .product-category {
        font-size: 10px;
    }

    .product-title {
        font-size: 13px;
        height: 36px;
    }

    .product-rating {
        display: none;
    }

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

    .add-to-cart {
        padding: 8px;
        font-size: 11px;
    }

    .add-to-cart i {
        display: none;
    }

    .product-badge {
        padding: 4px 8px;
        font-size: 10px;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-item {
        padding: 15px 10px;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .stat-icon i {
        font-size: 18px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Banner */
    .banner-item {
        padding: 20px;
    }

    .banner-subtitle {
        font-size: 12px;
    }

    .banner-content h3 {
        font-size: 18px;
    }

    .banner-content p {
        font-size: 12px;
        display: none;
    }

    /* Newsletter */
    .newsletter-text h3 {
        font-size: 20px;
    }

    .newsletter-text p {
        font-size: 13px;
    }

    /* Footer */
    .footer-links a {
        font-size: 13px;
    }

    .footer-contact li span {
        font-size: 13px;
    }

    /* Countdown */
    .countdown-timer {
        gap: 8px;
    }

    .time-box {
        padding: 6px 10px;
        min-width: 45px;
    }

    .time-box span {
        font-size: 14px;
    }

    .time-box small {
        font-size: 9px;
    }
}

/* ==================== */
/* LANDSCAPE PHONE */
/* ==================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 300px;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content p {
        display: none;
    }

    .modal-content {
        grid-template-columns: 1fr 1fr;
    }

    .modal-details {
        max-height: calc(100vh - 40px);
    }
}

/* ==================== */
/* PRINT STYLES */
/* ==================== */
@media print {
    .top-bar,
    .nav-bar,
    .hero-slider,
    .mobile-bottom-nav,
    .quick-view-modal,
    .favorites-panel,
    .cart-panel,
    .toast-container {
        display: none !important;
    }

    .main-header {
        box-shadow: none;
    }

    .footer {
        background: none;
        color: #000;
    }
}

/* ==================== */
/* TOAST BİLDİRİM SİSTEMİ */
/* ==================== */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    min-width: 320px;
}

.toast-show {
    transform: translateY(0);
    opacity: 1;
}

.toast-hide {
    transform: translateY(-100px);
    opacity: 0;
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.toast-success .toast-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.toast-error .toast-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
}

.toast-warning .toast-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
}

.toast-info .toast-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
}

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

.toast-message {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.4;
}

.toast-close {
    width: 28px;
    height: 28px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    animation: toast-progress 4s linear forwards;
}

.toast-success .toast-progress {
    background: linear-gradient(90deg, #10b981, #059669);
}

.toast-error .toast-progress {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.toast-warning .toast-progress {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.toast-info .toast-progress {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

@keyframes toast-progress {
    from { width: 100%; }
    to { width: 0%; }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #toast-container {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        max-width: none;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }
}

/* ==================== */
/* CATEGORY CARD WITH IMAGE */
/* ==================== */
.category-card.has-image {
    background-size: cover;
    background-position: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.category-card.has-image .category-overlay {
    opacity: 1;
}

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

.category-card.has-image:hover .category-overlay {
    background: rgba(0,0,0,0.5);
}

.category-card.has-image h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-card.has-image span {
    color: rgba(255,255,255,0.9);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
