
    /* GENEL AYARLAR VE RESET */
    :root {
        --primary-color: #1a1a1a;
        --secondary-color: #f5f5f7;
        --accent-color: #e53935;
        --text-color: #333;
        --light-text-color: #fff;
        --border-color: #e0e0e0;
        --font-heading: 'Oswald', sans-serif;
        --font-body: 'Montserrat', sans-serif;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font-body);
        color: var(--text-color);
        line-height: 1.6;
        background-color: #fff;
    }

    .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
    }

    a {
        text-decoration: none;
        color: var(--text-color);
    }

 
    h1, h2, h3 {
        font-family: var(--font-heading);
        font-weight: 700;
        text-transform: uppercase;
    }

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 40px;
        margin-top: 60px;
    }
    
.login-page-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 80px); /* Ekran yüksekliğine göre ayar */
    padding: 40px 0;
}

.login-container {
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.login-title {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.login-form {
    width: 100%;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form .form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}
.login-form .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
}
.login-form .form-control::placeholder {
    color: #aaa;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
}
.form-options .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.form-options a {
    color: #555;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.login-btn:hover {
    background-color: #333;
}

.register-prompt {
    margin-top: 30px;
    color: #666;
}
.register-prompt .register-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
}

/* Bilgilendirme barını sayfanın altına sabitlemek için */
.login-info-bar {
    margin-top: auto; /* Kalan boşluğu doldurarak alta iter */
    padding-top: 60px;
}

