/* ==========================================================
   TEMA DÜZENLEYİCİ ALTERNATİF STİL CSS KODLARI (STİL 2 & 3)
   ========================================================== */

/* Slider v2 (Luxury Asymmetric Split) */
.slider-v2 {
    position: relative;
    background: #fdfdfc;
    overflow: hidden;
    width: 100%;
}

.v2-container {
    display: flex;
    align-items: center;
    height: 85vh;
    min-height: 550px;
    width: 100%;
}

.v2-content {
    flex: 1;
    padding: 8% 5% 8% 10%;
    z-index: 5;
    background: #fdfdfc;
    /* Clean text separator */
}

.v2-text-box {
    max-width: 500px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.2s;
}

.v2-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-color, #b85b41);
    margin-bottom: 15px;
    font-weight: 700;
}

.v2-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 0.95;
    color: #111;
    margin-bottom: 25px;
}

.v2-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 35px;
    font-family: 'Inter', sans-serif;
}

.v2-btn {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none !important;
    position: relative;
    padding-bottom: 5px;
}

.v2-btn-line {
    background: #1a1a1a;
    height: 1.5px;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    transition: width 0.3s ease;
}

.v2-btn:hover .v2-btn-line {
    width: 50%;
}

/* Media/Visual Side */
.v2-media {
    flex: 1.2;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfdfc;
}

.v2-bg-frame {
    width: 70%;
    height: 80%;
    border: 1px solid rgba(184, 91, 65, 0.15);
    position: absolute;
    top: 10%;
    left: 15%;
    z-index: 1;
    border-radius: 4px;
}

.v2-main-image {
    width: 60%;
    height: 75%;
    background-size: cover;
    background-position: center;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: scale(0.95);
    opacity: 0;
    animation: scaleIn 0.9s ease forwards 0.3s;
    border-radius: 3px;
    overflow: hidden; /* Added to clip video border radius */
}

.v2-main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-float-image {
    width: 35%;
    height: 45%;
    position: absolute;
    bottom: 12%;
    left: 10%;
    background-size: cover;
    background-position: center;
    z-index: 3;
    border: 8px solid #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.8s ease forwards 0.6s;
    border-radius: 2px;
}

/* Keyframes */
@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 991px) {
    .v2-container {
        flex-direction: column-reverse;
        height: auto;
    }

    .v2-content {
        flex: none;
        width: 100%;
        text-align: center;
        padding: 40px 20px;
    }

    .v2-text-box {
        margin: 0 auto;
    }

    .v2-media {
        flex: none;
        width: 100%;
        height: 450px;
        padding: 20px;
    }

    .v2-bg-frame {
        display: none;
    }

    .v2-main-image {
        width: 80%;
        height: 100%;
    }

    .v2-float-image {
        width: 45%;
        height: 60%;
        left: 5%;
        bottom: 5%;
    }
}

/* Slider v3 (Cinematic Immersive Frame) */
.slider-v3 {
    height: 85vh !important;
    max-height: 800px;
    background: #000;
}

.slider-v3-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.12);
    /* Başlangıçta hafif zoom */
    transition: transform 2s cubic-bezier(0.1, 1, 0.1, 1);
    z-index: 1;
}

.v3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.v3-frame {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 600px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInSlide 1s ease forwards 0.2s;
}

.v3-season {
    display: block;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ca955a;
    margin-bottom: 20px;
    font-weight: 700;
}

.v3-heading {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
}

.v3-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 450px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
    font-weight: 300;
    font-family: 'Inter', sans-serif;
}

