/* İÇ SAYFALAR BÜYÜK BOŞLUK (GAP) DÜZELTİCİ */
body:not(.home) .page-header,
body:not(.home) .entry-header,
body:not(.home) .ast-archive-description {
    display: none !important;
    /* Temanın otomatik attığı devasa başlık alanlarını gizle */
}

body:not(.home) #content {
    margin-top: 0 !important;
    /* Temanın kendi dev margin'ini sıfırla */
    padding-top: 120px !important;
    /* Sadece şeffaf menümüzün yüksekliği kadar alan bırak */
}

body:not(.home) .site-content,
body:not(.home) #main,
body:not(.home) #primary,
body:not(.home) .page-wrapper,
body:not(.home) .entry-content,
body:not(.home) .elementor-section-wrap,
body:not(.home) .ast-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* EFRALYA CORE COMPONENTS & HOME PAGE STYLES */
:root {
    --primary-bg: #FFFFFF;
    --primary-text: #000000;
    --accent-red: #E6121C;
    --light-grey: #F5F5F5;
    --dark-grey: #1a1a1a;
    --border-color: #E0E0E0;
    --font-body: 'Manrope', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    --header-height: 80px;
}

body,
html {
    overflow-x: hidden !important;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    display: none !important;
    /* Chrome, Safari, Opera */
}

.efralya-home-wrapper {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    box-sizing: border-box;

    /* transform: translateX(-50%) KALDIRILDI
       position:fixed olan header, sidebar, drawer vs. elemanlar
       transform olan bir parent'ın içinde viewport'a göre değil,
       o parent'a göre konumlanır — bu yüzden header scroll ederken kayıyordu! */
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto !important;
    padding-top: 0 !important;
    overflow-x: hidden;
    top: 0 !important;

    /* Alt Elemanlardaki tüm scrollbarları gizle */
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.efralya-home-wrapper::-webkit-scrollbar,
.efralya-home-wrapper *::-webkit-scrollbar {
    display: none !important;
}

.efralya-home-wrapper * {
    box-sizing: border-box;
    scrollbar-width: none !important;
}

.efralya-home-wrapper a {
    text-decoration: none !important;
    color: inherit;
    transition: opacity 0.3s;
}

.efralya-home-wrapper a:hover {
    opacity: 0.7;
}

/* TİPOGRAFİ GENEL */
.efralya-home-wrapper h1,
.efralya-home-wrapper h2,
.efralya-home-wrapper h3,
.efralya-home-wrapper .logo {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

/* 5. HERO SWIPER SLIDER: TAM EKRAN VE SIFIR BOŞLUK */
.efralya-home-wrapper .hero-slider {
    width: 100%;
    height: 100dvh;
    margin-top: 0 !important;
    padding-top: 0 !important;
    margin-bottom: 40px !important;
}

.efralya-home-wrapper .hero-slider .swiper-button-next,
.efralya-home-wrapper .hero-slider .swiper-button-prev {
    display: none !important;
}

.efralya-home-wrapper .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.efralya-home-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.efralya-home-wrapper .hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.efralya-home-wrapper .hero-title {
    font-size: 6rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff !important;
}

.efralya-home-wrapper .hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #fff !important;
}

.efralya-home-wrapper .btn-primary {
    display: inline-block;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    padding: 15px 40px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-bg);
}

.efralya-home-wrapper .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
    opacity: 1;
}

.efralya-home-wrapper .swiper-button-next,
.efralya-home-wrapper .swiper-button-prev {
    color: white;
}

/* 5.1 ARCHIVE BANNER GÖRSEL ALANI */
.efralya-home-wrapper .archive-banner {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 80px;
    min-height: 550px;
    margin-top: 0;
    margin-bottom: 60px;
    overflow: hidden;
    background-color: #f9f9fb;
}

.efralya-home-wrapper .archive-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=1600');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.3, 1);
}

.efralya-home-wrapper .archive-banner:hover .archive-banner-bg {
    transform: scale(1.04);
}

.efralya-home-wrapper .archive-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.98) 25%, 
        rgba(255, 255, 255, 0.85) 45%, 
        rgba(255, 255, 255, 0.4) 65%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.efralya-home-wrapper .archive-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.efralya-home-wrapper .archive-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.efralya-home-wrapper .archive-brand {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    color: #111;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 15px;
    line-height: 0.95;
    letter-spacing: -1px;
}

.efralya-home-wrapper .archive-brand strong {
    font-weight: 900;
    color: #000;
}

.efralya-home-wrapper .archive-prices {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.efralya-home-wrapper .price-val {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 0.9;
    display: flex;
    align-items: flex-start;
    letter-spacing: -2px;
    color: #000;
}

.efralya-home-wrapper .price-val .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 4px;
    margin-top: 8px;
    letter-spacing: 0;
    color: #222;
}

