/* V6 Redesign Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --v6-bg: #FFFFFF;
    --v6-text: #000000;
    --v6-gray-light: #F5F5F5;
    --v6-gray: #E0E0E0;
    --v6-blue: #1877F2;
    --v6-red: #E60000;
    --v6-font: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--v6-bg);
    color: var(--v6-text);
    font-family: var(--v6-font);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* 1. Header Redesign */
.v6-top-bar {
    background-color: #faf9f6;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.v6-marquee-container {
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}
.v6-marquee {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee-scroll 40s linear infinite;
}
.v6-marquee-container:hover .v6-marquee {
    animation-play-state: paused;
}
.v6-marquee-item {
    font-size: 17px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
    padding: 0 5px;
}
.v6-marquee-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -15%;
    width: 130%;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15' preserveAspectRatio='none'%3E%3Cpath d='M1,12 C15,2 35,16 55,6 S85,16 99,8' stroke='%23ff0000' stroke-width='8' stroke-linecap='round' fill='transparent'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.v6-marquee-item:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.v6-marquee-item i {
    font-size: 18px;
}
.v6-marquee-dot {
    margin: 0 40px;
    color: #999;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.v6-main-header {
    background: #fff;
    padding: 20px 0;
}
.v6-header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 4%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.v6-header-left {
    flex: 1;
    display: flex;
    align-items: center;
}
.v6-header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}
.v6-header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Search Box */
.v6-search-box {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 10px 15px;
    width: 250px;
}
.v6-search-box input {
    border: none;
    background: transparent;
    outline: none;
    margin-left: 10px;
    font-family: var(--v6-font);
    font-size: 14px;
    width: 100%;
}
.v6-search-box input::placeholder {
    color: #999;
}

/* Header Actions */
.v6-header-actions {
    display: flex;
    gap: 30px;
}
.v6-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    gap: 5px;
    transition: color 0.3s;
}
.v6-action-item:hover {
    color: #b8865d;
}
.v6-action-item i {
    font-size: 20px;
}
.v6-action-item span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Removed Nav Bar and Announcement Bar */

/* Mobile/Desktop Icon Settings */
.v6-mobile-menu-icon {
    display: block; /* now visible on desktop because nav is removed */
    font-size: 24px;
    cursor: pointer;
    margin-right: 20px;
}
.v6-mobile-cart-icon {
    display: none;
    position: relative;
    cursor: pointer;
    font-size: 24px;
}
.v6-cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--v6-text);
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Media Query for Header */
@media (max-width: 1024px) {
    .v6-search-box, .v6-header-actions {
        display: none;
    }
    .v6-mobile-cart-icon {
        display: block;
    }
    .v6-main-header {
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid var(--v6-gray);
    }
}

/* Sidebar */
.v6-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
}
.v6-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}
.v6-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 2001;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
    padding: 20px 30px;
    box-sizing: border-box;
    overflow-y: auto;
}
.v6-sidebar.active {
    left: 0;
}
.v6-sidebar-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 10px;
}
.v6-sidebar-close {
    font-size: 14px;
    cursor: pointer;
    color: #007bff;
    border: 1px solid #e0f0ff;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.v6-sidebar-close:hover {
    background: #e0f0ff;
}
.v6-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.v6-sidebar-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 700;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease;
}
.v6-sidebar-nav a:hover {
    color: #555;
}
.v6-sidebar-nav a i {
    font-size: 14px;
    color: #ccc;
}