.v3-btn {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #111111;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.v3-btn:hover {
    background: #ca955a;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Floating Corner Elements */
.v3-corner-left {
    position: absolute;
    bottom: 35px;
    left: 45px;
    z-index: 6;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.v3-geo-line {
    width: 35px;
    height: 1px;
    background: #ca955a;
    display: inline-block;
}

/* Slide active animations */
.swiper-slide-active .v3-bg {
    transform: scale(1);
    /* Slide aktif olunca zoom normalleşsin */
}

@keyframes fadeInSlide {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .v3-frame {
        padding: 30px 20px;
        max-width: 90%;
    }

    .v3-corner-left {
        display: none;
    }
}

/* About v2 (Heritage Overlap Story) */
.about-v2 {
    position: relative;
    padding: 100px 0;
    background: #fdfcf9 !important;
    /* Ivory background */
    overflow: hidden;
    width: 100%;
}

/* Sol Görsel Kompozisyon */
.v2-story-bg-text {
    position: absolute;
    top: -40px;
    left: -40px;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(184, 91, 65, 0.04);
    z-index: 1;
    font-family: 'Inter', sans-serif;
    letter-spacing: -6px;
    user-select: none;
}

.v2-about-images {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 2;
}

.v2-about-img-main {
    width: 65%;
    height: 450px;
    position: absolute;
    top: 0;
    right: 5%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.v2-about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.5s ease-out;
}

.v2-about-img-main:hover img {
    transform: scale(1.04);
}

.v2-about-img-sub {
    width: 45%;
    height: 300px;
    position: absolute;
    bottom: -20px;
    left: 4%;
    border-radius: 4px;
    overflow: hidden;
    border: 10px solid #fdfcf9;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.v2-about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}

/* Sağ İçerik */
.v2-about-content {
    padding-left: 6%;
}

.v2-about-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-color, #b85b41);
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.v2-about-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    line-height: 1.02;
    margin-bottom: 25px;
    color: #111;
}

.v2-about-title em {
    font-style: italic;
    color: #b85b41;
}

.v2-about-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
    border-left: 2px solid #ca955a;
    padding-left: 20px;
    font-family: 'Inter', sans-serif;
}

.v2-about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

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

.v2-feature-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: #ca955a;
    line-height: 1;
}

.v2-feature-item h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #111;
}

.v2-feature-item p {
    font-size: 13px;
    color: #777;
    margin-bottom: 0;
}

.v2-about-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.v2-founder-sig {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-style: italic;
    color: #222;
    letter-spacing: 1.2px;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .v2-about-images {
        height: 400px;
        margin-bottom: 60px;
    }

    .v2-story-bg-text {
        font-size: 10rem;
        top: -10px;
    }

    .v2-about-content {
        padding-left: 0;
    }
}

/* About v3 (Cinematic Glassmorphism Grid) */
.about-v3 {
    position: relative;
    padding: 120px 0;
    width: 100%;
    min-height: 600px;
    background: #000;
    overflow: hidden;
}

.v3-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax hold */
    z-index: 1;
}

.v3-about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.v3-glass-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 60px 40px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.v3-eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ca955a;
    margin-bottom: 20px;
    font-weight: 700;
}

.v3-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(2.8rem, 4vw, 4rem);
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 25px;
}

.v3-title span {
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #ca955a;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    display: block;
}

.v3-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.v3-stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.v3-stat {
    text-align: center;
}

.v3-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.v3-stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.v3-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff !important;
    border: 1px solid #ffffff;
    padding: 11px 28px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.v3-btn:hover {
    background: #ffffff;
    color: #000000 !important;
}

@media (max-width: 576px) {
    .v3-glass-panel {
        padding: 40px 20px;
    }

    .v3-stats-grid {
        gap: 20px;
    }
}

/* About v3 (Glassmorphism layout) */
.about-v3 .glass-morphism {
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.about-v3 .ls-3 {
    letter-spacing: 4px;
}

/* Categories v2 (Bento Grid Composition) */
.categories-v2 {
    width: 100%;
    position: relative;
    background: transparent;
}

.v2-bento-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none !important;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.v2-bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
    z-index: 1;
}

.v2-bento-overlay {
    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.1) 60%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    transition: background 0.4s;
}