.efralya-home-wrapper .price-divider {
    font-family: var(--font-body);
    font-size: 3.5rem;
    font-weight: 300;
    color: #ddd;
    line-height: 1;
    margin: 0 4px;
}

.efralya-home-wrapper .archive-desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-left: 10px;
    padding-bottom: 0;
}

.efralya-home-wrapper .archive-categories {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
    width: 100%;
}

.efralya-home-wrapper .archive-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 20px;
    z-index: 2;
}

.efralya-home-wrapper .archive-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 40px;
    border: 1.5px solid #000000;
    color: #ffffff;
    background-color: #000000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 40px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    letter-spacing: 0.5px;
}

.efralya-home-wrapper .archive-btn:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

.efralya-home-wrapper .archive-btn-icon {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.efralya-home-wrapper .archive-btn:hover .archive-btn-icon {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .efralya-home-wrapper .archive-banner {
        padding: 60px 24px;
        min-height: auto;
    }

    .efralya-home-wrapper .archive-banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .efralya-home-wrapper .archive-banner-overlay {
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 1) 100%);
    }

    .efralya-home-wrapper .archive-brand {
        font-size: 2.8rem;
        text-align: center;
    }

    .efralya-home-wrapper .price-val {
        font-size: 3.5rem;
    }

    .efralya-home-wrapper .archive-left {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .efralya-home-wrapper .archive-prices {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .efralya-home-wrapper .archive-desc {
        width: 100%;
        text-align: center;
        margin-top: 10px;
        margin-left: 0;
    }

    .efralya-home-wrapper .archive-categories {
        margin-left: 0;
        text-align: center;
    }

    .efralya-home-wrapper .archive-right {
        padding-right: 0;
        align-self: center;
        width: 100%;
        justify-content: center;
    }

    .efralya-home-wrapper .archive-btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 28px;
        box-sizing: border-box;
    }
}

/* YATAY KAYDIRILABİLİR ÜRÜN SATIRI (HORIZONTAL SCROLL) */
.efralya-home-wrapper .horizontal-scroll-container ul.products {
    display: flex !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 20px !important;
    /* Scroll bar için yer */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox gizleme */
}

.efralya-home-wrapper .horizontal-scroll-container ul.products::-webkit-scrollbar {
    display: none;
    /* Chrome animasyonlu ok ok gizleme */
}

.efralya-home-wrapper .horizontal-scroll-container ul.products li.product {
    min-width: calc(20% - 16px) !important;
    /* 5 ürün sığsın */
    scroll-snap-align: start !important;
    flex: 0 0 auto !important;
}

@media (max-width: 1400px) {
    .efralya-home-wrapper .horizontal-scroll-container ul.products li.product {
        min-width: calc(25% - 15px) !important;
    }
}

@media (max-width: 1024px) {
    .efralya-home-wrapper .horizontal-scroll-container ul.products li.product {
        min-width: calc(33.333% - 14px) !important;
    }
}

@media (max-width: 768px) {
    .efralya-home-wrapper .horizontal-scroll-container ul.products li.product {
        min-width: calc(50% - 10px) !important;
    }
}

.efralya-home-wrapper .small-uppercase-header {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 40px 0 25px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* PRODUCT SWIPER */
.efralya-home-wrapper .product-swiper {
    width: 100%;
    padding: 10px 0 40px;
    position: relative;
    overflow: hidden;
}

.efralya-home-wrapper .product-swiper .swiper-slide {
    height: auto;
}

.efralya-home-wrapper .product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .efralya-home-wrapper .product-card {
        width: 100%;
    }
}

.efralya-home-wrapper .product-card-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
    display: block;
}

.efralya-home-wrapper .product-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: opacity 0.4s ease;
    display: block;
}

.efralya-home-wrapper .product-card:hover .hover-img {
    opacity: 1 !important;
}

.efralya-home-wrapper .product-card:hover .main-img {
    opacity: 0;
}

.efralya-home-wrapper .quick-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.efralya-home-wrapper .quick-actions .action-btn {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none !important;
    line-height: 1 !important;
}

.efralya-home-wrapper .quick-actions .action-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

/* YITH Wishlist Override for Quick Actions */
.efralya-home-wrapper .yith-action-wrapper {
    margin-bottom: 0;
}

.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-add-to-wishlist {
    margin: 0 !important;
}

.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-add-button>a,
.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistaddedbrowse>a,
.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistexistsbrowse>a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-add-button>a:hover,
.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistaddedbrowse>a:hover,
.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistexistsbrowse>a:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-add-button>a span,
.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistaddedbrowse>a span,
.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistexistsbrowse>a span {
    display: none !important;
}

