﻿:root {
    --primary-color: #000;
    --secondary-color: #666;
    --accent-color: #c4a77d; /* Altın/Bej detaylar */
    --bg-light: #f9f9f9;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--primary-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .serif-font {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

    a:hover {
        color: var(--secondary-color);
    }

/* --- HEADER & TOP BAR --- */
.top-announcement {
    background-color: #fff;
    color: #000;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    z-index: 1001;
}

.header-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding-top: 35px;
    transition: background-color 0.4s ease;
}

    .header-wrapper:hover {
        background-color: rgba(0, 0, 0, 0.2) !important;
    }

.header-icons-group a {
    margin: 0 10px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

    .header-icons-group a:hover {
        color: var(--accent-color);
    }

/* --- DİL SEÇENEĞİ BUTONU --- */
.lang-dropdown .dropdown-toggle {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
    color: #000;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 15px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .lang-dropdown .dropdown-toggle:hover {
        background: #fff;
        color: #000;
    }

/* Dil Menüsü Kapsayıcısı */
.lang-dropdown-menu {
    min-width: 120px !important;
    margin-top: 10px !important;
    padding: 5px 0 !important;
    background: #fff !important;
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-radius: 8px !important;
    left: auto !important;
    right: 0 !important;
}

    /* Dil Menüsü İçindeki Linkler */
    .lang-dropdown-menu .dropdown-item {
        font-size: 0.8rem !important;
        padding: 8px 15px !important;
        color: #000 !important;
        text-align: center;
        font-weight: 600;
        text-transform: uppercase;
    }

        .lang-dropdown-menu .dropdown-item:hover {
            background-color: #f4f4f4 !important;
            color: var(--accent-color) !important;
            padding-left: 15px !important;
        }

.brand-logo img {
    max-height: 60px;
}

/* --- MEGA MENU STYLES --- */
.navbar-nav .nav-link {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #000 !important;
    margin: 0 10px;
    font-weight: 700;
    position: relative;
}

.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    padding: 40px 0;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 0;
    display: none;
    z-index: 1100;
}

@media (min-width: 992px) {
    .navbar-nav .has-mega-menu:hover .mega-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Genel Dropdown */
.dropdown-menu:not(.mega-menu):not(.lang-dropdown-menu) {
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-top: 15px !important;
    padding: 15px 0;
    background-color: #fff;
    min-width: 220px;
}

.dropdown-item {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    color: #666;
    transition: all 0.3s ease;
}

.dropdown-menu:not(.lang-dropdown-menu) .dropdown-item:hover {
    background-color: transparent;
    color: #000;
    padding-left: 35px;
    font-weight: 600;
}

.mega-menu h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mega-menu ul {
    padding: 0;
    list-style: none;
}

    .mega-menu ul li {
        margin-bottom: 12px;
    }

        .mega-menu ul li a {
            font-size: 0.85rem;
            color: #555 !important;
            text-transform: capitalize;
            transition: color 0.2s;
            text-decoration: none;
        }

            .mega-menu ul li a:hover {
                color: #000 !important;
                text-decoration: underline;
            }

.mega-menu-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

    .mega-menu-img-wrapper img {
        
        height: 400px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .mega-menu-img-wrapper:hover img {
        transform: scale(1.05);
    }

.mega-menu-caption {
    text-align: left;
    margin-top: 10px;
}

    .mega-menu-caption span {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: #000;
    }

    .mega-menu-caption a {
        font-size: 0.75rem;
        text-transform: uppercase;
        text-decoration: underline;
        color: #666 !important;
    }

.navbar-collapse {
    @media (max-width: 991px) {
        background: rgba(0,0,0,0.95);
        padding: 20px;
        border-radius: 5px;
        margin-top: 10px;
    }
}

/* --- HERO SLIDER --- */
.hero-slider, .hero-slider .carousel-item {
    height: 100vh;
}

    .hero-slider img {
        object-fit: cover;
        height: 100%;
        width: 100%;
    }

.carousel-indicators [data-bs-target] {
    height: 4px;
    width: 60px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
}

.carousel-indicators .active {
    background-color: #fff;
}

/* --- SECTION 2: VERTICAL SLIDER --- */
.vertical-slider-section {
    padding: 80px 0;
}

.vertical-swiper {
    padding-bottom: 50px;
}

    .vertical-swiper .swiper-slide {
        text-align: center;
        background: #fff;
        height: auto;
    }

        .vertical-swiper .swiper-slide img {
            width: auto;
            height: 600px;
            object-fit: cover;
            margin-bottom: 15px;
        }

    .vertical-swiper .swiper-pagination {
        bottom: 0 !important;
    }

/* --- SHOP THE LOOK --- */
.shop-look-section {
    padding: 80px 0;
    background: #fff;
}

.look-image-container {
    position: relative;
}

.look-main-image {
    width: 100%;
    height: auto;
    display: block;
}

.hotspot-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.3);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

    .hotspot-dot::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 8px;
        height: 8px;
        background: #fff;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .hotspot-dot:hover, .hotspot-dot.active {
        background: rgba(255,255,255,0.6);
        transform: translate(-50%, -50%) scale(1.1);
    }