.v2-bento-content {
    position: relative;
    z-index: 5;
    padding: 30px;
    width: 100%;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.v2-bento-card:hover .v2-bento-bg {
    transform: scale(1.06);
}

.v2-bento-card:hover .v2-bento-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.v2-bento-card:hover .v2-bento-content {
    transform: translateY(0);
}

.v2-bento-tag {
    display: inline-block;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 8px;
    backdrop-filter: blur(2px);
}

.v2-bento-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.v2-bento-btn {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.8;
}

.v2-bento-large {
    height: 500px;
}

.v2-bento-small {
    height: 242px;
}

@media (max-width: 768px) {
    .v2-bento-large {
        height: 350px;
    }
}

/* Categories v3 (Interactive Accordion Matrix) */
.categories-v3 {
    width: 100%;
    background: transparent;
}

.v3-accordion-wrapper {
    display: flex;
    overflow: hidden;
    height: 420px;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.v3-accordion-item {
    flex: 1;
    overflow: hidden;
    position: relative;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.4, 1);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.v3-accordion-item:last-child {
    border-right: 0;
}

.v3-accordion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    transition: opacity 0.4s;
}

.v3-accordion-content {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
    z-index: 5;
    color: #ffffff;
    opacity: 0.8;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
}

.v3-accordion-tag {
    font-size: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ca955a;
    display: block;
    margin-bottom: 5px;
}

.v3-accordion-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 15px;
    white-space: nowrap;
}

.v3-accordion-btn {
    display: inline-block;
    background: #ffffff;
    color: #111;
    font-size: 9px;
    font-weight: 800;
    padding: 6px 15px;
    border-radius: 50px;
    text-decoration: none !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s ease 0.2s;
}

/* Hover Expanding effect */
.v3-accordion-item:hover {
    flex: 2.5;
}

.v3-accordion-item:hover .v3-accordion-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.v3-accordion-item:hover .v3-accordion-content {
    opacity: 1;
    transform: translateY(0);
}

.v3-accordion-item:hover .v3-accordion-btn {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 767px) {
    .v3-accordion-wrapper {
        flex-direction: column;
        height: auto;
    }

    .v3-accordion-item {
        height: 200px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .v3-accordion-item:hover {
        flex: none;
        height: 280px;
    }
}

/* Bestsellers v2 (Spotlight Sidebar) */
.bestsellers-v2 { width: 100%; position: relative; }
.bestsellers-v2 .row {
    display: flex !important;
    flex-wrap: wrap !important;
}
@media (min-width: 768px) {
    .bestsellers-v2 .col-md-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
    .bestsellers-v2 .col-md-8 {
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
    .bestsellers-v2 .col-md-8 .col-6 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}
@media (max-width: 767px) {
    .bestsellers-v2 .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

.v2-bestseller-intro {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    height: 100%; /* Forces box to expand side-by-side with taller products grid */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(184, 91, 65, 0.05);
}

.v2-bestseller-sidebtn {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff !important;
    background: #111; /* Luxury button accent */
    border-radius: 4px;
    padding: 12px 25px;
    text-decoration: none !important;
    position: relative;
    width: max-content;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.v2-bestseller-sidebtn:hover {
    background: #b85b41;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 91, 65, 0.2);
}

.v2-bestseller-sidebtn i {
    transition: transform 0.3s;
}

.v2-bestseller-sidebtn:hover i {
    transform: translateX(5px);
}

.v2-best-card {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1), box-shadow 0.4s;
    border: 1px solid rgba(184, 91, 65, 0.04);
}

.v2-best-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 20px 45px rgba(184, 91, 65, 0.08); 
}

.v2-best-img {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 5.2; /* Consistent height matching for absolute aspect rule */
    position: relative;
    background: #fdfcf9;
}

.v2-best-img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.6s;
}

.v2-best-card:hover .v2-best-img img {
    transform: scale(1.04);
}

.v2-best-info {
    padding: 15px 10px;
    text-align: center;
}

.v2-best-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 18px;
}

.v2-best-price {
    font-size: 12px;
    color: #ca955a;
    font-weight: 700;
}

/* Bestsellers v3 (Cinematic Wide Overlay) */
.bestsellers-v3 { width: 100%; position: relative; }
.bestsellers-v3 .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-right: -10px !important;
    margin-left: -10px !important;
    justify-content: center !important;
}
.bestsellers-v3 .col-6 {
    flex: 0 0 25% !important; /* Forces 4 per row layout */
    max-width: 25% !important;
    padding: 10px !important;
}

@media (max-width: 768px) {
    .bestsellers-v3 .col-6 {
        flex: 0 0 50% !important; /* 2 per row on mobile */
        max-width: 50% !important;
    }
}

.v3-best-card {
    display: block;
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    text-decoration: none !important;
    width: 100%;
}

.v3-best-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: opacity 0.4s;
}

.v3-best-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 5;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.v3-best-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 5px;
}