.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-add-button>a::after {
    content: "\f006";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistaddedbrowse>a::after,
.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-wishlistexistsbrowse>a::after {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #E6121C;
}

.efralya-home-wrapper .yith-action-wrapper .yith-wcwl-icon {
    display: none !important;
}

.efralya-home-wrapper .yith-action-wrapper .feedback {
    display: none !important;
}

/* New Badges (Efralya Atelier & Colors) */
.efralya-home-wrapper .flaw-atelier-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 8px;
    z-index: 10;
}

.efralya-home-wrapper .color-dot:first-child {
    margin-left: 0;
}

.efralya-home-wrapper .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #E6121C;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 6px;
    z-index: 10;
}

.efralya-home-wrapper .product-info {
    padding: 15px 0 5px;
    text-align: left;
}

.efralya-home-wrapper .product-info-title {
    font-size: 12px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0px;
    margin-bottom: 4px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 18px;
}

.efralya-home-wrapper .product-info-price {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    gap: 6px;
    align-items: center;
    color: #E6121C;
}

.efralya-home-wrapper .product-info-price del {
    color: #999;
    font-weight: 400;
    font-size: 12px;
    text-decoration: line-through;
}

.efralya-home-wrapper .product-info-price ins {
    color: #E6121C;
    text-decoration: none;
}

.efralya-home-wrapper .product-swiper-next,
.efralya-home-wrapper .product-swiper-prev {
    color: #000;
    background: rgba(255, 255, 255, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
}

.efralya-home-wrapper .product-swiper:hover .product-swiper-next,
.efralya-home-wrapper .product-swiper:hover .product-swiper-prev {
    opacity: 1;
}

.efralya-home-wrapper .product-swiper-next::after,
.efralya-home-wrapper .product-swiper-prev::after {
    font-size: 16px;
    font-weight: 900;
}

.efralya-home-wrapper .product-swiper-next:hover,
.efralya-home-wrapper .product-swiper-prev:hover {
    background: #000;
    color: #fff;
}

/* 5.4 DOUBLE PROMO BANNER */
.efralya-home-wrapper .double-promo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 50px auto;
    padding: 0 15px;
}

.efralya-home-wrapper .promo-box {
    position: relative;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 45px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.efralya-home-wrapper .promo-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.efralya-home-wrapper .promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.efralya-home-wrapper .promo-box:hover .promo-bg {
    transform: scale(1.05);
}

.efralya-home-wrapper .promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.efralya-home-wrapper .promo-box:hover .promo-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.efralya-home-wrapper .promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    pointer-events: none;
}

.efralya-home-wrapper .promo-text-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    pointer-events: auto;
    margin-bottom: 30px;
}

.efralya-home-wrapper .promo-cond {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 6px;
}

.efralya-home-wrapper .promo-cond strong {
    font-weight: 800;
    color: #fff;
}

.efralya-home-wrapper .promo-main-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-style: italic;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 0.85;
    text-transform: lowercase;
    letter-spacing: -2px;
    transition: transform 0.4s ease;
}

.efralya-home-wrapper .promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
}

.efralya-home-wrapper .promo-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.efralya-home-wrapper .promo-btn-icon {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.efralya-home-wrapper .promo-btn:hover .promo-btn-icon {
    transform: translateX(6px);
}

.efralya-home-wrapper .promo-badge-side {
    position: absolute;
    bottom: 75px;
    right: 45px;
    background-color: #8c1a32;
    color: #fff;
    padding: 16px 22px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.efralya-home-wrapper .promo-badge-side.badge-black {
    background-color: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.efralya-home-wrapper .promo-box:hover .promo-badge-side {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.efralya-home-wrapper .promo-badge-side .badge-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    font-style: italic;
    letter-spacing: -1px;
}

.efralya-home-wrapper .promo-badge-side .badge-text {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 3px;
    opacity: 0.9;
}

.efralya-home-wrapper .promo-note {
    position: absolute;
    bottom: 25px;
    left: 45px;
    width: calc(100% - 90px);
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.78rem;
    font-weight: 500;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 12px;
}

@media (max-width: 900px) {
    .efralya-home-wrapper .double-promo-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }

    .efralya-home-wrapper .promo-main-title {
        font-size: 3.2rem;
    }

    .efralya-home-wrapper .promo-box {
        min-height: 480px;
        padding: 40px 30px;
    }

    .efralya-home-wrapper .promo-badge-side {
        bottom: 60px;
        right: 30px;
        padding: 12px 18px;
    }

    .efralya-home-wrapper .promo-badge-side .badge-price {
        font-size: 1.8rem;
    }

    .efralya-home-wrapper .promo-badge-side .badge-text {
        font-size: 0.65rem;
    }

    .efralya-home-wrapper .promo-note {
        left: 30px;
        width: calc(100% - 60px);
    }
}

/* 5.5 CATEGORY BANNERS */
.efralya-home-wrapper .category-banners-container {
    display: flex;
    width: 100%;
    height: 80vh;
    max-height: 900px;
    background: var(--primary-bg);
    margin-bottom: 60px;
}

.efralya-home-wrapper .category-banner-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center top;
    border-right: 5px solid var(--primary-bg);
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.efralya-home-wrapper .category-banner-item:last-child {
    border-right: none;
}

.efralya-home-wrapper .category-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
    transition: all 0.3s;
}

.efralya-home-wrapper .category-banner-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.efralya-home-wrapper .category-banner-content {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
    transition: transform 0.3s;
}

.efralya-home-wrapper .category-banner-item:hover .category-banner-content {
    transform: translateY(-10px);
}

.efralya-home-wrapper .category-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    color: #fff !important;
}