/* 3. Hero */
.v6-hero {
    width: 100%;
    height: 600px;
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}
.v6-hero-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}
.v6-hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    animation: v6-kenburns 15s ease-out infinite alternate;
}
.v6-slider-prev, .v6-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    color: #000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v6-slider-prev:hover, .v6-slider-next:hover {
    background: #fff;
}
.v6-slider-prev {
    left: 20px;
}
.v6-slider-next {
    right: 20px;
}
@keyframes v6-kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.v6-hero-overlay {
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    background: rgba(0,0,0,0.35); /* Slight dark overlay */
}
.v6-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff; /* White text */
}
.v6-hero-subtitle, .v6-hero-title, .v6-countdown, .v6-btn-hero {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}
.v6-hero-slide.active .v6-hero-subtitle { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.v6-hero-slide.active .v6-hero-title { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.v6-hero-slide.active .v6-countdown { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.v6-hero-slide.active .v6-btn-hero { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }
.v6-hero-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}
.v6-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}
.v6-hero-title span {
    background: #fff;
    color: #000;
    padding: 0 15px;
    display: inline-block;
    margin-bottom: 8px;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
}
.v6-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}
.v6-cd-item {
    text-align: center;
}
.v6-cd-item span {
    font-size: 48px;
    font-weight: 800;
    display: block;
    color: #fff;
}
.v6-cd-item p {
    font-size: 12px;
    margin: 0;
    letter-spacing: 2px;
    font-weight: 700;
    color: #eee;
}
.v6-cd-sep {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    transform: translateY(-10px);
}
.v6-btn-hero {
    background: #fff;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #fff;
}
.v6-btn-hero:hover {
    background: transparent;
    color: #fff;
}

/* 3.5 Features Info Box - High Fashion Brutalist */
.v6-features-info {
    max-width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background: #fff;
    padding: 0;
    margin-bottom: 40px;
}
.v6-features-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}
.v6-feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 30px;
    border-right: 1px solid #000;
    position: relative;
    overflow: hidden;
    color: #000;
    transition: color 0.4s ease;
    cursor: default;
    z-index: 1;
}
.v6-feature-item:last-child {
    border-right: none;
}
.v6-feature-item::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transition: top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}
.v6-feature-item:hover::before {
    top: 0;
}
.v6-feature-item:hover {
    color: #fff;
}
.v6-feature-icon-box {
    font-size: 32px;
    margin-right: 25px;
    color: currentColor;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.v6-feature-item:hover .v6-feature-icon-box {
    transform: scale(1.1) translateY(-3px);
}
.v6-feature-content h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 800;
    color: currentColor;
    font-family: var(--v6-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.v6-feature-content p {
    margin: 0;
    font-size: 13px;
    color: currentColor;
    opacity: 0.8;
    line-height: 1.5;
    font-family: var(--v6-font);
}
@media (max-width: 900px) {
    .v6-features-wrapper {
        flex-direction: column;
    }
    .v6-feature-item {
        border-right: none;
        border-bottom: 1px solid #000;
        padding: 30px 20px;
    }
    .v6-feature-item:last-child {
        border-bottom: none;
    }
}

/* 4. Collections */
.v6-collections {
    padding: 60px 4% 60px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
}
.v6-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: #000000;
}
.v6-title-large {
    font-size: 64px;
    letter-spacing: -3px;
    margin-bottom: 50px;
    color: #000000;
}

/* Shine / Light-leak animation on KOLEKSIYONLAR title */
@keyframes textShine {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
.v6-shine-text {
    background: linear-gradient(
        105deg,
        #000 0%,
        #000 35%,
        #fff 50%,
        #000 65%,
        #000 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 3s linear infinite;
}

/* Collections viewport + auto-scroll track */
.v6-collections-viewport {
    overflow: hidden;
    width: 100%;
}
.v6-collections-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    will-change: transform;
}
.v6-carousel-card {
    min-width: 320px !important;
    flex-shrink: 0 !important;
    height: 450px !important;
    min-height: 450px !important;
    max-height: 450px !important;
    border-radius: 24px !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: box-shadow 0.4s ease !important;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.v6-carousel-card:hover {
    transform: none;
    box-shadow:
        inset 0 0 0 3px rgba(0,0,0,0.6),
        inset 0 40px 80px rgba(0,0,0,0.5),
        inset 0 -40px 80px rgba(0,0,0,0.5),
        0 20px 50px rgba(0,0,0,0.3) !important;
    z-index: 10;
}
.v6-carousel-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}
.v6-carousel-card:hover .v6-carousel-bg {
    transform: scale(1.18);
}

/* Light leak / shine sweep effect */
.v6-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255, 255, 255, 0.18) 40%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.18) 60%,
        transparent 80%
    );
    transform: skewX(-15deg);
    z-index: 4;
    pointer-events: none;
    transition: none;
    opacity: 0;
}
.v6-carousel-card:hover::before {
    animation: carouselLightLeak 0.65s ease-out forwards;
    opacity: 1;
}
@keyframes carouselLightLeak {
    0%   { left: -75%; opacity: 1; }
    100% { left: 130%;  opacity: 0.8; }
}