.v3-best-price {
    color: #ca955a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.v3-best-btn {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 800;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 3px;
    opacity: 0;
    transition: opacity 0.3s;
}

.v3-best-card:hover .v3-best-overlay {
    opacity: 0.95;
}

.v3-best-card:hover .v3-best-content {
    transform: translateY(-10px);
}

.v3-best-card:hover .v3-best-btn {
    opacity: 1;
}

@media (max-width: 768px) {
    .v3-best-card {
        height: 280px;
    }
}

/* Testimonials v2 (Premium Overlapping Card Slider) */
.v2-testi-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin: 40px 10px 20px;
    /* Üstteki avatarın taşması için boşluk */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
}

.v2-testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.v2-testi-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #eee;
    z-index: 5;
}

.v2-testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v2-testi-content {
    padding-top: 15px;
    position: relative;
}

.v2-testi-quote {
    font-size: 24px;
    color: rgba(202, 149, 90, 0.15);
    display: block;
    margin-bottom: 15px;
}

.v2-testi-text {
    font-style: italic;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.v2-testi-footer {
    border-top: 1px solid #f2ece4;
    padding-top: 15px;
}

.v2-testi-stars {
    font-size: 11px;
    color: #f39c12;
    margin-bottom: 5px;
}

.v2-testi-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.v2-testi-tag {
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ca955a;
    font-weight: 600;
}

/* Testimonials v3 (Visual Bubble Center Slider) */
.reviewsSwiperV3 {
    padding: 50px 0;
}

.v3-gold-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    width: 100%;
    max-width: 380px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s;
    text-align: center;
    border: 1px solid rgba(202, 149, 90, 0.08);
    /* Subtle Gold border */
}

.v3-gold-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 25px 55px rgba(202, 149, 90, 0.08);
}

.v3-gold-quote {
    font-size: 30px;
    color: rgba(202, 149, 90, 0.2);
    display: block;
    margin-bottom: 20px;
}

.v3-gold-text {
    font-size: 15px;
    color: #444;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 80px;
}

.v3-gold-footer {
    border-top: 1px solid rgba(202, 149, 90, 0.08);
    padding-top: 20px;
}

.v3-gold-stars {
    font-size: 10px;
    color: #ca955a;
    margin-bottom: 8px;
}

.v3-gold-name {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.v3-gold-tag {
    font-size: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}

/* Background floating glow behind card inside section */
.v3-testi-bg-overlay {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(202, 149, 90, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    transform: translateX(-50%);
    border-radius: 50%;
}

@media (max-width: 1200px) {
    .v3-gold-card {
        max-width: 320px;
    }
}

/* Last Added v2 (Standard Slider Carousel) */
.v2-added-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.v2-added-card:hover {
    transform: translateY(-4px);
}

.v2-added-img {
    display: block;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.v2-added-img img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.5s;
}

.v2-added-card:hover .v2-added-img img {
    transform: scale(1.04);
}

.v2-added-info {
    padding: 20px;
}

.v2-added-tag {
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ca955a;
    letter-spacing: 1px;
}

.v2-added-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 5px 0 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.v2-added-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f2f2f2;
    padding-top: 15px;
}

.v2-added-price {
    font-weight: 700;
    color: #b85b41;
    font-size: 13px;
}

.v2-added-buy {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    cursor: pointer;
    transition: background 0.2s;
}

.v2-added-card:hover .v2-added-buy {
    background: #ca955a;
}

/* Last Added v3 (Infinite Scroll Frame Tile Matrix) */
.v3-added-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.v3-masonry-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(25% - 15px);
    transition: flex 0.5s ease;
}

.v3-masonry-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none !important;
}

.v3-masonry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.v3-masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.v3-masonry-content {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 5;
    color: #ffffff;
}