.shop-look-sidebar {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.shop-look-title {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.shop-look-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.shop-look-product {
    text-align: center;
    border: 1px solid #eee;
    padding: 20px;
    background: #fff;
}

    .shop-look-product img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .shop-look-product h6 {
        font-size: 0.9rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

.price-box .old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 0.9rem;
}

.price-box .new-price {
    color: #d9534f;
    font-weight: 700;
    font-size: 1rem;
}

.btn-quick-view {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 20px;
    text-transform: uppercase;
    transition: all 0.3s;
}

    .btn-quick-view:hover {
        background: var(--primary-color);
        color: #fff;
    }

.shop-look-nav-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.shop-look-pagination {
    position: static;
    width: auto;
    margin: 0 20px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.shop-look-prev, .shop-look-next {
    position: static;
    margin: 0;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
}

    .shop-look-prev::after, .shop-look-next::after {
        font-size: 1.2rem;
    }

.hover-grid-item {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

    .hover-grid-item img {
        width: 100%;
        height: 700px;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .hover-grid-item:hover img {
        transform: scale(0.95);
    }

.insta-grid .col-2 {
    padding: 2px;
}

.insta-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: 350px;
}

    .insta-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.3s;
    }

    .insta-item:hover img {
        opacity: 0.8;
    }

.insta-modal-content {
    border-radius: 0;
    border: none;
}

.insta-modal-body {
    padding: 0;
}

.insta-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.insta-modal-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-section {
    padding: 100px 0;
    background-color: #fff;
}

.story-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.nav-pills-custom {
    justify-content: center;
    margin-bottom: 50px;
    border-bottom: none;
}

    .nav-pills-custom .nav-link {
        color: #999;
        background-color: #f4f4f4;
        font-family: 'Lato', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 35px;
        margin: 0 10px;
        border-radius: 30px;
        transition: all 0.4s ease;
    }

        .nav-pills-custom .nav-link:hover {
            color: #000;
            background-color: #e9e9e9;
        }

        .nav-pills-custom .nav-link.active {
            background-color: #000;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

.story-content-wrapper {
    animation: fadeInUp 0.6s ease;
}

.story-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #000;
    margin-bottom: 25px;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features-section {
    padding: 50px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

    .feature-box i {
        font-size: 2rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    .feature-box h6 {
        letter-spacing: 1px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 0.85rem;
        color: var(--secondary-color);
    }

/* --- ABOUT PAGE SPECIFIC (YENİ EKLENEN KISIMLAR) --- */

/* Page Header Banner */
.page-header-banner {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

/* Zig-Zag Layout Sections */
.content-section {
    padding: 100px 0;
}

.content-img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.content-text {
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .content-text h2 {
        margin-bottom: 30px;
        font-size: 2.5rem;
        position: relative;
        display: inline-block;
    }

        .content-text h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            margin-top: 15px;
        }

    .content-text p {
        line-height: 2;
        color: #555;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

/* Quote Section */
.quote-section {
    background-color: #111;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

    .quote-section::before {
        content: '“';
        font-family: serif;
        font-size: 10rem;
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        color: rgba(255,255,255,0.1);
    }

.quote-text {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 40px;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

    .value-card:hover {
        border-color: #eee;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

.value-icon-box {
    width: 80px;
    height: 80px;
    background: #f9f9f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: 0.3s;
}

.value-card:hover .value-icon-box {
    background: var(--accent-color);
    color: #fff;
}

.value-icon-box i {
    font-size: 2rem;
    color: #000;
    transition: 0.3s;
}

.value-card:hover .value-icon-box i {
    color: #fff;
}

.value-card h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

/* --- FOOTER --- */
footer {
    background: #f9f9f9; /* Yeni koddan gelen renk */
    padding: 60px 0 20px;
    font-size: 0.9rem;
    border-top: 1px solid #eee; /* Yeni koddan gelen border */
}

    footer h5 {
        margin-bottom: 20px;
        font-size: 1rem;
        font-weight: 600;
    }

    footer ul li {
        margin-bottom: 10px;
    }

        footer ul li a {
            color: var(--secondary-color);
        }

            footer ul li a:hover {
                color: #000;
            }

/* --- MEDIA QUERIES --- */
@media (max-width: 991px) {
    /* Hakkımızda Sayfası İçin Özel Mobil Ayarlar */
    .content-img {
        height: 500px;
        margin-bottom: 40px;
    }

    .content-text {
        padding: 0;
    }

    .content-section {
        padding: 60px 0;
    }
        /* Zig-Zag mobilde sıralamayı koruması için */
        .content-section:nth-child(even) .row {
            flex-direction: column-reverse;
        }

    .navbar-collapse {
        background: rgba(0,0,0,0.95);
        padding: 20px;
        border-radius: 5px;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero-slider, .hero-slider .carousel-item {
        height: 70vh;
    }

    .header-wrapper {
        background: rgba(0,0,0,0.3);
        top: 0;
    }

    .top-announcement, .header-icons-group.left-icons {
        display: none !important;
    }

    .hover-grid-item img {
        height: 400px;
    }

    .insta-grid .col-2 {
        width: 33.33%;
    }

    .vertical-swiper .swiper-slide img {
        height: 400px;
    }

    .shop-look-section .row {
        flex-direction: column;
    }

    .shop-look-sidebar {
        padding-left: 0;
        padding-top: 40px;
    }

    .hotspot-dot {
        width: 20px;
        height: 20px;
    }

        .hotspot-dot::after {
            width: 6px;
            height: 6px;
        }

    .nav-pills-custom .nav-link {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin: 5px;
    }

    .mega-menu {
        position: relative;
        padding: 15px;
    }

    .mega-menu-img-wrapper img {
        height: 200px;
        margin-top: 10px;
    }
}


/* --- İÇ SAYFALAR İÇİN HEADER DÜZENLEMESİ (Fix) --- */
.inner-page-header {
    position: relative !important; /* Üstüne binmeyi iptal eder */
    background-color: rgb(0,0,0,0.1); /* Arka planı beyaz yapar */
    border-bottom: 1px solid #eee;
}

    /* İç sayfalarda linkleri ve ikonları siyah yap */
    .inner-page-header .nav-link,
    .inner-page-header .header-icons-group a {
        color: #000 !important;
    }

    /* İç sayfalarda dil butonunu siyah yap */
    .inner-page-header .lang-dropdown .dropdown-toggle {
        color: #000 !important;
        border-color: #ddd !important;
    }

        .inner-page-header .lang-dropdown .dropdown-toggle:hover {
            background-color: #000;
            color: #fff !important;
        }

/* --- BREADCRUMB (YOL HARİTASI) STİLLERİ --- */
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.breadcrumb-item {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    font-family: 'Lato', sans-serif;
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: "›"; /* Araya konacak işaret */
        padding: 0 10px;
        color: #ccc;
        font-size: 1.2rem;
        line-height: 1;
    }

    .breadcrumb-item a {
        color: #999;
        text-decoration: none;
        transition: 0.3s;
    }

        .breadcrumb-item a:hover {
            color: #000;
        }

    .breadcrumb-item.active {
        color: #000;
        font-weight: 700;
    }

.hero-slider .carousel-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- CONTACT PAGE SPECIFIC --- */
.page-header-banner {
    background-color: #f8f8f8;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-box {
    padding: 40px;
    background: #fff;
    border: 1px solid #eee;
    height: 100%;
}

    .contact-info-box h3 {
        margin-bottom: 30px;
        font-size: 1.5rem;
    }

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

    .info-item i {
        font-size: 1.2rem;
        margin-right: 20px;
        color: var(--accent-color);
        margin-top: 5px;
    }

    .info-item h6 {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 0.9rem;
    }

    .info-item p {
        color: #555;
        margin: 0;
        font-size: 0.9rem;
    }

.contact-form {
    padding: 40px;
    background: #fcfcfc;
}

.form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 0.9rem;
    background: #fff;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #000;
    }

.btn-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: 0.3s;
    margin-top: 20px;
}

    .btn-submit:hover {
        background: var(--accent-color);
        color: #fff;
    }

.map-section {
    margin-top: 80px;
    height: 450px;
    width: 100%;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%);
}
/* Siyah beyaz harita efekti */

/* --- ÜRÜN DETAY SAYFASI --- */

/* Küçük Görseller (Thumbnails) */
.thumbnail-active {
    opacity: 1 !important;
    border: 1px solid #000 !important;
}

.cursor-pointer {
    cursor: pointer;
    transition: opacity 0.3s;
}

    .cursor-pointer:hover {
        opacity: 1;
    }

/* Ürün Akordeon Ayarları */
#productAccordion .accordion-button {
    padding: 15px 0;
    border-bottom: 1px solid #eee; /* Her başlığın altına çizgi */
    background: transparent;
    box-shadow: none;
}

#productAccordion .accordion-item {
    border: none;
    border-radius: 0;
    background: transparent;
}

#productAccordion .accordion-button::after {
    /* İkonu sağa yasla ve küçült */
    background-size: 10px;
    margin-left: auto;
}

/* Sepete Ekle Butonu Hover */
.transition-btn {
    transition: all 0.3s ease;
}

    .transition-btn:hover {
        background-color: var(--accent-color); /* Altın/Bej renk */
        color: #fff;
        border-color: var(--accent-color);
    }

/* Beden Seçim Butonları */
.btn-check:checked + .btn-outline-dark {
    background-color: #000;
    color: #fff;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Benzer Ürünler Slider */
.relatedProductsSwiper {
    padding-bottom: 50px;
}

    .relatedProductsSwiper .swiper-button-next::after,
    .relatedProductsSwiper .swiper-button-prev::after {
        font-size: 1.5rem; /* Okları küçült */
    }


/* --- VIONCE LOADER CSS --- */
#vionce-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* Arka plan rengi */
    z-index: 99999; /* En üstte durması için */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

/* Loader İçeriği */
.loader-content {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ortadaki V Harfi */
.v-logo {
    font-family: 'Cinzel', serif; /* Projendeki font */
    font-size: 60px;
    font-weight: 600;
    color: #000; /* Siyah V */
    position: relative;
    z-index: 2;
    animation: pulse-v 2s infinite ease-in-out;
}

/* Etrafındaki Dönen Halka */
.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #000; /* Halkanın rengi */
    border-bottom-color: #e0e0e0; /* Silik kısım */
    animation: spin 1.5s linear infinite;
}

/* --- ANİMASYONLAR --- */

/* Halka Dönme Efekti */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* V Harfi Nefes Alma Efekti */
@keyframes pulse-v {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* JS ile eklenecek gizleme sınıfı */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}


/* 1. Hero Bölümü (Koleksiyon Kapağı) */
.collection-hero {
    position: relative;
    height: 60vh;
    background-image: url('../../website/images/bg01.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-overlay {
    background: rgba(255,255,255,0.7);
    padding: 40px 60px;
    text-align: center;
    border: 1px solid #000;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: #000;
    letter-spacing: 5px;
    margin: 0;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #555;
    margin-top: 15px;
}

/* 2. Filtre Çubuğu (Sticky) */
.filter-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 3. Ürün Kartı (Editorial Style) */
.product-card-editorial {
    position: relative;
    margin-bottom: 80px; /* Ürünler arası dikey boşluk */
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

    .product-card-editorial:hover {
        transform: translateY(-10px); /* Hafif yukarı kalkma */
    }

/* Görsel Alanı */
.p-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* Resim Oranı: Uzun dikey (Portrait) */
    aspect-ratio: 3 / 4.5;
    object-fit: cover;
    transition: transform 0.5s ease;
}

    .p-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s ease;
    }

/* Hoverda resim zoom yapsın */
.product-card-editorial:hover .p-image-container img {
    transform: scale(1.1);
}

.p-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /* Yarı saydam siyah bir katman */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Varsayılan olarak gizli */
    visibility: hidden;
    transition: all 0.3s ease; /* Geçiş efekti */
}

.product-card-editorial:hover .p-overlay {
    opacity: 1;
    visibility: visible;
}

.btn-inspect {
    background-color: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 25px;
    border: none;
    border-radius: 2px;
    text-transform: uppercase;
    transform: translateY(20px); /* Başlangıçta biraz aşağıda */
    transition: all 0.3s ease;
}

.product-card-editorial:hover .btn-inspect {
    transform: translateY(0); /* Yerine gelsin */
}

.btn-inspect:hover {
    background-color: #000;
    color: #fff;
}

/* Bilgi Alanı */
.p-info {
    text-align: center;
    padding-top: 20px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.p-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 5px;
}

.p-price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem !important;
    color: #555;
    font-weight: 500;
}

/* "Sepete Ekle" Butonu (Gizli, Hoverda Çıkar) */
.quick-add-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0;
    transition: all 0.4s ease;
}

/* Hover olunca buton görünsün */
.p-image-container:hover .quick-add-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ÜRÜN KARTI BOYUT AYARI */
.product-card-editorial {
    position: relative;
    margin-bottom: 60px; /* Boşluğu biraz azalttık */
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Görsel Alanı - Biraz daha dik (Portrait) oran */
.p-image-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4.5; /* İdeal elbise oranı */
}

    .p-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Resmi kutuya sığdır */
        transition: transform 1.2s ease;
    }

/* Hover Efekti */
.product-card-editorial:hover .p-image-container img {
    transform: scale(1.08); /* Hafif zoom */
}

/* --- LAYOUT YAPISI --- */
.catalog-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* SOL FİLTRE MENÜSÜ (Sticky) */
.filter-sidebar {
    position: sticky;
    top: 20px;
    padding-right: 30px;
    border-right: 1px solid #eee;
    height: fit-content;
}

.filter-group {
    margin-bottom: 35px;
}

.filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* Checkbox Tasarımı */
.custom-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: color 0.3s;
}

    .custom-check:hover {
        color: #000;
    }

    .custom-check input {
        display: none;
    }

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid #ccc;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s;
}

.custom-check input:checked + .checkmark {
    background-color: #000;
    border-color: #000;
}

    .custom-check input:checked + .checkmark::after {
        content: '✔';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        font-size: 10px;
    }

/* RENK FİLTRESİ */
.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    position: relative;
    transition: transform 0.2s;
}

    .color-circle:hover {
        transform: scale(1.1);
    }

    .color-circle.active::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border: 1px solid #000;
        border-radius: 50%;
    }