.efralya-home-wrapper .category-subtitle strong {
    font-weight: 800;
}

.efralya-home-wrapper .category-title {
    font-family: var(--font-body);
    font-size: 4.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    letter-spacing: -3px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    color: #fff !important;
}

@media (max-width: 900px) {
    .efralya-home-wrapper .category-banners-container {
        flex-direction: column;
        height: auto;
    }

    .efralya-home-wrapper .category-banner-item {
        height: 60vh;
        border-right: none;
        border-bottom: 5px solid var(--primary-bg);
    }

    .efralya-home-wrapper .category-banner-item:last-child {
        border-bottom: none;
    }

    .efralya-home-wrapper .category-title {
        font-size: 3.5rem;
    }
}

/* 5.3 GIFT BANNER */
.efralya-home-wrapper .gift-banner {
    width: 100%;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1485968579580-b6d095142e6e?q=80&w=1600');
    background-size: cover;
    background-position: center 30%;
    padding: 120px 40px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 550px;
    box-sizing: border-box;
    overflow: hidden;
}

.efralya-home-wrapper .gift-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.efralya-home-wrapper .gift-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
}

.efralya-home-wrapper .gift-banner-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    animation: cardFloat 6s ease-in-out infinite;
    box-sizing: border-box;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.efralya-home-wrapper .gift-tagline {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-red, #E6121C);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.efralya-home-wrapper .gift-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 15px 0;
    line-height: 1;
    letter-spacing: -1px;
}

.efralya-home-wrapper .gift-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-red, #E6121C);
    margin-bottom: 20px;
}

.efralya-home-wrapper .gift-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #e2e8f0;
    margin: 0 0 25px 0;
}

.efralya-home-wrapper .gift-desc strong {
    color: #fff;
    font-weight: 800;
}