.v3-masonry-date {
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.v3-masonry-title {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.5rem;
    margin-top: 5px;
}

.v3-masonry-price {
    font-size: 13px;
    color: #ca955a;
    font-weight: 700;
}

.v3-masonry-item:hover .v3-masonry-bg {
    transform: scale(1.05);
}

/* Sizes config for items */
.v3-masonry-tall {
    height: 400px;
}

.v3-masonry-standard {
    height: 350px;
}

@media (max-width: 991px) {
    .v3-masonry-item {
        flex: 1 1 calc(50% - 15px);
    }

    .v3-masonry-tall,
    .v3-masonry-standard {
        height: 300px;
    }
}

/* --- Listeleme Sayfası & Filtreler (Premium) --- */
.pd-listing-page {
    background-color: #fcfcfc;
}

.pd-filter-card {
    transition: all 0.3s ease;
}

.pd-filter-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

.hover-translate {
    transition: transform 0.3s ease, color 0.3s ease;
}

.hover-translate:hover {
    transform: translateX(5px);
    color: var(--primary-color) !important;
}

/* Price Slider Premium Style */
.pd-price-slider-wrap {
    height: 5px;
    position: relative;
    background: #eee;
    border-radius: 5px;
    margin: 30px 0;
}

.pd-slider-track {
    height: 100%;
    position: absolute;
    background: #000;
    border-radius: 5px;
    left: 0;
    width: 100%;
}

.pd-price-slider-wrap input[type="range"] {
    position: absolute;
    width: 100%;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    background: none;
    outline: none;
    margin: 0;
    top: 0;
}

.pd-price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #000;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: auto;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

/* Premium Card V2 */
.pd-card-v2 {
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.pd-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
}

.pd-card-img-wrap {
    background: #f5f5f5;
    overflow: hidden;
}

.pd-card-main-img {
    transition: transform 0.6s ease;
}

.pd-card-v2:hover .pd-card-main-img {
    transform: scale(1.08);
}

.pd-card-v2:hover .pd-card-cart-btn {
    opacity: 1 !important;
    transform: translateY(0);
}

.pd-card-save-btn {
    transition: all 0.3s ease;
    z-index: 5;
}

.pd-card-save-btn:hover {
    background: #000 !important;
    color: #fff !important;
}

/* List View Premium Style */
.pd-list-item {
    transition: all 0.3s ease;
    background: #fff;
}

.pd-list-item:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.08) !important;
}

.pd-list-img img {
    transition: transform 0.5s ease;
}

.pd-list-item:hover .pd-list-img img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .pd-list-item {
        flex-direction: column;
    }
    .pd-list-img {
        width: 100% !important;
        height: 250px;
    }
}

/* --- PRODUCT DETAIL LAYOUTS (ULTRA PREMIUM) --- */