/* BEDEN FİLTRESİ */
.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-box {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

    .size-box:hover, .size-box.active {
        background: #000;
        color: #fff;
        border-color: #000;
    }

/* FİYAT SLIDER */
.price-slider-wrapper {
    padding: 10px 5px;
}

.slider-track {
    height: 4px;
    background: #eee;
    position: relative;
    border-radius: 2px;
}

.slider-range {
    height: 100%;
    background: #000;
    position: absolute;
}

.slider-input {
    position: absolute;
    top: -5px;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

    .slider-input::-webkit-slider-thumb {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        background: #fff;
        border: 4px solid #000;
        pointer-events: auto;
        -webkit-appearance: none;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ÜST SIRALAMA VE ÜRÜN KARTLARI */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sort-select {
    border: none;
    background: transparent;
    font-family: 'Inter';
    font-size: 0.9rem;
    cursor: pointer;
    outline: none;
    text-align: right;
}

/* --- ÖZEL AÇILIR MENÜ (CUSTOM DROPDOWN) TASARIMI --- */
.custom-sort-container {
    position: relative;
    display: inline-block;
    min-width: 130px;
    user-select: none;
}

.custom-sort-selected {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 0;
    display: flex;
    justify-content: flex-end; /* Sağa yaslı görünüm için */
    align-items: center;
    transition: color 0.3s;
}

    .custom-sort-selected:hover {
        color: #777;
    }

    .custom-sort-selected i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

/* Menü açıldığında oku ters çevir */
.custom-sort-container.open .custom-sort-selected i {
    transform: rotate(180deg);
}

.custom-sort-options {
    position: absolute;
    top: 100%;
    right: 0; /* Menüyü sağa hizalar */
    background: #fff;
    min-width: 160px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Çok hafif, şık bir gölge */
    border: 1px solid #f0f0f0;
    z-index: 100;
    list-style: none;
    padding: 8px 0;
    margin: 5px 0 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.custom-sort-container.open .custom-sort-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-sort-options li {
    padding: 10px 20px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    color: #555;
    transition: background 0.2s, color 0.2s;
    text-align: right;
}

    /* O rahatsız edici mavi yerine VIONCE ruhuna uygun çok uçuk gri hover efekti */
    .custom-sort-options li:hover {
        background-color: #f9f9f9;
        color: #000;
    }

    .custom-sort-options li.active {
        font-weight: 600;
        color: #000;
        background-color: #fbfbfb;
    }