/* Dark overlay — tüm kartlarda hafif siyah, hover'da kalkıyor */
.v6-carousel-dark-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
    transition: opacity 0.45s ease;
    pointer-events: none;
    border-radius: inherit;
}
.v6-carousel-card:hover .v6-carousel-dark-overlay {
    opacity: 0;
}

.v6-carousel-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    z-index: 2;
}
.v6-carousel-text {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    position: relative;
    z-index: 3;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: letter-spacing 0.3s ease;
}
.v6-carousel-card:hover .v6-carousel-text {
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .v6-title-large {
        font-size: 40px;
        letter-spacing: -1px;
    }
    .v6-carousel-card {
        min-width: 260px !important;
        height: 360px !important;
        min-height: 360px !important;
        max-height: 360px !important;
        border-radius: 20px !important;
    }
}

/* 4.5. Promo Video Banner */
.v6-video-banner {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.v6-video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.v6-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none; /* Make iframe unclickable to prevent play/pause interactions */
}
.v6-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7); /* White effect with 70% opacity, making background look 30% opaque */
    z-index: 1;
    pointer-events: auto; /* Block clicks from passing to iframe */
}
.v6-video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #000;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.v6-video-subtitle {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 8px;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    color: #000;
    font-family: var(--v6-font);
}
.v6-video-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 4px;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    color: #000;
    font-family: var(--v6-font);
}
.v6-video-btn {
    display: inline-block;
    background: transparent;
    color: #000;
    padding: 16px 45px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 0; /* Boxy aesthetic */
    letter-spacing: 2px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}
.v6-video-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .v6-video-banner {
        height: 300px;
    }
    .v6-video-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
    }
    .v6-video-title {
        font-size: 40px;
        margin-bottom: 25px;
        -webkit-text-stroke: 1px #fff;
    }
    .v6-video-btn {
        padding: 12px 25px;
        font-size: 12px;
    }
}

/* 5. Best Sellers */
.v6-bestsellers {
    padding: 40px 4% 80px;
    max-width: 100%;
    margin: 0 auto;
    background: #FAF9F6;
    border-radius: 20px;
    box-sizing: border-box;
}
.v6-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.v6-filter-active-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 34px;
    background: #000;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    opacity: 0; /* Hidden until initialized by JS */
}
.v6-filter-btn {
    background: var(--v6-gray-light);
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
    color: #000;
    cursor: pointer;
    transition: color 0.3s, background 0.3s;
    position: relative;
    z-index: 1;
}
.v6-filter-btn.active {
    background: transparent;
    color: #fff;
}
.v6-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transition: opacity 0.4s ease;
    opacity: 1;
}
.v6-product-card {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    position: relative;
    text-align: center;
    box-shadow: none;
    border: 1px solid var(--v6-gray);
    transition: box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.v6-product-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.v6-product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}