/* --- LUXURY UTILITIES --- */
.hover-dark:hover { color: #000 !important; }
.transition-transform { transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.extra-row { transition: background 0.3s; }
.extra-row:hover { background-color: #fafafa; }

/* V1: Classic Layout */
.pd-layout-v1 .product-gallery {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.pd-layout-v1 .gallery-thumbs {
    width: 90px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pd-layout-v1 .gallery-thumbs .thumb {
    cursor: pointer;
    border: 1px solid #eee;
    padding: 3px;
    transition: 0.3s;
    border-radius: 4px;
    overflow: hidden;
}
.pd-layout-v1 .gallery-thumbs .thumb:hover {
    border-color: var(--primary-color, #000);
}
.pd-layout-v1 .gallery-thumbs .thumb.active {
    border-color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.pd-layout-v1 .gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.pd-layout-v1 .gallery-main {
    flex-grow: 1;
    border-radius: 12px;
    overflow: hidden;
}

/* Global Header Fix for Logo Size and Breadcrumb overlap */
.header-logo img {
    max-height: 50px !important;
    width: auto !important;
    transition: all 0.3s ease;
}

#mainHeader.scrolled .header-logo img {
    max-height: 40px !important;
}

.breadcrumb-area {
    margin-top: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* V2: Stacked / Zara Style (Sticky) */
.pd-layout-v2 {
    background: #fff;
    color: #000;
}

/* Force side-by-side if theme grid fails or is overridden */
@media (min-width: 992px) {
    .pd-layout-v2 .product-essential {
        display: grid !important;
        grid-template-columns: 1fr 450px !important; 
        gap: 60px !important;
        align-items: start !important;
        padding-top: 40px;
    }
}

.pd-layout-v2 .gallery-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pd-layout-v2 .stacked-img-wrapper {
    overflow: hidden;
    background: #fcfcfc;
}

.pd-layout-v2 .stacked-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pd-layout-v2 .stacked-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Sticky Info Panel V2 - POSH */
.pd-layout-v2 .panel-sticky {
    position: sticky !important;
    top: 140px !important;
    align-self: flex-start !important;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.pd-layout-v2 .pd-header {
    margin-bottom: 35px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

.pd-layout-v2 .pd-brand {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 15px;
    display: block;
}

.pd-layout-v2 .pd-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #000;
    margin-bottom: 15px;
}

.pd-layout-v2 .pd-price {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 400;
    color: #000;
}

/* Variants V2 */
.pd-layout-v2 .ec-variants-wrap {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pd-layout-v2 .ec-attr-group {
    margin-bottom: 10px;
}

.pd-layout-v2 .ec-attr-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: #000;
}

.pd-layout-v2 .ec-attr-btn {
    border: 1px solid #eee;
    background: #fff;
    cursor: pointer;
    transition: 0.2s;
    font-family: var(--font-sans);
    font-size: 11px;
    padding: 10px 20px;
}

.pd-layout-v2 .ec-attr-btn:hover {
    border-color: #000;
}

.pd-layout-v2 .ec-attr-btn.active {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Actions V2 */
.pd-layout-v2 .pd-actions-v2 {
    display: flex;
    border: 1px solid #000;
    height: 60px;
    margin-bottom: 40px;
}

.pd-layout-v2 .pd-qty-selector-v2 {
    width: 120px;
    display: flex;
    border-right: 1px solid #000;
}

.pd-layout-v2 .pd-qty-selector-v2 button {
    flex: 1;
    background: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.pd-layout-v2 .pd-qty-selector-v2 input {
    width: 40px;
    border: none;
    text-align: center;
    font-weight: 700;
}

.pd-layout-v2 .pd-add-to-cart-v2 {
    flex: 1;
    background: #000;
    color: #fff;
    border: none;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

/* Accordion V2 */
.pd-layout-v2 .pd-accordion-v2 {
    border-top: 1px solid #eee;
}

.pd-layout-v2 .acc-item {
    border-bottom: 1px solid #eee;
}

.pd-layout-v2 .acc-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.pd-layout-v2 .acc-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 14px;
    color: #444;
}

.pd-layout-v2 .acc-item.active .acc-content {
    max-height: 1000px;
    padding-bottom: 25px;
}

/* Related V2 */
.pd-layout-v2 .related-products {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.pd-layout-v2 .related-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
}

.pd-layout-v2 .related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 991px) {
    .pd-layout-v2 .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pd-layout-v2 .rel-product-card {
    text-align: left;
}

.pd-layout-v2 .rel-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f9f9f9;
}

.pd-layout-v2 .rel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.pd-layout-v2 .rel-product-card:hover img {
    transform: scale(1.08);
}

.pd-layout-v2 .rel-info h4 {
    font-family: var(--font-sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.pd-layout-v2 .rel-price {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
}

/* V3: Masonry Grid Layout */
.pd-layout-v3 .gallery-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.pd-layout-v3 .zoom-wrap {
    transition: all 0.4s ease;
    border-radius: 0 !important;
}

/* V4: Hero Header Layout */
.pd-layout-v4 .pd-hero {
    min-height: 100vh !important;
    background-attachment: fixed !important;
    position: relative;
    display: flex;
    align-items: flex-end;
}
.pd-layout-v4 .pd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

/* Global Transitions & Hover Effects */
.ec-attr-btn {
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ec-attr-btn:hover {
    border-color: #000 !important;
    transform: translateY(-2px);
}

#ec-add-to-cart {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
#ec-add-to-cart:hover {
    letter-spacing: 3px;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.pd-qty-selector button {
    background: none;
    border: none;
    padding: 10px 15px;
    transition: 0.2s;
    height: 100%;
}
.pd-qty-selector button:hover {
    background: #eee !important;
    color: #000;
}

@media (max-width: 991px) {
    .pd-layout-v1 .product-gallery {
        flex-direction: column-reverse;
    }
    .panel-sticky {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        padding: 30px 20px !important;
        border-left: none;
    }
    .pd-layout-v2 .pd-title {
        font-size: 1.8rem;
    }
    .pd-layout-v4 .pd-hero {
        min-height: 70vh !important;
        background-attachment: scroll !important;
    }
}