.efralya-home-wrapper .gift-features {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.efralya-home-wrapper .feature-item {
    font-size: 12.5px;
    font-weight: 600;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.efralya-home-wrapper .feature-item i {
    color: var(--accent-red, #E6121C);
}

.efralya-home-wrapper .feature-divider {
    color: rgba(255, 255, 255, 0.2);
}

.efralya-home-wrapper .gift-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.efralya-home-wrapper .gift-cta-btn:hover {
    background: var(--accent-red, #E6121C);
    color: #fff;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(230, 18, 28, 0.4);
}

.efralya-home-wrapper .gift-cta-btn i {
    transition: transform 0.3s;
}

.efralya-home-wrapper .gift-cta-btn:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .efralya-home-wrapper .gift-banner {
        padding: 60px 20px;
        min-height: auto;
    }

    .efralya-home-wrapper .gift-banner-card {
        padding: 35px 25px;
        border-radius: 16px;
    }

    .efralya-home-wrapper .gift-title {
        font-size: 2.5rem;
    }
}

/* BÖLÜM BAŞLIKLARI */
.efralya-home-wrapper .section-header {
    text-align: center;
    padding: 40px 20px 30px;
}

.efralya-home-wrapper .section-header h2 {
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.efralya-home-wrapper .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.efralya-home-wrapper .container-full {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* 6. WOOCOMMERCE 5-COLUMN PRODUCT GRID (EFRALYA CLONE) */
.efralya-home-wrapper ul.products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
    margin-bottom: 60px !important;
    list-style: none !important;
    padding: 0 !important;
}

.efralya-home-wrapper ul.products::before,
.efralya-home-wrapper ul.products::after {
    display: none !important;
}

.efralya-home-wrapper ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    cursor: pointer !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
    width: 100% !important;
}

.efralya-home-wrapper ul.products li.product a.woocommerce-LoopProduct-link {
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
}

/* Resim Alanı ve Hover Effect */
.efralya-home-wrapper ul.products li.product img.attachment-woocommerce_thumbnail {
    width: 100% !important;
    aspect-ratio: 3/4 !important;
    object-fit: cover !important;
    background-color: var(--light-grey) !important;
    margin: 0 !important;
    transition: opacity 0.4s ease !important;
    z-index: 1;
}

.efralya-home-wrapper ul.products li.product:hover img.attachment-woocommerce_thumbnail {
    opacity: 0 !important;
}

.efralya-home-wrapper ul.products li.product:hover img.hover-img {
    opacity: 1 !important;
}

/* İndirim Rozeti (EFRALYA Stili) */
.efralya-home-wrapper ul.products li.product .onsale {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    background-color: var(--primary-bg) !important;
    color: var(--accent-red) !important;
    font-family: var(--font-heading) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 4px 8px !important;
    text-transform: uppercase !important;
    z-index: 10 !important;
    border-radius: 0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 !important;
}

/* Başlık Şekillendirmesi */
.efralya-home-wrapper ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-body) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    margin: 15px 0 6px 0 !important;
    color: #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    padding: 0 !important;
    line-height: 1.4 !important;
    height: 32px !important;
}

/* Fiyat Şekillendirmesi */
.efralya-home-wrapper ul.products li.product .price {
    font-family: var(--font-body) !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
}

.efralya-home-wrapper ul.products li.product .price del {
    font-size: 13px !important;
    color: #999 !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
    display: inline-block !important;
}

.efralya-home-wrapper ul.products li.product .price ins {
    text-decoration: none !important;
    color: var(--accent-red) !important;
    display: inline-block !important;
    font-weight: 700 !important;
    background: transparent !important;
}

.efralya-home-wrapper ul.products li.product .button.add_to_cart_button {
    display: none !important;
}

/* KAMPANYA BANNER */
.efralya-home-wrapper .campaign-banner {
    width: 100%;
    background-color: var(--light-grey);
    padding: 60px 20px;
    text-align: center;
    margin: 60px 0;
}

/* 9. BLOG SECTION */
.efralya-home-wrapper .blog-section {
    padding: 80px 40px;
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.efralya-home-wrapper .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.efralya-home-wrapper .blog-card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.efralya-home-wrapper .blog-card-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    transition: transform 0.4s;
}

.efralya-home-wrapper .blog-card:hover .blog-card-image {
    transform: scale(1.02);
}

.efralya-home-wrapper .blog-card-date {
    font-size: 13px;
    color: #888;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.efralya-home-wrapper .blog-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #000;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.2;
}

.efralya-home-wrapper .blog-card-excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.efralya-home-wrapper .blog-card-link {
    font-size: 14px;
    font-weight: 800;
    color: #000;
    text-decoration: underline !important;
    text-transform: uppercase;
    margin-top: auto;
    display: inline-block;
}

@media (max-width: 1024px) {
    .efralya-home-wrapper .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .efralya-home-wrapper .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* 10. SCROLL ANIMATIONS (AOS STYLE) */
.efralya-home-wrapper .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    will-change: transform, opacity;
}

.efralya-home-wrapper .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .efralya-home-wrapper ul.products {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

@media (max-width: 1024px) {
    .efralya-home-wrapper ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .efralya-home-wrapper .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .efralya-home-wrapper .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .efralya-home-wrapper ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .efralya-home-wrapper .hero-title {
        font-size: 3rem;
    }

    .efralya-home-wrapper .hero-content {
        padding-top: 80px;
    }

    .efralya-home-wrapper .footer-middle-apps {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .efralya-home-wrapper .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .efralya-home-wrapper .hero-title {
        font-size: 2.2rem;
    }

    .efralya-home-wrapper .hero-content {
        padding-top: 60px;
    }

    .efralya-home-wrapper .container,
    .efralya-home-wrapper .header,
    .efralya-home-wrapper .new-footer .footer-container {
        padding: 0 20px;
    }
}

/* SIDEBAR MENU DRAWER & INNER NAVIGATION (WORDPRESS STYLE CLONE) */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -400px;
    /* Hide to the left */
    width: 350px !important;
    height: 100vh;
    background-color: #fff;
    z-index: 1000000000 !important;
    /* Ensure it is on top */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 40px 30px !important;
    display: flex;
    flex-direction: column;
}

.sidebar-menu.active {
    left: 0 !important;
}

.sidebar-header {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
}

.sidebar-close {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    transition: transform 0.3s ease;
}

.sidebar-close:hover {
    transform: rotate(90deg);
}

.efralya-custom-sidebar-nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.efralya-custom-sidebar-nav>li {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
}

.efralya-custom-sidebar-nav>li:last-child {
    border-bottom: none;
}

.efralya-custom-sidebar-nav li a {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #000 !important;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    letter-spacing: 1px;
}

.efralya-custom-sidebar-nav li a:hover {
    color: var(--accent-red) !important;
}

.efralya-custom-sidebar-nav .has-submenu>a::after {
    content: "\f067";
    /* FontAwesome Plus Icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #888;
    transition: transform 0.3s;
}

.efralya-custom-sidebar-nav .has-submenu.active-parent>a::after {
    content: "\f068";
    /* FontAwesome Minus Icon */
    color: var(--accent-red);
}

.sidebar-submenu {
    list-style: none !important;
    padding: 10px 0 0 15px !important;
    margin: 0 !important;
    display: none;
    flex-direction: column;
    gap: 12px;
}

.sidebar-submenu li {
    padding: 4px 0;
}

.sidebar-submenu li a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #666 !important;
    text-transform: capitalize;
}

.sidebar-submenu li a:hover {
    color: #000 !important;
}

/* MOBILE HEADER EXPANDING SEARCH INPUT STYLES */
@media (max-width: 768px) {
    .sidebar-menu {
        width: 290px !important;
        left: -320px;
    }

    /* Header search toggling inline */
    .header-right {
        display: flex !important;
        gap: 15px;
    }

    .header-right .account-icon-wrapper,
    .header-right .wishlist-icon-wrapper,
    .header-right .cart-icon-wrapper {
        display: none !important;
    }

    .header-search-wrapper form {
        display: flex;
        align-items: center;
    }

    .header-search-wrapper #headerSearchInput {
        width: 0 !important;
        padding: 0 !important;
        border: none !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        background: #f5f5f5 !important;
    }

    .header-search-wrapper.mobile-active #headerSearchInput {
        width: 160px !important;
        padding: 8px 12px 8px 32px !important;
        border: 1px solid #eee !important;
        opacity: 1;
        visibility: visible;
        border-radius: 20px;
    }

    .header-search-wrapper .search-icon {
        position: absolute !important;
        left: 12px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 15px !important;
        color: #000 !important;
        cursor: pointer;
        pointer-events: auto !important;
    }

    .header-search-wrapper:not(.mobile-active) .search-icon {
        position: static !important;
        transform: none !important;
        font-size: 20px !important;
    }
}