.v6-badge-discount {
    background: #000;
    color: #fff;
    font-weight: 800;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 6px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
}
.v6-product-card:hover .v6-badge-discount {
    opacity: 1;
}
.v6-badge-rating {
    background: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border: 1px solid #eee;
}
.v6-product-brand {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    position: relative;
    z-index: 6;
}
.v6-product-info {
    padding: 20px;
    background: #fff;
    position: relative;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.v6-product-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
    text-align: center;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5;
}
.v6-product-desc {
    font-size: 16px;
    color: #555;
    margin: 5px 0 10px;
    display: none; /* simple design */
}
.v6-product-price {
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}
.v6-product-price .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}
.v6-product-price .new-price {
    font-size: 16px;
    font-weight: 800;
    color: #000;
}
.v6-product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
}
.v6-product-rating-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    opacity: 1;
    transition: none;
    white-space: nowrap;
}
.v6-product-rating-overlay i {
    color: #FFC107;
    font-size: 10px;
}
.v6-product-image-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.v6-product-img {
    flex: 0 0 100%;
    height: 100%;
    object-fit: cover;
}
.v6-product-card:hover .v6-product-image-slider {
    /* Controlled by JS mouse tracking */
}

/* === Image Dots Indicator === */
.v6-img-dots {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 11;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.v6-product-card:hover .v6-img-dots {
    opacity: 1;
}
.v6-img-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}
.v6-img-dot.active {
    background: #fff;
    height: 22px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* === Ürünü İncele Butonu (görsel içinde, yıldız kutusunun üstünde) === */
.v6-product-action {
    position: absolute;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    z-index: 12;
    width: auto;
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}
.v6-product-card:hover .v6-product-action {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.v6-product-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.93);
    color: #000;
    padding: 7px 16px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, gap 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    border: none;
    font-family: var(--v6-font);
    text-decoration: none;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.v6-product-view-btn:hover {
    background: #000;
    color: #fff;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}
.v6-hover-action {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 5;
}
.v6-product-card:hover .v6-hover-action {
    opacity: 1;
}
.v6-btn-view {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 0;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}
.v6-btn-view:hover {
    background: var(--v6-blue);
}
.v6-product-footer-label {
    padding: 20px;
    background: #fff;
    position: relative;
    z-index: 6;
    border-top: 1px solid var(--v6-gray);
}



/* 6. FAQ Section */
.v6-faq-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.v6-faq-container {
    background: #fff;
    border: 1px solid var(--v6-gray);
    border-radius: 15px;
    padding: 40px 60px;
}
.v6-faq-item {
    border-bottom: 1px solid var(--v6-gray);
}
.v6-faq-item:last-child {
    border-bottom: none;
}
.v6-faq-question {
    padding: 20px 0;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.v6-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.v6-faq-item.active .v6-faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}
.v6-faq-question i {
    transition: transform 0.3s;
}
.v6-faq-item.active .v6-faq-question i {
    transform: rotate(45deg);
}

/* Media Queries */
@media (max-width: 1024px) {
    .v6-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .v6-hero-title {
        font-size: 32px;
    }
    .v6-cd-item span {
        font-size: 32px;
    }
    .v6-products-grid {
        grid-template-columns: 1fr;
    }
    .v6-faq-container {
        padding: 10px 20px;
    }
}

/* Lazy Load Scroll Animations */
.v6-fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.v6-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mega Menu Item Animations */
@keyframes slideInLeftMenu {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}
.v6-sidebar-nav a {
    opacity: 0;
}
.v6-sidebar.active .v6-sidebar-nav a {
    animation: slideInLeftMenu 0.5s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}
.v6-sidebar.active .v6-sidebar-nav a:nth-child(1) { animation-delay: 0.1s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(2) { animation-delay: 0.15s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(3) { animation-delay: 0.2s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(4) { animation-delay: 0.25s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(5) { animation-delay: 0.3s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(6) { animation-delay: 0.35s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(7) { animation-delay: 0.4s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(8) { animation-delay: 0.45s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(9) { animation-delay: 0.5s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(10) { animation-delay: 0.55s; }
.v6-sidebar.active .v6-sidebar-nav a:nth-child(11) { animation-delay: 0.6s; }

/* Mobile Logo Fix */
@media (max-width: 768px) {
    .v6-logo img,
    .logo img {
        height: 38px !important;
        width: auto !important;
        max-width: 200px !important;
        object-fit: contain !important;
        transform: none !important;
    }
}