/* Hata Mesajları İçin */
.alert.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 20px;
    text-align: left;
}
.alert.alert-danger p {
    margin: 0;
}
.is-invalid {
    border-color: #e3342f !important;
}
/* Header Sepet Sayacı Stili */
.header-icons .header-cart-icon {
    position: relative;
    display: inline-block;
}
.header-icons .cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    padding: 1px 6px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.4;
    font-family: var(--font-body);
}
    /* BUTONLAR */
    .btn {
        display: inline-block;
        padding: 12px 30px;
        font-family: var(--font-heading);
        text-transform: uppercase;
        font-size: 1rem;
        font-weight: 500;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background-color: var(--primary-color);
        color: var(--light-text-color);
        border-color: var(--primary-color);
    }

    .btn-primary:hover {
        background-color: #333;
        border-color: #333;
    }

    .btn-primary-white {
        background-color: var(--light-text-color);
        color: var(--primary-color);
        border-color: var(--light-text-color);
    }

    .btn-primary-white:hover {
        background-color: transparent;
        color: var(--light-text-color);
    }

    .btn-secondary {
        background-color: rgba(255, 255, 255, 0.9);
        color: var(--primary-color);
    }

    .btn-secondary:hover {
        background-color: #fff;
    }

    /* HEADER */
    .main-header {
        background-color: #fff;
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .main-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: var(--font-heading);
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .main-nav ul {
        display: flex;
    }

    .main-nav ul li a {
        padding: 10px 15px;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

    .main-nav ul li a:hover {
        color: var(--accent-color);
    }

    .header-icons a {
        margin-left: 20px;
        font-size: 1.2rem;
    }
    
    /* BRAND FOCUS SECTION */
    .brand-focus-section {
        margin-top: 80px;
    }

    .brand-focus-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .brand-focus-card {
        position: relative;
        height: 550px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        color: #fff;
        background-size: cover;
        background-position: center;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .brand-focus-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

    .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.85) 10%, rgba(0,0,0,0) 60%);
        z-index: 1;
        display: flex;
        align-items: flex-end;
    }

    .card-content {
        z-index: 2;
        text-align: center;
        padding: 40px;
        width: 100%;
    }

    .card-content p {
        font-size: 0.95rem;
        margin-bottom: 5px;
        font-weight: 500;
    }

    .card-content h2 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .btn-discover {
        display: inline-block;
        background-color: #fff;
        color: var(--primary-color);
        padding: 12px 35px;
        border-radius: 50px;
        font-weight: 600;
        font-family: var(--font-body);
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .brand-focus-card:hover .btn-discover {
        background-color: var(--accent-color);
        color: #fff;
    }
    
    .category-slider-section {
        margin-top: 80px;
        margin-bottom: 60px;
    }

    .category-slider-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 30px;
    }

    .category-slider-header .section-title {
        text-align: left;
        margin: 0;
        font-size: 2rem;
    }

    .gender-tabs .tab-btn {
        font-family: var(--font-body);
        background: none;
        border: none;
        padding: 10px 15px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        color: #999;
        position: relative;
        transition: color 0.3s ease;
    }

    .gender-tabs .tab-btn.active {
        color: var(--primary-color);
    }

    .gender-tabs .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 15px;
        right: 15px;
        height: 2px;
        background-color: var(--primary-color);
    }

    .category-carousel-wrapper {
        position: relative;
    }

    .category-carousel {
        display: flex;
        gap: 20px;
        overflow-x: scroll;
        scroll-behavior: smooth;
        padding-bottom: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .category-carousel::-webkit-scrollbar {
        display: none;
    }

    .category-item {
        flex: 0 0 180px;
        text-align: center;
        transition: transform 0.2s ease;
    }

    .category-item:hover {
        transform: translateY(-5px);
    }

    .category-item-image {
        background-color: var(--secondary-color);
        border-radius: 12px;
        padding: 10px;
        margin-bottom: 15px;
        overflow: hidden;
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category-item-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .category-item-title {
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 1rem;
        color: var(--text-color);
        text-transform: none;
    }

    .carousel-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-70%);
        width: 45px;
        height: 45px;
        background-color: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 50%;
        font-size: 1.1rem;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    .category-carousel-wrapper:hover .carousel-arrow {
        opacity: 1;
    }

    .carousel-arrow.next { right: -20px; }
    .carousel-arrow.prev { left: -20px; }
    .carousel-arrow.prev.hidden { opacity: 0; pointer-events: none; }
    
    .hero-section {
        height: 70vh;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--light-text-color);
    }
    
    .category-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 60px;
    }

    .category-card {
        height: 400px;
        background-size: cover;
        background-position: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        padding: 30px;
        color: var(--light-text-color);
        position: relative;
        overflow: hidden;
    }
    .category-card::after {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
    }

    .card-content h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    /* PRODUCT CAROUSEL */
    .product-carousel {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .product-card {
        border: 1px solid var(--border-color);
        text-align: center;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        padding-bottom: 15px; /* Fiyat için altta boşluk */
    }

    .product-card:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-5px);
    }

    .product-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .product-title {
        font-size: 1.1rem;
        font-weight: 600;
        margin-top: 15px;
        text-transform: none;
        font-family: var(--font-body);
    }

    .product-category {
        font-size: 0.9rem;
        color: #777;
    }
    
    /* PROMO CARDS SECTION */
    .promo-grid-section {
        margin-top: 80px;
    }

    .promo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .promo-card {
        position: relative;
        height: 250px;
        background-size: cover;
        background-position: center;
        border-radius: 15px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .promo-card:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .promo-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.1);
        z-index: 1;
    }

    .promo-card-content {
        position: relative;
        z-index: 2;
    }

    .promo-card-content h3 {
        font-size: 2rem;
        font-weight: 700;
        text-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    }

    /* INFO BAR SECTION */
    .info-bar-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .info-bar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        padding: 30px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .info-icon {
        font-size: 2.2rem;
        color: var(--primary-color);
        min-width: 40px;
        text-align: center;
    }

    .info-text h4 {
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .info-text p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
    }
    
    /* FOOTER */
    .main-footer {
        background-color: var(--primary-color);
        color: var(--secondary-color);
        padding-top: 60px;
        margin-top: 60px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .footer-section h4 {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .footer-section p { color: #ccc; }
    .footer-section ul li { margin-bottom: 10px; }
    .footer-section ul li a {
        color: #ccc;
        transition: color 0.3s ease;
                  text-decoration: none;

    }
    .footer-section ul li a:hover { color: #fff; }
    .social-icons a {
        color: #fff;
        font-size: 1.5rem;
        margin-right: 15px;
    }

    .footer-bottom {
        text-align: center;
        padding: 20px 0;
        margin-top: 40px;
        border-top: 1px solid #333;
    }

    /* YENİ EKLENEN FİYAT STİLLERİ */
    .product-price {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 8px;
    }
    .old-price {
        font-size: 0.9rem;
        color: #888;
        text-decoration: line-through;
    }
    .new-price {
        font-size: 1rem;
        font-weight: 700;
        color: var(--accent-color); /* İndirimli fiyat dikkat çekici olsun */
    }
    .category-item .product-price {
         margin-top: 5px;
    }
    /* YENİ EKLENEN FİYAT STİLLERİ SONU */

    /* RESPONSIVE DESIGN */
    @media(max-width: 992px) {
        .main-nav { display: none; }
        .product-carousel { grid-template-columns: 1fr 1fr; }
        .brand-focus-grid { grid-template-columns: 1fr; }
        .brand-focus-card { height: 450px; }
        .promo-grid { grid-template-columns: 1fr; }
        .info-bar { grid-template-columns: repeat(2, 1fr); }
    }

    @media(max-width: 768px) {
        .hero-content h1 { font-size: 2.5rem; }
        .category-grid { grid-template-columns: 1fr; }
    }

    @media(max-width: 576px) {
        .product-carousel { grid-template-columns: 1fr; }
        .footer-grid { grid-template-columns: 1fr; text-align: center; }
        .info-bar { grid-template-columns: 1fr; text-align: center; }
        .info-item { flex-direction: column; }
    }
    /* ========================================= */
/* ===== ÜRÜN LİSTELEME SAYFASI STİLLERİ ===== */
/* ========================================= */

/* Sayfa Genel Yapısı */
.product-page-container {
    display: grid;
    grid-template-columns: 280px 1fr; /* 280px filtre alanı, kalan boşluk ürünler */
    gap: 30px;
    margin-top: 40px;
}

/* Filtreleme Kenar Çubuğu */
.filters-sidebar {
    border: 1px solid var(--border-color);
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 100px; /* Header yüksekliğine göre ayarlanabilir */
}
.sidebar-header { display: none; }
.filter-group { margin-bottom: 25px; }
.filter-group h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: none;
}
.filter-group ul { list-style: none; padding: 0; }
.filter-group ul li a { display: block; padding: 5px 0; color: #555; transition: color 0.2s; }
.filter-group ul li a:hover { color: var(--primary-color); }

.size-filter { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.size-filter button {
    padding: 8px; border: 1px solid #ccc; background: #fff; cursor: pointer;
    transition: all 0.2s;
}
.size-filter button.active, .size-filter button:hover {
    background: var(--primary-color); color: #fff; border-color: var(--primary-color);
}

.color-filter { display: flex; flex-wrap: wrap; gap: 10px; }
.color-swatch {
    width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
    transition: transform 0.2s;
}
.color-swatch:hover { transform: scale(1.1); }

.price-filter { display: flex; align-items: center; gap: 5px; }
.price-filter input { width: 100%; padding: 8px; border: 1px solid #ccc; }
.apply-filters-btn {
    width: 100%; padding: 12px; background: var(--primary-color); color: #fff;
    border: none; cursor: pointer; font-weight: 600; text-transform: uppercase;
}

/* Ürün Grid Alanı */
.product-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.breadcrumb h1 { font-size: 1.8rem; margin: 0; }
.breadcrumb h1 small { font-size: 1rem; color: #777; font-weight: 400; text-transform: none;}
.mobile-filter-toggle { display: none; }
.sort-options select { padding: 8px; border: 1px solid #ccc; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Ürün Kartını Yeniden Stilize Ediyoruz */
.product-grid .product-card {
    border: none;
    text-align: left;
    position: relative;
    overflow: visible; /* Overlay'in taşması için */
}
.product-image-wrapper { position: relative; background-color: var(--secondary-color); margin-bottom: 15px; }
.product-image-wrapper img { width: 100%; height: auto; }

.wishlist-btn { position: absolute; top: 10px; right: 10px; background: none; border: none; font-size: 1.3rem; cursor: pointer; }
.bestseller-tag { position: absolute; top: 10px; left: 10px; background: var(--accent-color); color: #fff; padding: 3px 8px; font-size: 0.7rem; font-weight: 600; }
.quick-add-btn {
    position: absolute; bottom: 10px; right: 10px; background: #fff; border: 1px solid #ccc;
    width: 35px; height: 35px; border-radius: 50%; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.quick-add-btn:hover { background: var(--primary-color); color: #fff; }

.product-info { padding: 0 5px; }
.product-brand { font-size: 0.9rem; color: #666; font-weight: 600; margin-bottom: 5px; text-transform: uppercase; }
.product-grid .product-title { font-size: 0.95rem; font-family: var(--font-body); text-transform: none; font-weight: 500; margin: 0; }
.product-grid .product-price { justify-content: flex-start; margin-top: 10px; }
.discount-badge {
    background-color: #e8f5e9; color: #4caf50; padding: 2px 6px; border-radius: 4px;
    font-size: 0.8rem; font-weight: 700;
}
/* Gizli Beden Seçim Alanı */
.size-selector-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(5px);
    border: 1px solid var(--border-color);
    padding: 20px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10;
}
.size-selector-overlay.active { opacity: 1; visibility: visible; transform: translateY(0); }
.size-selector-overlay h4 { text-transform: none; font-family: var(--font-body); }
.close-size-selector { position: absolute; top: 5px; right: 10px; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.size-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(45px, 1fr)); gap: 8px; margin: 15px 0; }
.size-grid button { padding: 8px; border: 1px solid #ccc; background: #fff; cursor: pointer; }
.size-grid button:disabled { background: #eee; cursor: not-allowed; text-decoration: line-through; }
.add-to-cart-btn {
    width: 100%; padding: 12px; background: var(--primary-color); color: #fff; border: none; cursor: pointer;
    text-transform: uppercase; font-weight: 600;
}
/* Sayfalama */
.pagination { display: flex; justify-content: center; margin-top: 40px; }
.pagination ul { display: flex; list-style: none; padding: 0; }
.pagination ul li a, .pagination ul li span {
    display: block; padding: 10px 15px; margin: 0 5px; border: 1px solid var(--border-color);
    transition: all 0.2s;
}
.pagination ul li a:hover, .pagination ul li a.active {
    background: var(--primary-color); color: #fff; border-color: var(--primary-color);
}
/* =================================== */
/* ===== SEPET SAYFASI STİLLERİ ===== */
/* =================================== */

.cart-page-container {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Sol taraf daha geniş */
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start; /* Kolonları yukarıdan hizala */
}

.cart-title {
    font-size: 2rem;
    font-family: var(--font-body);
    text-transform: none;
    font-weight: 600;
    margin-bottom: 20px;
}
.item-count { color: #888; font-weight: 400; }

/* Sepet Ürün Listesi */
.cart-items-list { border-top: 1px solid var(--border-color); }
.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr 200px; /* resim | detaylar | aksiyonlar */
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}
.item-image { background-color: var(--secondary-color); padding: 10px; }
.item-image img { width: 100%; height: auto; }
.item-name { font-size: 1rem; font-family: var(--font-body); text-transform: none; margin-bottom: 10px; }
.item-attributes { font-size: 0.9rem; color: #555; margin-bottom: 8px; }
.item-seller { font-size: 0.9rem; color: #888; }
.item-options { margin-top: 15px; }
.gift-wrap { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; cursor: pointer; }
.gift-wrap i { font-size: 1.1rem; }

/* Adet ve Fiyat Alanı */
.item-actions { text-align: right; display: flex; flex-direction: column; justify-content: space-between; align-items: flex-end; }
.item-price { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; margin-bottom: 15px; }
.item-price .old-price { font-size: 0.9rem; }
.item-price .new-price { font-size: 1.1rem; }

.quantity-selector { display: flex; border: 1px solid #ccc; }
.quantity-selector input { width: 40px; text-align: center; border: none; font-size: 1rem; }
.quantity-selector .quantity-btn {
    width: 30px; height: 30px; background: none; border: none;
    font-size: 1.2rem; cursor: pointer; color: #555;
}
.item-links { margin-top: 10px; }
.item-links a { font-size: 0.8rem; color: #888; text-decoration: underline; }

/* Sipariş Özeti */
.order-summary-box {
    background-color: var(--secondary-color);
    padding: 25px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}
.summary-title { font-size: 1.5rem; text-transform: none; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 15px; }
.summary-row.total {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    font-weight: 700;
}
.summary-row.total .total-price { font-size: 1.4rem; color: var(--accent-color); }
.summary-row.total small { display: block; font-weight: 400; color: #888; font-size: 0.8rem; }

.coupon-toggle {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 15px; border: 1px solid #ccc; background-color: #fff;
    cursor: pointer; font-size: 1rem; margin-top: 10px;
}
.checkout-btn {
    width: 100%; padding: 15px; background: var(--primary-color); color: #fff;
    border: none; border-radius: 5px; cursor: pointer; font-size: 1.1rem;
    font-weight: 600; text-transform: uppercase; margin-top: 20px;
}
/* Ürün Öneri Alanı */
.recommended-products-section { margin-top: 60px; }
.recommended-products-section .section-title { text-align: left; margin: 0 0 30px 0; }
/* Öneri ürünleri için product-grid stilini yeniden kullanıyoruz */
/* ======================================= */
/* ===== GİRİŞ / ÜYE OL SAYFASI STİLLERİ ===== */
/* ======================================= */

.login-page-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(80vh - 80px); /* Ekran yüksekliğine göre ayar */
    padding: 40px 0;
}

.login-container {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.login-title {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form input[type="text"] {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}

.privacy-text {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 30px;
}

.privacy-text a {
    color: #555;
    text-decoration: underline;
}

.login-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px; /* Tam yuvarlak kenar */
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #333;
}

/* Bilgilendirme barını sayfanın altına sabitlemek için */
.login-info-bar {
    margin-top: auto; /* Kalan boşluğu doldurarak alta iter */
    padding-top: 40px;
}
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Ürün Galerisi */
.product-gallery { display: flex; gap: 20px; }
.thumbnail-list { display: flex; flex-direction: column; gap: 10px; }
.thumbnail-item {
    display: block; width: 80px; height: 80px; padding: 5px;
    border: 1px solid var(--border-color); cursor: pointer;
}
.thumbnail-item.active { border: 2px solid var(--primary-color); }
.thumbnail-item img { width: 100%; height: 100%; object-fit: contain; }
.main-image-display { flex: 1; position: relative; background: var(--secondary-color); }
.main-image-display img { width: 100%; height: auto; }
.main-image-display .bestseller-tag { top: 15px; left: 15px; } /* Zaten var olan stili kullanır */

/* Ürün Bilgileri */
.product-details-column { padding: 10px 0; }
.product-breadcrumb { font-size: 0.9rem; color: #888; margin-bottom: 15px; }
.product-breadcrumb a { color: #555; }
.product-brand-title { font-size: 1.5rem; text-transform: none; margin-bottom: 5px; }
.product-main-title { font-size: 1.8rem; line-height: 1.3; font-family: var(--font-body); text-transform: none; font-weight: 600; margin-bottom: 15px; }
.product-price-main { font-size: 1.8rem; font-weight: 700; margin-bottom: 15px; }
.product-actions { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; color: #888; }
.product-actions button { background: none; border: none; font-size: 1.3rem; cursor: pointer; }
.model-number { border-left: 1px solid #ccc; padding-left: 15px; }

.color-options, .size-options { margin-bottom: 25px; }
.color-options h4, .size-options h4 { font-size: 1rem; font-weight: 600; text-transform: none; margin-bottom: 10px; }
.color-swatch { display: inline-block; width: 60px; height: 60px; border: 1px solid #ccc; padding: 5px; cursor: pointer; }
.color-swatch.active { border: 2px solid var(--primary-color); }
.color-swatch img { width: 100%; height: 100%; object-fit: contain; }
.size-header { display: flex; justify-content: space-between; align-items: center; }
.size-chart-link { font-size: 0.9rem; color: #555; }

.size-grid-detail { display: grid; grid-template-columns: repeat(auto-fill, minmax(65px, 1fr)); gap: 10px; }
.size-grid-detail button {
    padding: 12px 5px; border: 1px solid #ccc; background: #fff; cursor: pointer;
    font-size: 0.9rem; transition: all 0.2s;
}
.size-grid-detail button:hover { border-color: var(--primary-color); }
.size-grid-detail button:disabled { background: #f5f5f5; color: #ccc; cursor: not-allowed; text-decoration: line-through; }
.add-to-cart-main-btn {
    width: 100%; padding: 15px; background: var(--primary-color); color: #fff; border: none;
    border-radius: 5px; font-size: 1.1rem; font-weight: 600; cursor: pointer; margin-bottom: 15px;
}
.find-in-store-link { display: block; text-align: center; text-decoration: underline; color: #333; }

/* Alt Bilgi Sekmeleri */
.product-info-tabs { margin-top: 60px; border-top: 1px solid var(--border-color); }
.tabs-nav { display: flex; justify-content: center; border-bottom: 1px solid var(--border-color); }
.tab-link {
    padding: 15px 30px; background: none; border: none; font-size: 1rem; font-weight: 600;
    cursor: pointer; color: #888; position: relative;
}
.tab-link.active { color: var(--primary-color); }
.tab-link.active::after {
    content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
    height: 2px; background: var(--primary-color);
}
.tabs-content { padding: 40px 0; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }
.tab-pane h3 { font-size: 1.5rem; }
.tab-pane ul { list-style: disc; padding-left: 20px; }
.tab-pane img { max-width: 100%; height: auto; }

/* Bilgi Kutuları */
.info-blocks-section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 40px 0; }
.info-block { background: var(--secondary-color); padding: 25px; }
.info-block h4 { font-size: 1.2rem; }
.info-block a { text-decoration: underline; color: #333; }
.info-block.contact button {
    padding: 10px 20px; background: var(--primary-color); color: #fff;
    border: none; border-radius: 20px; cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .product-detail-container { grid-template-columns: 1fr; }
}
@media(max-width: 768px) {
    .product-gallery { flex-direction: column-reverse; } /* Ana resim üste, thumbnail'ler alta */
    .thumbnail-list { flex-direction: row; }
    .info-blocks-section { grid-template-columns: 1fr; }
}
/* RESPONSIVE */
@media(max-width: 992px) {
    .cart-page-container { grid-template-columns: 1fr; }
    .order-summary-box { position: static; /* Sabitlemeyi kaldır */ }
}
@media(max-width: 768px) {
    .cart-item {
        grid-template-columns: 100px 1fr; /* Resim | Diğerleri */
        grid-template-rows: auto auto; /* 2 satır */
    }
    .item-image { grid-row: 1 / 3; }
    .item-details { grid-column: 2 / 3; }
    .item-actions {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
    }
}
/* RESPONSIVE */
@media(max-width: 992px) {
    .product-page-container { grid-template-columns: 1fr; }
    .filters-sidebar {
        position: fixed; top: 0; left: 0; width: 300px; height: 100%;
        background: #fff; z-index: 1100; transform: translateX(-100%);
        transition: transform 0.3s ease; overflow-y: auto;
    }
    .filters-sidebar.active { transform: translateX(0); }
    .sidebar-header {
        display: flex; justify-content: space-between; align-items: center;
        padding: 20px; border-bottom: 1px solid var(--border-color);
    }
    .mobile-filter-toggle { display: block; padding: 8px 15px; border: 1px solid #ccc; background: none; cursor: pointer; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
  .product-page-container {
        display: flex;
        gap: 30px; /* Kenar çubuğu ile ürün alanı arasına boşluk koyar */
    }

    /* Filtreleme Kenar Çubuğu (Sidebar) */
    .filters-sidebar {
        width: 280px; /* Sabit bir genişlik verelim */
        flex-shrink: 0; /* Ekran küçülse bile daralmasını engeller */
    }

    /* Ürün Listesi Alanı */
    .product-grid-area {
        flex-grow: 1; /* Kalan tüm alanı kaplamasını sağlar */
    }

    /* Filtre Grupları (Kategori, Fiyat Aralığı vb.) */
    .filter-group {
        margin-bottom: 35px; /* Her grup arasına boşluk */
        border-bottom: 1px solid #f0f0f0; /* Grupları ayıran ince çizgi */
        padding-bottom: 25px;
    }
    .filter-group:last-child {
        border-bottom: none; /* Son elemanın altındaki çizgiyi kaldır */
    }

    /* Filtre Başlıkları (h4) */
    .filter-group h4 {
        font-size: 16px;
        font-weight: 600; /* Daha belirgin bir font kalınlığı */
        margin-bottom: 20px;
        text-transform: uppercase; /* "TÜM ÜRÜNLER" başlığı gibi büyük harf */
        letter-spacing: 0.5px;
    }

    /* Kategori Listesi */
    .filters-sidebar ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .filters-sidebar ul li {
        margin-bottom: 12px;
    }
    .filters-sidebar ul a {
        text-decoration: none;
        color: #555; /* Normal link rengi */
        transition: color 0.2s ease;
    }
    .filters-sidebar ul a:hover {
        color: #000; /* Üzerine gelince siyah yap */
    }
    /* Aktif kategori linkini kalın yapmak için (inline style ile çalışır) */
    .filters-sidebar ul a[style*="bold"] {
        color: #000;
    }

    /* Fiyat Aralığı Filtresi */
    .price-filter-inputs {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .price-input {
        width: 100%;
        padding: 10px;
        border: 1px solid #e0e0e0;
        border-radius: 0; /* Tasarımınıza uygun keskin köşeler */
        text-align: center;
        font-size: 14px;
    }
    /* Tarayıcının varsayılan oklarını gizle (Chrome, Safari, Edge, Opera) */
    .price-input::-webkit-outer-spin-button,
    .price-input::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
    /* Firefox için */
    .price-input[type=number] {
      -moz-appearance: textfield;
    }


    /* Sıralama Select Kutusu */
    .filter-select {
        width: 100%;
        padding: 12px 10px;
        border: 1px solid #e0e0e0;
        border-radius: 0;
        background-color: #fff;
        appearance: none; /* Tarayıcı varsayılan stilini kaldır */
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 16px 12px;
    }

    /* Filtrele Butonu */
    .filter-submit-btn {
        width: 100%;
        padding: 12px;
        background-color: #222; /* Siyah, ana aksiyon rengi */
        color: white;
        border: 1px solid #222;
        border-radius: 0;
        cursor: pointer;
        margin-top: 20px;
        font-weight: 600;
        text-transform: uppercase;
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    .filter-submit-btn:hover {
        background-color: #fff; /* Üzerine gelince ters renkler */
        color: #222;
    }
    .color-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px; /* Çok fazla renk olursa kaydırma çubuğu çıkar */
    overflow-y: auto; /* Dikey kaydırma çubuğu */
}
.color-filter-list li {
    display: flex;
    align-items: center; /* Checkbox ve yazıyı aynı hizada tutar */
    margin-bottom: 10px;
}

/* Checkbox'lar ve etiketleri (Label) */
.color-filter-list input[type="checkbox"] {
    margin-right: 10px; /* Kutucuk ile yazı arasına boşluk */
    /* İsteğe bağlı: Daha modern bir checkbox görünümü için */
    width: 16px;
    height: 16px;
    accent-color: #333; /* Checkbox işaretlendiğindeki rengi */
}
.color-filter-list label {
    cursor: pointer;
    color: #555;
    font-size: 15px;
}
/* Bu kodları layout.blade.php'deki <style> etiketlerinin içine ekleyin */

.order-card {
    border: 1px solid #e9e9e9;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}
.order-card-header {
    background: #f8f8f8;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    border-bottom: 1px solid #e9e9e9;
}
.order-card-header span {
    color: #666;
}
.order-card-header strong {
    color: #000;
}

/* İlerleme Çubuğu Stilleri */
.order-progress-bar {
    display: flex;
    justify-content: space-between;
    padding: 30px 20px;
    position: relative;
}
.order-progress-bar::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}
.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
}
.step-dot {
    width: 12px;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}
.step-label {
    font-size: 0.8rem;
    color: #999;
}

/* Tamamlanmış Adım Stilleri */
.progress-step.completed .step-dot {
    background-color: #000;
    border-color: #000;
}
.progress-step.completed .step-label {
    color: #000;
    font-weight: 600;
}

/* Aktif Adım Stilleri */
.progress-step.active .step-dot {
    background-color: #fff;
    border-color: #000;
    transform: scale(1.5); /* Aktif adımı büyüt */
}
.progress-step.active .step-label {
    color: #000;
    font-weight: bold;
}

/* Sipariş Ürünleri Listesi */
.order-product-list {
    padding: 0 20px 10px 20px;
    border-top: 1px solid #f0f0f0;
}
.order-product-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}
.order-product-item:last-child {
    border-bottom: none;
}
.order-product-item .product-image {
    width: 70px;
    height: 70px;
    margin-right: 15px;
}
.order-product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-product-item .product-details {
    flex-grow: 1;
}
.order-product-item .product-name {
    display: block;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 5px;
}
.order-product-item .product-meta {
    display: block;
    font-size: 0.85rem;
    color: #777;
}
.order-product-item .product-price {
    font-weight: bold;
    font-size: 1rem;
}

/* Boş Sipariş Sayfası */
.empty-orders { text-align: center; padding: 40px; border: 1px dashed #ddd; }
.btn-shop-now { display: inline-block; margin-top: 20px; background: #000; color: #fff; padding: 10px 20px; text-decoration: none; }
/* =================================================================
   HEADER & ÇOK SEVİYELİ NAVİGASYON MENÜSÜ
================================================================= */

/* --- 1. GENEL HEADER YAPISI --- */
.main-header {
    background-color: #ffffff;
    padding: 0; /* İç boşluğu nav elemanlarına veriyoruz */
    border-bottom: 1px solid #e9e9e9;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. LOGO VE İKONLAR --- */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
    padding: 20px 0;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-icons a {
    color: #1a1a1a;
    font-size: 20px;
    position: relative;
    transition: color 0.2s;
}
.header-icons a:hover { color: #d9534f; }
.header-cart-icon .cart-count {
    position: absolute; top: -8px; right: -10px; background-color: #d9534f;
    color: #fff; width: 18px; height: 18px; border-radius: 50%;
    font-size: 11px; font-weight: bold; display: flex;
    justify-content: center; align-items: center;
}

/* --- 3. ANA NAVİGASYON (SEVİYE 1) --- */
.main-nav { margin: 0 auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.main-nav > ul > li { position: relative; } /* Alt menülerin pozisyonu için kritik */
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 25px 15px; /* Tıklama alanını genişletir */
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease, background-color 0.3s ease;
}
.main-nav > ul > li:hover > a {
    background-color: #f7f7f7;
    color: #000;
}
.main-nav a .fa-chevron-down {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* --- 4. AÇILIR MENÜ GENEL STİLLERİ (SEVİYE 2 VE DAHA DERİN) --- */
.submenu-list {
    position: absolute;
    top: 100%; /* Ana menünün hemen altında başla */
    left: 0;
    width: 240px; /* Açılır menü genişliği */
    background-color: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px;
    padding: 10px;
    list-style: none; /* Liste işaretlerini kaldır */

    /* Başlangıçta gizli ve tıklanamaz olsun */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px); /* Aşağıdan gelme efekti için */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.submenu-list a {
    display: flex;
    justify-content: space-between; /* İsim ve oku ayırmak için */
    align-items: center;
    padding: 10px 15px;
    font-size: 15px;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap; /* Uzun kategori isimlerinin alta kaymasını engelle */
}
.submenu-list a:hover {
    background-color: #f5f5f5;
    color: #000;
}

/* --- 5. DAHA DERİN SEVİYELER (SEVİYE 3+) --- */
/* Bir alt menünün içindeki alt menü yana doğru açılsın */
.submenu-list .has-submenu > .submenu-list {
    top: -11px; /* Üst kenarı hizala (padding'i hesaba kat) */
    left: 100%; /* Yanında başla */
    border-radius: 8px; /* Tüm köşeleri yuvarlat */
}

/* --- 6. GÖRÜNÜRLÜK VE ANİMASYON (HOVER ETKİLEŞİMİ) --- */
/* Herhangi bir alt menüsü olan öğenin üzerine gelince... */
.has-submenu:hover > .submenu-list {
    /* ...onun BİR ALTINDAKİ menüyü görünür yap */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
/* Ana menüdeki okun dönüşü */
.main-nav > ul > li.has-submenu:hover > a > .fa-chevron-down {
    transform: rotate(180deg);
}
/* Alt menülerdeki okun sağa dönmesi */
.submenu-list .has-submenu > a > .fa-chevron-down {
    transform: rotate(-90deg);
}

/* =================================================================
   HEADER & ÇOK SEVİYELİ NAVİGASYON MENÜSÜ
================================================================= */
.main-nav { margin: 0 auto; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
    display: flex; align-items: center; padding: 25px 15px;
    color: #333; text-decoration: none; font-size: 14px;
    font-weight: 600; text-transform: uppercase; transition: color 0.3s ease, background-color 0.3s ease;
}
.main-nav > ul > li:hover > a { background-color: #f7f7f7; color: #000; }
.main-nav a .fa-chevron-down { font-size: 10px; margin-left: 8px; transition: transform 0.3s ease; }
.submenu-list {
    position: absolute; top: 100%; left: 0; width: 240px;
    background-color: #fff; border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 0 0 8px 8px; padding: 10px; list-style: none;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.submenu-list a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 15px; font-size: 15px; color: #555;
    text-decoration: none; border-radius: 5px; transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.submenu-list a:hover { background-color: #f5f5f5; color: #000; }
.submenu-list .has-submenu > .submenu-list { top: -11px; left: 100%; border-radius: 8px; }
.has-submenu:hover > .submenu-list {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.main-nav > ul > li.has-submenu:hover > a > .fa-chevron-down { transform: rotate(180deg); }
.submenu-list .has-submenu > a > .fa-chevron-down { transform: rotate(-90deg); }


/* =================================================================
   ANASAYFA YENİ BÖLÜMLER
================================================================= */

/* --- ANA MARKALAR BÖLÜMÜ --- */
.brand-showcase-section {
    margin-top: 80px;
    text-align: center;
}
.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.brand-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.brand-card-image {
    background-color: #f5f5f7;
    padding: 20px;
    margin-bottom: 20px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.brand-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: none;
}
/* layout.blade.php içindeki ilgili CSS bloğunu bununla değiştirin */

/* --- İNTERAKTİF KATEGORİ BÖLÜMÜ (PERAKENDE/TOPTAN) - YENİ VERSİYON --- */
.interactive-category-section {
    margin-top: 80px;
}
.interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.interactive-card {
    min-height: 450px; /* Kartın kapalıykenki minimum yüksekliği */
    height: auto; /* İçerik uzadıkça kartın da uzamasını sağlar */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex; /* İçeriği dikeyde hizalamak için */
    flex-direction: column; /* İçerik alt alta gelsin */
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Yumuşak geçiş */
    overflow: hidden; /* Taşan içeriği gizle */
}
/* Gradient overlay */
.interactive-card::after {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 70%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

/* KART İÇİNDEKİ ANA KAPSAYICI */
.card-content-wrapper {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Kapsayıcının tüm kart yüksekliğini kullanmasını sağlar */
}

/* Başlık ve Butonun olduğu kısım */
.card-main-content {
    text-align: center;
    /* Kart kapalıyken dikeyde ortalamak için */
    margin-top: auto;
    margin-bottom: auto;
    transition: margin 0.5s ease;
}
.card-main-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

/* Kart aktif olduğunda yapılacak stil değişiklikleri */
.interactive-card.active {
    box-shadow: 0 0 0 4px white, 0 0 0 8px var(--accent-color);
}
/* Aktif kartın içindeki başlık ve buton yukarıya yaslansın */
.interactive-card.active .card-main-content {
    margin-top: 0;
    margin-bottom: 20px; /* Alttaki içerikle arasına boşluk koy */
}
/* Aktif kartın gradient'ini biraz azaltarak alttaki yazıyı okunur yapalım */
.interactive-card.active::after {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 80%);
}

/* Tıklandığında Görünen İçerik Alanı */
.card-reveal-content {
    width: 100%;
    margin-top: 15px;
}
.reveal-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}
.reveal-list {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Liste elemanları arası boşluk */
}

/* İçerikteki Her Bir Kategori Linki (Buğra Bey, Like Point vb.) */
.revealed-item-inline {
    display: block;
    width: 100%;
    padding: 18px 25px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid transparent;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.revealed-item-inline:hover {
    background-color: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: scale(1.03); /* Hafif büyüme efekti */
}

.sub-category-reveal-container {
    background-color: #f9f9f9;
    margin-top: -5px; /* Kartların altına tam yapışsın */
    padding: 40px;
    border: 1px solid #e0e0e0;
}
.revealed-content h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
}
.revealed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.revealed-item {
    background-color: #fff;
    padding: 25px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}
.revealed-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.07);
}
.revealed-item .parent-brand {
    display: block;
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.revealed-item h4 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    text-transform: none;
    font-weight: 600;
    color: var(--primary-color);
}
/* layout.blade.php içine bu CSS bloğunu ekleyin */

/* =================================================================
   YENİ - GRUPLANDIRILMIŞ KATEGORİ CAROUSEL BÖLÜMÜ
================================================================= */
.grouped-category-section {
    margin-top: 80px;
}

.grouped-category-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Her bir grup (Başlık + Carousel) */
.category-group {
    margin-bottom: 60px; /* Gruplar arasına dikey boşluk */
}

/* Grup Başlığı (Örn: "Buğra Bey - Perakende") */
.group-title {
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

/* Carousel oklarının başlangıçta gizli olması ve daha yumuşak geçişi için */
.carousel-arrow {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.category-carousel-wrapper:hover .carousel-arrow {
    opacity: 1;
    pointer-events: 'auto';
}
/* layout.blade.php içine bu CSS bloğunu ekleyin */

/* =================================================================
   YENİ - SEKMELİ ÖNE ÇIKAN ÜRÜNLER BÖLÜMÜ
================================================================= */
.featured-products-section {
    margin-top: 80px;
    padding-top: 20px;
    background-color: #f9f9f9;
    padding-bottom: 60px;
}

.featured-products-header {
    text-align: center;
    margin-bottom: 40px;
}

.featured-products-header .section-title {
    margin-bottom: 30px;
}

/* Sekme Butonları */
.product-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
/* Sekme butonları için önceki .tab-button stilini kullanıyoruz,
   bu yüzden tekrar yazmaya gerek yok, sadece emin olmak için burada dursun */
.tab-button {
    background: none; border: none; font-family: var(--font-body);
    font-size: 1.1rem; font-weight: 600; color: #888;
    padding: 15px 25px; cursor: pointer; position: relative;
    transition: color 0.3s ease;
}
.tab-button::after {
    content: ''; position: absolute; bottom: 0; left: 10%; right: 10%;
    height: 3px; background-color: var(--accent-color);
    transform: scaleX(0); transition: transform 0.4s ease;
}
.tab-button:hover { color: #333; }
.tab-button.active { color: var(--primary-color); }
.tab-button.active::after { transform: scaleX(1); }


/* Ürün Grid Alanı */
.product-tab-content {
    position: relative;
}
.product-grid-display {
    display: grid;
    /* responsive grid, mevcut product-carousel ile aynı */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
/* layout.blade.php içinde bu CSS'lerin olduğundan emin olun */

/* =================================================================
   MEGA MENÜ HEADER TASARIMI
================================================================= */

/* --- 1. GENEL HEADER YAPISI --- */
.main-header {
    background-color: #ffffff;
    padding: 0;
    border-bottom: 1px solid #e9e9e9;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. LOGO VE İKONLAR --- */
.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    padding: 20px 0;
}
.header-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-icons a {
    font-size: 20px;
}

/* --- 3. ANA NAVİGASYON (SEVİYE 1) --- */
.main-nav { 
    margin: 0 auto; 
    height: 100%;
}
.main-nav ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    height: 100%;
}
.main-nav > ul > li { 
    position: relative;
    display: flex;
    align-items: center;
}
.main-nav > ul > li > a {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: 80px; /* Header yüksekliğini belirleyelim */
    line-height: 80px; /* Yazıyı dikeyde ortala */
    color: #333;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-bottom: 3px solid transparent;
}
.main-nav > ul > li:hover > a {
    background-color: #f7f7f7;
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
.main-nav a .fa-chevron-down {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.main-nav > ul > li:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

/* --- 4. MEGA MENÜ PANELİ --- */
.mega-menu-panel {
    position: absolute;
    top: 100%; 
    left: 50%; /* Ortalamak için */
    transform: translateX(-50%); /* Ortalamak için */
    width: auto;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-radius: 0 0 8px 8px;
    padding: 25px 30px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(15px);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
li.has-megamenu:hover > .mega-menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* --- 5. MEGA MENÜ İÇERİĞİ VE SÜTUNLAR --- */
.mega-menu-content {
    display: flex; /* Sütunları yan yana dizmek için flex kullanmak daha iyi */
    gap: 40px; /* Sütunlar arası boşluk */
    white-space: nowrap; /* İçeriğin alta kaymasını engelle */
}
.mega-menu-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- 6. MEGA MENÜ BAŞLIK VE LİNKLERİ --- */
.mega-menu-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
}
.mega-menu-link {
    font-size: 15px;
    color: #555;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
    text-transform: capitalize; /* "perakende" -> "Perakende" yapar */
}
.mega-menu-link:hover {
    background-color: #f5f5f5;
    color: var(--accent-color);
}
    .product-detail-page { padding-top: 40px; padding-bottom: 60px; }
    .product-detail-main-grid { display: grid; grid-template-columns: 55% 45%; gap: 50px; align-items: start; }
    
    /* Galeri Stilleri (Sol Sütun) */
    .product-gallery { display: grid; grid-template-columns: 100px 1fr; gap: 20px; align-items: start; position: sticky; top: 100px; }
    .thumbnail-strip { display: flex; flex-direction: column; gap: 10px; }
    .thumbnail-item { cursor: pointer; border: 2px solid transparent; border-radius: 8px; transition: border-color 0.2s; overflow: hidden; }
    .thumbnail-item.active { border-color: var(--primary-color); }
    .thumbnail-item img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; display: block; }
    .main-image-display { grid-column: 2 / 3; }
    .main-image-display img { width: 100%; height: auto; border-radius: 8px; }

    /* Ürün Bilgileri Stilleri (Sağ Sütun) */
    .product-details-column { padding-left: 20px; }
    .product-main-title { font-size: 2.2rem; font-family: var(--font-body); text-transform: none; font-weight: 600; line-height: 1.3; }
    .product-short-description { font-size: 1rem; color: #666; margin-top: 10px; line-height: 1.6; }
    .product-price-main { font-size: 2rem; font-weight: 700; color: var(--accent-color); margin-top: 20px; }
    .detail-divider { border: 0; height: 1px; background-color: #eee; margin: 25px 0; }

    /* Seçenek Grupları (Renk, Beden) */
    .product-option-group { margin-bottom: 25px; }
    .option-title { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; color: #555; margin-bottom: 15px; }
    .option-title span { color: var(--primary-color); font-weight: 700; }
    .color-selection-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
    .color-swatch-item { cursor: pointer; border: 2px solid #eee; padding: 4px; border-radius: 50%; transition: all 0.2s; }
    .color-swatch-item.active { border-color: var(--primary-color); transform: scale(1.1); }
    .color-swatch-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 50%; display: block; }

    .size-selection-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
    .size-btn { border: 1px solid #ccc; background-color: #fff; color: #333; min-width: 50px; height: 50px; padding: 0 10px; font-size: 1rem; cursor: pointer; border-radius: 4px; transition: all 0.2s; }
    .size-btn:hover:not(.disabled) { border-color: #000; }
    .size-btn.active { background-color: #000; color: #fff; border-color: #000; }
    .size-btn.disabled { background-color: #f5f5f5; color: #ccc; cursor: not-allowed; text-decoration: line-through; }
    .error-message { color: var(--accent-color); margin-top: 10px; display: none; font-size: 14px; }

    /* Adet ve Sepete Ekle Butonu */
    .quantity-add-wrapper { display: flex; gap: 15px; margin-top: 30px; }
    .quantity-selector-detail { display: flex; border: 1px solid #ccc; border-radius: 4px; }
    .quantity-selector-detail input { width: 50px; text-align: center; border: none; font-size: 1.1rem; -moz-appearance: textfield; }
    .quantity-selector-detail input::-webkit-outer-spin-button, .quantity-selector-detail input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
    .quantity-btn-detail { width: 40px; height: 50px; background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #555; }
    .add-to-cart-main-btn { flex-grow: 1; padding: 15px; background: var(--primary-color); color: #fff; border: none; font-size: 1rem; font-weight: 600; cursor: pointer; border-radius: 4px; transition: background-color 0.2s; }
    .add-to-cart-main-btn:hover { background-color: #333; }
    .cart-error-notice { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; border-radius: 4px; padding: 12px 15px; margin-top: 15px; font-size: 15px; text-align: center; }

    /* Ürün Sayfası Info Bar */
    .product-info-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; background-color: #f9f9f9; padding: 20px; border-radius: 8px; margin-top: 30px; }
    .product-info-bar .info-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #444; }
    .product-info-bar .info-item i { font-size: 1.5rem; color: var(--primary-color); }


/* =================================================================
   YENİ - SEKMELİ ÜRÜN DETAY BÖLÜMÜ
================================================================= */
.product-tabs-section {
    margin-top: 80px;
    margin-bottom: 60px;
    max-width: 900px; /* İçeriğin çok genişleyip okunmaz olmasını engeller */
    margin-left: auto;
    margin-right: auto;
}

/* Sekme Butonları */
.product-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}
.tab-nav-button {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 15px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tab-nav-button:hover {
    color: #333;
}
.tab-nav-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background-color: #f9f9f9;
    border-radius: 8px 8px 0 0;
}
.tab-nav-button i {
    font-size: 1.1rem;
}

/* Sekme İçerikleri */
.product-tabs-content {
    padding: 10px;
}
.tab-content-panel {
    line-height: 1.8;
    color: #444;
}
.tab-content-panel h4 {
    font-size: 1.4rem;
    font-family: var(--font-body);
    text-transform: none;
    margin-bottom: 15px;
}

/* Adet, Sepete Ekle ve WhatsApp Butonları için yeni kapsayıcı */
.product-action-buttons {
    display: grid;
    grid-template-columns: auto 1fr; /* Adet seçici sabit, Sepete Ekle esnek */
    gap: 15px;
    margin-top: 30px;
}
.quantity-selector-detail {
    grid-column: 1 / 2;
}
.add-to-cart-main-btn {
    grid-column: 2 / 3;
}
/* WhatsApp butonu tüm alt sırayı kaplasın */
.whatsapp-order-btn {
    grid-column: 1 / -1; /* İki sütunu da kapla */
}

/* WhatsApp Butonu Stilleri */
.whatsapp-order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px;
    background-color: #25D366; /* WhatsApp yeşili */
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
}
.whatsapp-order-btn:hover {
    background-color: #128C7E;
    color: #fff;
}
.whatsapp-order-btn i {
    font-size: 1.4rem;
}
/* Ürün Açıklaması Kısaltma ve Tümünü Göster */
.product-content-wrapper {
    position: relative;
    max-height: 250px; /* Başlangıçta gösterilecek yükseklik */
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}
/* Alttan üste doğru solma efekti (gradient) */
.product-content-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
    transition: opacity 0.3s ease;
}

/* Tümünü Göster'e tıklandığında */
.product-content-wrapper.expanded {
    max-height: 2000px; /* İçeriğin sığabileceği büyük bir değer */
}
.product-content-wrapper.expanded::after {
    opacity: 0; /* Gradient'i gizle */
}

/* "Tümünü Göster" Butonu */
.expand-content-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 0 auto;
    transition: all 0.2s;
}
.expand-content-btn:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
}
    /* Benzer Ürünler Slider */
    .similar-products-section { padding: 60px 0; background-color: #f9f9f9; }
    .similar-products-section .section-title { text-align: center; margin-bottom: 40px; }
    
    /* Modal Stilleri */
    .add-to-cart-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0, 0, 0, 0.6); justify-content: center; align-items: center; font-family: var(--font-body); }
    .add-to-cart-modal .modal-content { background-color: #fefefe; margin: auto; padding: 25px 35px; border-radius: 8px; width: 90%; max-width: 650px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); animation: fadeIn 0.3s ease-in-out; }
    @keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
    .add-to-cart-modal .modal-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 15px; margin-bottom: 20px; }
    .add-to-cart-modal .modal-header h3 { margin: 0; font-size: 1.25rem; font-weight: 600; }
    .add-to-cart-modal .close-modal-btn { color: #aaa; font-size: 28px; font-weight: bold; background: none; border: none; cursor: pointer; }
    .add-to-cart-modal .modal-body { display: flex; gap: 25px; align-items: center; }
    .add-to-cart-modal .modal-product-image { width: 120px; flex-shrink: 0; }
    .add-to-cart-modal .modal-product-image img { width: 100%; height: auto; border-radius: 4px; border: 1px solid #ddd; }
    .add-to-cart-modal .modal-product-details h4 { margin-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
    .add-to-cart-modal .modal-product-details p { margin: 5px 0; color: #555; }
    .add-to-cart-modal .modal-product-details span { font-weight: 600; color: #222; }
    .add-to-cart-modal .modal-product-price { margin-top: 15px; font-size: 1.4rem; font-weight: bold; }
    .add-to-cart-modal .modal-footer { display: flex; justify-content: flex-end; gap: 15px; margin-top: 25px; padding-top: 20px; border-top: 1px solid #eee; }
    .add-to-cart-modal .btn-continue, .add-to-cart-modal .btn-gocart { padding: 12px 22px; border: 1px solid #ccc; border-radius: 5px; text-decoration: none; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.2s ease; }
    .add-to-cart-modal .btn-continue { background-color: #f1f1f1; color: #333; }
    .add-to-cart-modal .btn-continue:hover { background-color: #e5e5e5; }
    .add-to-cart-modal .btn-gocart { background-color: #222; color: #fff; border-color: #222; }
    .add-to-cart-modal .btn-gocart:hover { background-color: #000; }

    /* Benzer Ürünler Slider */
.similar-products-section { 
    padding: 60px 0; 
    background-color: #f9f9f9; 
    border-top: 1px solid #eee;
}
.similar-products-section .section-title { 
    text-align: center; 
    margin-bottom: 40px; 
}

/* Bu stiller anasayfadaki carousel ile aynıdır ve yeniden kullanılabilir. */
.category-carousel-wrapper { position: relative; }
.category-carousel { display: flex; gap: 20px; overflow-x: scroll; scroll-behavior: smooth; padding-bottom: 20px; scrollbar-width: none; -ms-overflow-style: none; }
.category-carousel::-webkit-scrollbar { display: none; }
.category-item { flex: 0 0 250px; /* Kart genişliğini ayarlayabilirsiniz */ text-align: center; background-color: #fff; padding: 15px; border-radius: 8px; transition: all 0.3s ease; }
.category-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.category-item-image { background-color: #f5f5f7; border-radius: 4px; margin-bottom: 15px; overflow: hidden; }
.category-item-image img { width: 100%; height: auto; aspect-ratio: 1/1.1; object-fit: cover; }
.category-item-title { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: var(--text-color); text-transform: none; margin-bottom: 8px; }
/* =================================================================
   SLIDER İÇİNDEKİ ÜRÜN KARTLARI (ÇOK SATANLAR VB.) İÇİN STİL DÜZELTMESİ
================================================================= */

/* Slider içindeki her bir ürün kartının genel stili */
.category-item {
    text-decoration: none; /* En önemli kural: Alt çizgiyi kaldırır */
    color: var(--text-color); /* Metin rengini sitenin varsayılan metin rengi yapar */
}

/* Kart içindeki başlık (Ürün Adı) */
.category-item .category-item-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-color); /* Rengin tekrar sitenin varsayılanı olmasını sağlar */
    text-transform: none;
    margin-bottom: 8px;
    text-decoration: none; /* Bu başlığın da alt çizgisini kaldırır */
    transition: color 0.2s ease;
}

/* Üzerine gelince ürün adının rengini değiştirerek tıklanabilir olduğunu belli edelim */
.category-item:hover .category-item-title {
    color: var(--accent-color); /* Vurgu rengine dönsün */
}

/* Kart içindeki fiyat bilgisi */
.category-item .product-price {
    margin-top: 5px;
    text-decoration: none !important; /* Fiyatın alt çizgisini her koşulda kaldırır */
}

.category-item .product-price .new-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color); /* Vurgu rengi */
}

/* =================================================================
   ÜRÜN LİSTELEME SAYFASI - YENİ VE ÖZENLİ ÜRÜN KARTI TASARIMI
================================================================= */

/* Ürün Grid Alanı */
.product-grid {
    display: grid;
    /* 300px'den dar olmayan, esnek sütunlar oluştur. Responsive tasarım için ideal. */
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px; /* Kartlar arası boşluk */
}

/* Ürün Kartı Ana Kapsayıcısı */
.product-card {
    border: none; /* Çerçeveyi tamamen kaldırıyoruz */
    text-align: left; /* Tüm metinleri sola yasla */
    background-color: #fff;
    overflow: hidden; /* Dışarı taşan efektleri gizle */
    transition: all 0.3s ease; /* Yumuşak geçişler için */
}

/* Resim Alanı */
.product-image-wrapper {
    background-color: var(--secondary-color); /* #f5f5f7 - Resimler için açık gri arka plan */
    border-radius: 8px; /* Resim köşelerini yumuşat */
    overflow: hidden;
    margin-bottom: 15px;
}
.product-image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.1; /* Resim oranını hafifçe dikey yap */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease; /* Büyüme efekti için */
}
/* Kartın üzerine gelince resim hafifçe büyüsün */
.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

/* Kartın altındaki bilgi bölümü */
.product-info {
    padding: 0 5px; /* Kenarlardan hafif boşluk */
}

/* Marka ve Kategori Adı (örn: SANTORİNO - KLASİK AYAKKABILAR) */
.product-brand {
    font-size: 0.8rem;
    font-weight: 600;
    color: #888; /* Daha soluk bir renk */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Ürün Adı ve Rengi (örn: Test Ürün - Siyah) */
.product-title {
    font-family: var(--font-body);
    font-weight: 600; /* Daha okunaklı bir kalınlık */
    font-size: 1.1rem;
    text-transform: none;
    margin: 0;
    line-height: 1.4;
}

/* BU KISIM LİNK SORUNUNU ÇÖZÜYOR */
.product-title a {
    text-decoration: none; /* Alt çizgiyi kaldır */
    color: var(--text-color); /* Normal metin rengini kullan */
    transition: color 0.2s ease;
}


/* Fiyat Bilgisi */
.product-price {
    margin-top: 10px;
    justify-content: flex-start; /* Fiyatı sola yasla */
}
.product-price .new-price {
    font-size: 1.2rem; /* Fiyatı biraz daha belirgin yap */
    font-weight: 700;
    color: var(--accent-color);
}
.mega-menu-link {
    font-size: 15px;
    color: #555;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none; /* En önemli kural: Alt çizgiyi kaldırır */
    transition: background-color 0.2s, color 0.2s;
}

/* Linkin üzerine gelindiğinde */
.mega-menu-link:hover {
    background-color: #f5f5f5; /* Hafif bir arka plan rengi ekle */
    color: var(--accent-color); /* Vurgu rengine dönsün */
    text-decoration: none; /* Üzerine gelince de alt çizgi olmasın */
}
/* faq.css */
.faq-page {
  padding: 60px 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #fbfbfb;
  color: #222;
}

.faq-header {
  text-align: center;
  margin-bottom: 32px;
}

.faq-header h1 {
  font-size: 2rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.faq-header .lead {
  color: #555;
  margin-bottom: 16px;
}

.faq-search {
  max-width: 620px;
  margin: 0 auto;
}

.faq-search input[type="search"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Liste */
.faq-list {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  padding: 8px;
}

/* Madde */
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(34,34,34,0.06);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.03);
}

/* Soru butonu */
.faq-q {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  text-align: left;
  padding: 18px 18px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-q:focus {
  outline: 3px solid rgba(0,0,0,0.08);
  outline-offset: 2px;
}

/* Chevron (ikon) */
.chev {
  display: inline-block;
  width: 18px;
  height: 18px;
  transform: rotate(0deg);
  transition: transform 0.25s ease;
  background-image: linear-gradient(135deg, transparent 50%, currentColor 50%), linear-gradient(225deg, transparent 50%, currentColor 50%);
  background-size: 50% 100%;
  background-position: right center, left center;
  background-repeat: no-repeat;
  color: #333;
}

/* Açılınca chevron dönsün */
.faq-q[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

/* Cevap alanı */
.faq-a {
  padding: 0 18px 18px 18px;
  line-height: 1.6;
  color: #444;
  font-size: 0.975rem;
  transition: height 0.28s ease;
}

/* Küçük ekranlar */
@media (max-width: 768px) {
  .faq-page { padding: 30px 12px; }
  .faq-header h1 { font-size: 1.6rem; }
  .faq-q { padding: 14px; }
  .faq-a { padding: 0 14px 14px; }
}