/* =====================================================
   SOL ÇEKMECE MENÜ (SIDEBAR) NAVIGATION STİLLERİ
   ===================================================== */

/* Menü Başlığı (Kapat butonu) — canlı siteyle aynı konumda */
.sidebar-header {
    padding: 0 0 40px;
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 40px;
    right: 40px;
}

.sidebar-close {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    transition: transform 0.3s;
    display: block;
}

.sidebar-close:hover {
    transform: rotate(90deg);
}

/* NAV LİST */
.efralya-custom-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.efralya-custom-sidebar-nav>li {
    margin-bottom: 20px;
}

.efralya-custom-sidebar-nav>li>a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.25s;
}

.efralya-custom-sidebar-nav>li>a:hover {
    color: var(--accent-red, #E6121C);
}

/* Submenu Toggle (+/-) */
.efralya-custom-sidebar-nav .has-submenu>a::after {
    content: " +";
    font-family: inherit;
    font-weight: 400;
    font-size: 16px;
    margin-left: 5px;
    color: #aaa;
    transition: color 0.2s;
}

.efralya-custom-sidebar-nav .has-submenu.active-parent>a::after {
    content: " -";
    color: var(--accent-red, #E6121C);
}

/* ALT MENÜ (SUBMENU) */
.sidebar-submenu {
    list-style: none;
    padding: 10px 0 5px 0;
    display: none;
    margin: 0;
}

.sidebar-submenu.active-submenu {
    display: block;
    animation: submenuFadeIn 0.25s ease;
}

.sidebar-submenu li {
    margin-bottom: 4px;
}

.sidebar-submenu li a {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: #777 !important;
    padding: 8px 0;
    display: inline-block;
    width: 100%;
    text-decoration: none;
    transition: color 0.2s, transform 0.2s;
}

.sidebar-submenu li a:hover {
    color: #000 !important;
    transform: translateX(5px);
}

/* Alt kategori başlıkları (ÜST GİYİM, ALT GİYİM vb.) */
.sidebar-submenu .sub-sub-header,
.sidebar-submenu li.sub-sub-header {
    font-family: 'Oswald', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #000;
    padding: 15px 0 5px;
    text-transform: uppercase;
    display: block;
    pointer-events: none;
    cursor: default;
}

.sidebar-submenu li.sub-sub-header a {
    display: none;
}

@keyframes submenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

/* =====================================================
   DRAWER ORTAK BAŞLIK GÜNCELLEMESİ
   ===================================================== */

.drawer-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-top-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #000;
    text-transform: uppercase;
}

.drawer-item-count {
    background: #f0f0f0;
    color: #666;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Scroll Body — drawer içindeki kaydırılabilir alan */
.drawer-scroll-body {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e0e0e0 transparent;
    display: flex;
    flex-direction: column;
}

.drawer-scroll-body::-webkit-scrollbar {
    width: 4px;
}

.drawer-scroll-body::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 4px;
}

/* =====================================================
   KARGO TRACKER
   ===================================================== */
.mc-tracker {
    padding: 16px 25px 14px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.mc-tracker-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.mc-tracker-icon {
    color: #888;
    font-size: 13px;
}

.mc-tracker-icon--ok {
    color: #27ae60;
}

.mc-tracker--free .mc-tracker-text {
    color: #27ae60;
}

.mc-tracker-bar {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.mc-tracker-fill {
    height: 100%;
    background: var(--accent-red, #E6121C);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.mc-tracker--free .mc-tracker-fill {
    background: #27ae60;
}

/* =====================================================
   ÜRÜN LİSTESİ (SEPETİM)
   ===================================================== */
.mc-items {
    flex: 1;
    padding: 0 25px;
    overflow-y: auto;
}

.mc-item {
    display: grid;
    grid-template-columns: 78px 1fr 28px;
    gap: 14px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f5;
    animation: mcItemIn 0.25s ease;
}

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

@keyframes mcItemIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mc-item-img-wrap {
    display: block;
    position: relative;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.mc-item-img {
    width: 78px;
    height: 105px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.mc-item-img-wrap:hover .mc-item-img {
    transform: scale(1.04);
}

.mc-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.mc-item-name {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.mc-item-name:hover {
    color: var(--accent-red, #E6121C);
}

.mc-item-variant {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

.mc-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
}

/* Adet kontrol */
.mc-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.mc-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #555;
    font-size: 10px;
    transition: background 0.2s, color 0.2s;
}

.mc-qty-btn:hover {
    background: #e0e0e0;
    color: #000;
}

.mc-qty-val {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #000;
    min-width: 24px;
    text-align: center;
}

.mc-item-price {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #000;
}

.mc-item-remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    font-size: 13px;
    transition: all 0.2s;
    flex-shrink: 0;
    align-self: start;
    margin-top: 2px;
}

.mc-item-remove:hover {
    background: var(--accent-red, #E6121C);
    color: #fff;
}

/* =====================================================
   SEPET FOOTER (TOPLAM + CTA)
   ===================================================== */
.mc-footer {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
    flex-shrink: 0;
}

.mc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.mc-total-label {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #777;
}

.mc-total-label small {
    color: #aaa;
    font-size: 11px;
}

.mc-total-val {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #000;
}

.mc-total-val--red {
    color: var(--accent-red, #E6121C);
    font-size: 14px;
}

.mc-discount-row .mc-total-label {
    color: #27ae60;
}

.mc-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.mc-btn-primary,
.mc-btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    border-radius: 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mc-btn-primary {
    background: #000;
    color: #fff !important;
}

.mc-btn-primary:hover {
    background: var(--accent-red, #E6121C);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 18, 28, 0.25);
    color: #fff !important;
}

.mc-btn-secondary {
    background: #f5f5f5;
    color: #000 !important;
}

.mc-btn-secondary:hover {
    background: #ebebeb;
    color: #000 !important;
}

.mc-secure-note {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    color: #bbb;
    font-weight: 600;
    margin: 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* =====================================================
   BOŞ DURUM
   ===================================================== */
.mc-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 30px;
    flex: 1;
}

.mc-empty-icon {
    width: 90px;
    height: 90px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    margin-bottom: 24px;
}

.mc-empty-icon--heart {
    color: #ffb3b8;
}

.mc-empty-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.mc-empty-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    color: #999;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 28px;
}

.mc-browse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #000;
    color: #fff !important;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mc-browse-btn:hover {
    background: var(--accent-red, #E6121C);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 18, 28, 0.25);
    color: #fff !important;
}

.mc-browse-btn--heart:hover {
    background: #e91e63;
    box-shadow: 0 8px 20px rgba(233, 30, 99, 0.25);
}

/* =====================================================
   FAVORİLER ÖZEL STİLLER
   ===================================================== */
.wl-count-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 25px;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-red, #E6121C);
    border-bottom: 1px solid #f5f5f5;
    flex-shrink: 0;
    background: #fff9f9;
}

.wl-items {
    padding: 0 25px;
}

.wl-item {
    grid-template-columns: 78px 1fr 28px;
}

.wl-discount-badge {
    position: absolute;
    top: 8px;
    left: 0;
    background: var(--accent-red, #E6121C);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 0 4px 4px 0;
}

.wl-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.wl-price-current {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 900;
    color: #000;
}

.wl-price-old {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #bbb;
    text-decoration: line-through;
}

.wl-add-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 14px;
    background: #000;
    color: #fff !important;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s;
    width: fit-content;
}

.wl-add-cart-btn:hover {
    background: var(--accent-red, #E6121C);
    color: #fff !important;
}

.wl-footer {
    padding: 16px 25px 20px;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

/* =====================================================
   MOBİL UYUM
   ===================================================== */


/* =====================================================
   FRONTEND GENEL PREMIUM TASARIM STİLLERİ
   ===================================================== */

/* 1. ÜRÜN DETAY BİLEŞENLERİ */
.prod-variant-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0 25px;
}

.prod-variant-btn {
    padding: 10px 20px;
    border: 2px solid #e0e0e0;
    background: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #111;
}

.prod-variant-btn:hover {
    border-color: #000;
}

.prod-variant-btn.active {
    border-color: var(--accent-red, #E6121C);
    background: #fffdfd;
    color: var(--accent-red, #E6121C);
    box-shadow: 0 4px 12px rgba(230, 18, 28, 0.08);
}

.prod-qty-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.prod-qty-ctrl {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 2px;
}

.prod-qty-btn {
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    transition: background 0.2s, color 0.2s;
    border-radius: 8px;
}

.prod-qty-btn:hover {
    background: #e8e8e8;
    color: #000;
}

.prod-qty-val {
    font-family: 'Manrope', sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    color: #000;
    min-width: 35px;
    text-align: center;
}

/* 2. PREMIUM TABLOLAR (SEPET & SİPARİŞ GEÇMİŞİ) */
.efralya-table-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    margin-bottom: 30px;
}

.efralya-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Manrope', sans-serif;
}

.efralya-table th {
    background: #fafafa;
    padding: 18px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    border-bottom: 1px solid #eee;
}

.efralya-table td {
    padding: 20px 24px;
    border-bottom: 1px solid #f8f8f8;
    vertical-align: middle;
    font-size: 14px;
    color: #333;
}

.efralya-table tbody tr:last-child td {
    border-bottom: none;
}

.efralya-table tbody tr:hover {
    background: #fafafa;
}

/* 3. PREMIUM FORMLAR & INPUTLAR (CHECKOUT & PROFIL) */
.efralya-card {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.efralya-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .efralya-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.efralya-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.efralya-form-group label {
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.efralya-form-control {
    width: 100%;
    padding: 14px 18px;
    background: #fafafa;
    border: 2px solid #eaeaea;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #000;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.efralya-form-control:focus {
    outline: none;
    border-color: #000;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* 4. HESABIM SİDEBARI */
.acc-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
}

@media (max-width: 992px) {
    .acc-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
}

.acc-sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    height: fit-content;
}

.acc-sidebar-title {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 16px 15px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    color: #000;
}

.acc-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.acc-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #555;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.25s;
}

.acc-menu-link:hover,
.acc-menu-link.active {
    background: #fafafa;
    color: var(--accent-red, #E6121C);
}

.acc-menu-link i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* 5. STATİK SAYFA TASARIMI */
.static-page-wrapper {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 45px;
    font-family: 'Manrope', sans-serif;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .static-page-wrapper {
        padding: 0 20px;
        margin: 40px auto;
    }
}

.static-page-title {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
}

.static-page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-red, #E6121C);
}

.static-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 30px;
    color: #000;
}

.static-content p {
    color: #444;
    font-size: 14.5px;
    margin-bottom: 20px;
}

.static-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
    color: #444;
}

/* SSS Akordeon */
.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.faq-question {
    background: #fafafa;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-answer {
    padding: 20px 24px;
    display: none;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #555;
    background: #fff;
}

.faq-item.active {
    border-color: #000;
}

.faq-item.active .faq-question {
    background: #fff;
}

.faq-item.active .faq-answer {
    display: block;
}

/* EFRALYA INNER CONTAINER FIX */
.efralya-inner-container {
    max-width: 1440px;
    margin: 200px auto 80px auto !important;
    padding: 0 40px !important;
    font-family: 'Manrope', sans-serif;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .efralya-inner-container {
        margin: 140px auto 40px auto !important;
        padding: 0 15px !important;
    }
}