/* Mega Menü CSS - Temiz Başlangıç */

/* Tüm Ana Menü Linkleri için Cursor */
.main-menu > nav > ul > li > a.header-a {
    cursor: pointer;
}

/* Tıklanamaz Mega Menü Sekmeleri - sadece pointer-events: none */
.main-menu > nav > ul > li > a.header-a[href="#"] {
    pointer-events: none;
}

/* Genel Mega Menü Container */
.mega-menu-container {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    background: #ffe6d7;
    border: 1px solid #ffe6d7;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    box-sizing: border-box;
    width: min(94vw, 1400px);
    max-width: 1400px;
    /* Sayfa yüklenirken açılmasını engelle */
    pointer-events: none;
}

/* Mega menü gösterildiğinde pointer events aktif olsun */
.mega-menu-container.mega-menu-show {
    pointer-events: auto;
}

/* Mega menü içindeki linkler her zaman tıklanabilir olsun */
.mega-menu-container a {
    pointer-events: auto !important;
}

/* Konumlandırma bağlamı: mega menü header altına göre yerleşsin */
.header-bottom { position: relative; }
.main-menu > nav > ul > li { position: static; }

/* Yatay merkez referansı .header-bottom (tam genişlik) olarak kalsın */

/* Mega Menü Hover Efekti - JavaScript ile kontrol ediliyor, CSS hover kaldırıldı */

/* Yeni CSS Class'ları */
.mega-menu-show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) !important;
}

.mega-menu-hide {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* CSS Custom Properties ile positioning */
.mega-menu-container[style*="--mega-menu-top"] {
    position: fixed !important;
    top: var(--mega-menu-top) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: var(--mega-menu-width) !important;
    max-width: var(--mega-menu-max-width) !important;
}

/* Ürünler Mega Menü - 6 Sütunlu Yapı */
.products-mega-menu {
    padding: 30px 25px;
}

.mega-menu-content {
    width: 100%;
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: repeat(6, minmax(160px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;

    font-family: "Inter", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.column-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-list li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.column-list li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: block;
    padding: 2px 0;
}

.column-list li a:hover {
    color: #A3D7C9;
    padding-left: 0px;
    transition: all 0.3s ease;
}

/* ORTAK MEGA MENÜ BOX STİLLERİ */
.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.mega-card {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    border: 1px solid #ecebec;
}

.mega-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
    color: inherit;
}

.mega-card-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mega-card:hover .mega-card-image img {
    transform: scale(1.05);
}

.mega-card-content {
    padding: 10px 10px;
    text-align: left;
    line-height: 5.2;
}

.mega-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.mega-card-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 0px;
    line-height: 1.5;
}

.mega-card-button {
    background: #53565a;
    color: #ffffff;
    padding: 8px 26px;
    border-radius: 16px;
    font-weight: 400;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}

.mega-card:hover .mega-card-button {
    background: #5a9c8a;
    transform: translateY(-2px);
}

/* 4 Adımda Cilt Bakım Ritüeli Mega Menü - Ortak Stil Kullanıyor */
.skincare-ritual-mega-menu {
    padding: 30px 25px;
}

.ritual-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 5px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.ritual-step {
    display: block;
    background: #fff;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.step-image {
    width: 270px;
    height: 200px;
    overflow: hidden;
    position: relative;
    margin: 0 auto 12px auto;
    border-radius: 16px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ritual-step:hover .step-image img {
    transform: scale(1.05);
}

.step-content {
    padding: 20px;
    text-align: center;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.step-description {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .mega-menu-container {
        width: 92vw;
        max-width: 1200px;
    }
    
    .mega-menu-columns {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .ritual-steps-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mega-menu-container {
        width: 95vw;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .main-menu > nav > ul > li:hover .mega-menu-container {
        transform: translateX(-50%);
    }
    
    .mega-menu-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .ritual-steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .products-mega-menu,
    .skincare-ritual-mega-menu {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .mega-menu-columns {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .column-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .column-list li a {
        font-size: 13px;
    }
    
    .step-image {
        width: 150px;
        height: 150px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .step-description {
        font-size: 12px;
    }
}



/* ORTAK MEGA MENÜ CARD TASARIMI - Tüm mega menüler için */
.cilt-bilimi-mega-menu,
.sustainable-beauty-mega-menu,
.markamiz-mega-menu {
    padding: 30px 25px;
}

.cilt-bilimi-grid,
.sustainable-grid,
.markamiz-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(230px, 1fr));
    gap: 25px;
    width: 100%;
    margin: 0 auto;
    justify-content: center;
}

/* Ortak Card Tasarımı */
.cilt-bilimi-card,
.sustainable-card,
.markamiz-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    border: 1px solid #f0f0f0;
}

.cilt-bilimi-card:hover,
.sustainable-card:hover,
.markamiz-card:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-4px);
}

/* Ortak Card Image */
.card-image,
.sustainable-card-image,
.markamiz-card-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img,
.sustainable-card-image img,
.markamiz-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cilt-bilimi-card:hover .card-image img,
.sustainable-card:hover .sustainable-card-image img,
.markamiz-card:hover .markamiz-card-image img {
    transform: scale(1.05);
}

/* Ortak Card Content */
.card-content,
.sustainable-card-content,
.markamiz-card-content {
    padding: 10px;
    text-align: left;
    line-height: 4;
}

.card-title,
.sustainable-card-title,
.markamiz-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
    line-height: 1.3;
}



/* Ortak Card Button */
.card-button,
.sustainable-card-arrow,
.markamiz-card-arrow {
    background: #53565a;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    text-decoration: none;
}

.cilt-bilimi-card:hover .card-button,
.sustainable-card:hover .sustainable-card-arrow,
.markamiz-card:hover .markamiz-card-arrow {
    background: #5a9c8a;
    transform: translateY(-2px);
}

/* Ortak Grid Responsive */
@media (max-width: 1200px) {
    .cilt-bilimi-grid,
    .sustainable-grid,
    .markamiz-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cilt-bilimi-grid,
    .sustainable-grid,
    .markamiz-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cilt-bilimi-mega-menu,
    .sustainable-beauty-mega-menu,
    .markamiz-mega-menu {
        padding: 20px 15px;
    }
    
    .card-content,
    .sustainable-card-content,
    .markamiz-card-content {
        padding: 20px;
    }
    
    .card-title,
    .sustainable-card-title,
    .markamiz-card-title {
        font-size: 18px;
    }
    
    .card-description,
    .sustainable-card-description,
    .markamiz-card-description {
        font-size: 13px;
    }
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area {
        padding: 0px;
    }
}

/* Hover Efektleri */
.mega-column:hover .column-title {
    color: #A3D7C9;
    transition: color 0.3s ease;
}

/* Mobil Mega Menü - Birleştirilmiş Tasarım */
.mobile-mega-menu {
    padding: 0;
    background: #fff;
}

/* Mobil Menü - Sinoz Tarzı Temiz Yapı */
/* TBF artık Sinoz gibi sade bir mobil menü kullanıyor */

.mobile-mega-section {
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
}

.mobile-mega-section:last-child {
    border-bottom: none;
}

.mobile-mega-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    padding: 16px 20px;
    font-family: "Inter", sans-serif;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-mega-title:hover {
    background: #f8f9fa;
    color: #A3D7C9;
}

.mobile-mega-title .arrow {
    font-size: 12px;
    color: #A3D7C9;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.mobile-mega-section.active .mobile-mega-title .arrow {
    transform: rotate(180deg);
}

.mobile-mega-section.active .mobile-mega-title {
    background: #f8f9fa;
    color: #A3D7C9;
}

.mobile-mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f9fa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-mega-section.active .mobile-mega-list {
    max-height: 400px;
}

.mobile-mega-list li {
    margin: 0;
    border-bottom: 1px solid #e9ecef;
}

.mobile-mega-list li:last-child {
    border-bottom: none;
}

.mobile-mega-list li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s ease;
    display: block;
    padding: 14px 20px 14px 35px;
    background: #f8f9fa;
    position: relative;
}

.mobile-mega-list li a:hover {
    color: #A3D7C9;
    background: #fff;
    padding-left: 40px;
}

.mobile-mega-list li a:before {
    content: "•";
    color: #A3D7C9;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

/* Mobil Ritual Menü - Birleştirilmiş Tasarım */
.mobile-ritual-menu {
    padding: 0;
    background: #fff;
}

.mobile-ritual-step {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
}

.mobile-ritual-step:last-child {
    border-bottom: none;
}

.mobile-ritual-step a {
    display: block;
    text-decoration: none;
    color: #2c3e50;
    background: #fff;
    padding: 16px 20px;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-ritual-step a:hover {
    background: #f8f9fa;
    text-decoration: none;
    color: #A3D7C9;
    padding-left: 25px;
}

.mobile-ritual-step a:before {
    content: "→";
    color: #A3D7C9;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-ritual-step a:hover:before {
    opacity: 1;
}

.mobile-ritual-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 6px 0;
    font-family: "Inter", sans-serif;
}

.mobile-ritual-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Mobil menü genişletme animasyonu */
.mobile-menu .menu-item-has-children > .dropdown:not(.mobile-mega-menu):not(.mobile-ritual-menu) {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu .menu-item-has-children.active > .dropdown:not(.mobile-mega-menu):not(.mobile-ritual-menu) {
    max-height: 2000px;
}

.mobile-menu .menu-expand {
    transition: transform 0.3s ease;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    border-radius: 4px;
}

.mobile-menu .menu-expand:hover {
    background: #f8f9fa;
}

.mobile-menu .menu-item-has-children.active .menu-expand {
    transform: rotate(180deg);
}

/* Ana menü item'ları için düzenleme */
.mobile-menu .menu-item-has-children > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.mobile-menu .menu-item-has-children > div a {
    flex-grow: 1;
    text-decoration: none;
    color: #2c3e50;
    padding: 0;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.mobile-menu .menu-item-has-children > div span {
    flex-grow: 0;
    color: #2c3e50;
    font-family: "Inter", sans-serif;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none;
    padding: 0;
}

/* Tüm ana menü item'ları için aynı stil */
.mobile-menu .menu-item-has-children > a {
    color: #2c3e50 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    font-family: "DM Sans", sans-serif !important;
    text-decoration: none;
    padding: 0;
}

/* Mega menü özel animasyonu */
.mobile-menu .menu-item-has-children .dropdown.mobile-mega-menu,
.mobile-menu .menu-item-has-children .dropdown.mobile-ritual-menu,
.mobile-menu .menu-item-has-children .dropdown.mobile-sustainable-menu,
.mobile-menu .menu-item-has-children .dropdown.mobile-markamiz-menu {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: block !important;
}

.mobile-menu .menu-item-has-children.active .dropdown.mobile-mega-menu,
.mobile-menu .menu-item-has-children.active .dropdown.mobile-ritual-menu,
.mobile-menu .menu-item-has-children.active .dropdown.mobile-sustainable-menu,
.mobile-menu .menu-item-has-children.active .dropdown.mobile-markamiz-menu {
    max-height: 9999px !important; /* İçerik kesilmesin */
}

/* Sürdürülebilir Güzellik - Ortak tasarım kullanıyor */

/* Mobil Sürdürülebilir Menü - Birleştirilmiş Tasarım */
.mobile-sustainable-menu {
    padding: 0;
    background: #fff;
}

.mobile-sustainable-step {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
}

.mobile-sustainable-step:last-child {
    border-bottom: none;
}

.mobile-sustainable-step a {
    display: block;
    background: #fff;
    padding: 16px 20px;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-sustainable-step a:hover {
    background: #f8f9fa;
    text-decoration: none;
    color: #A3D7C9;
    padding-left: 25px;
}

.mobile-sustainable-step a:before {
    content: "→";
    color: #A3D7C9;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-sustainable-step a:hover:before {
    opacity: 1;
}

.mobile-sustainable-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 6px 0;
    line-height: 1.3;
    font-family: "Inter", sans-serif;
}

.mobile-sustainable-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Responsive - Ortak tasarım kullanıyor */

/* Markamız - Ortak tasarım kullanıyor */

/* Mobil Markamız Menü - Birleştirilmiş Tasarım */
.mobile-markamiz-menu {
    padding: 0;
    background: #fff;
}

.mobile-markamiz-step {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
}

.mobile-markamiz-step:last-child {
    border-bottom: none;
}

.mobile-markamiz-step a {
    display: block;
    padding: 16px 20px;
    background: #fff;
    text-decoration: none;
    color: #2c3e50;
    transition: all 0.2s ease;
    position: relative;
}

.mobile-markamiz-step a:hover {
    background: #f8f9fa;
    text-decoration: none;
    color: #A3D7C9;
    padding-left: 25px;
}

.mobile-markamiz-step a:before {
    content: "→";
    color: #A3D7C9;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mobile-markamiz-step a:hover:before {
    opacity: 1;
}

.mobile-markamiz-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #2c3e50;
    font-family: "Inter", sans-serif;
}

.mobile-markamiz-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Sticky Header CSS */
.sticky-bar.sticky {
    position: fixed !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    left: 0 !important;
    border-bottom: 2px solid #ffe6d7;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
    background: #ffe6d7;
}


    .sticky-bar.sticky .logo.logo-width-1 {
        border-radius: 50%;
        background: #FF6C08;
        background: no-repeat;
        padding: 10px;
        overflow: hidden;
        scale: 1.4;
         border: none; 
  
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobil Menü Genel CSS */
.mobile-menu-active .body-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-header-wrapper-style {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0;
}

/* Mobil menü açıkken görünürlük */
.mobile-header-active.open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s ease;
}

/* Body scroll kilidi */
body.no-scroll {
    overflow: hidden;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav {
    height: 100%;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li a i {
    margin-right: 5px;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:hover > a {
    color: #290a0b;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:last-child {
    margin-bottom: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info:hover > a {
    color: #290a0b;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info a:hover {
    color: #290a0b;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-header-info-wrap .single-mobile-header-info .lang-curr-dropdown ul li a:hover {
    color: #290a0b;
}

/* Mobil Menü Detay CSS */
    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li {
        display: block;
    position: relative;
        padding: 0px 0;
        border-bottom: 1px solid #ececec; /* default */
    }

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li:last-child {
    border-bottom: none;
}

/* Üstteki basit linkler (children olmayan) daha soft görünsün */
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li:not(.menu-item-has-children) {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li:not(.menu-item-has-children) > a {
    display: block;
    padding: 16px 18px;
    min-height: 52px;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li:not(.menu-item-has-children) > a:hover {
    background: #f8f9fa;
}

        .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children .menu-expand {
            right: 8px;
            position: absolute;
            cursor: pointer;
            z-index: 9;
            text-align: center;
            width: 30px;
            height: 30px;
            line-height: 30px;
            background: rgba(255, 255, 255, .1);
            border-radius: 3px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }
/* Mobile context: use flex alignment instead of absolute for consistent row height */
.mobile-menu .menu-item-has-children > div .menu-expand {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 12px;
}
/* Nested rows slightly smaller arrow */
.mobile-menu .mobile-mega-menu .mobile-submenu > li.menu-item-has-children > div .menu-expand,
.mobile-menu .mobile-submenu > li.menu-item-has-children > div .menu-expand {
    width: 36px;
    height: 36px;
    line-height: 36px;
}
ul.dropdown.dropdown-head.mobile-mega-menu li {
    padding: 0 !important; /* yükseklik anchor'dan gelsin */
}

    .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children .menu-expand i {
        font-size: 14px;
        font-weight: 300;
        color: black;
    }

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children.active > .menu-expand {
    background: rgba(255, 255, 255, .2);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li.menu-item-has-children.active > .menu-expand i::before {
    content: "\f112";
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul {
    padding: 0px 0 0 5px;
}



            .mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.menu-item-has-children .menu-expand {
                top: 19px;
                right: 8px;
            }

li.menu-item-has-children.active {
    margin-top: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li a {
    font-size: 14px;
    display: block;
    font-weight: 500;
    color: #333;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li ul {
    margin-top: 0;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu li ul li.menu-item-has-children.active {
    padding-bottom: 0;
}

/* Responsive Görünüm Kontrolü */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Mobil menüde desktop içeriği gizle */
.mobile-menu .desktop-only {
    display: none !important;
}

.mobile-menu .mobile-only {
    display: block !important;
}

/* Mobil Responsive Tasarım */
@media (max-width: 480px) {
    .mobile-mega-title {
        padding: 8px 9px;
        font-size: 14px;
        font-weight: 500;
    }
    
    .mobile-mega-list li a {
        padding: 10px 15px 10px 35px;
        font-size: 13px;
    }
    
    .mobile-ritual-step a,
    .mobile-sustainable-step a,
    .mobile-markamiz-step a {
        padding: 12px 15px;
    }
    
    .mobile-ritual-content h4,
    .mobile-sustainable-content h4,
    .mobile-markamiz-content h4 {
        font-size: 15px;
    }
    
    .mobile-ritual-content p,
    .mobile-sustainable-content p,
    .mobile-markamiz-content p {
        font-size: 13px;
    }
}

/* Mobile Submenu Styles */
.mobile-menu .mobile-submenu {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #f8f9fa;
    margin: 8px 0 0 0;
    border-radius: 8px;
    display: block !important;
    border: 1px solid #e9ecef;
    position: relative;
    z-index: 0;
}

.mobile-menu .menu-item-has-children.active .mobile-submenu {
    max-height: 1200px !important;
    margin: 8px 0 12px 0;
}

/* Mega menu içindeki submenu'ler için özel stil */
.mobile-menu .mobile-mega-menu .mobile-submenu {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
    margin: 8px 0 0 0;
    border-radius: 8px;
    border: 1px solid #ffffff;
    display: block !important;
    position: relative;
    z-index: 0;
}

.mobile-menu .mobile-mega-menu .menu-item-has-children.active .mobile-submenu {
    max-height: 900px !important;
    margin: 8px 0 12px 0;
}

/* Submenu içindeki child menüler için ayrı stil */
.mobile-menu .mobile-submenu .menu-item-has-children .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
    margin: 2px 0;
    border-radius: 6px;
}

.mobile-menu .mobile-submenu .menu-item-has-children.active .dropdown {
    max-height: 800px;
}

/* Mega menu içindeki tüm submenu'ler için genel stil */
.mobile-menu .mobile-mega-menu .menu-item-has-children .dropdown {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    margin: 5px 0;
    border-radius: 5px;
}

.mobile-menu .mobile-mega-menu .menu-item-has-children.active .dropdown {
    max-height: 500px !important;
}

/* Mobil menü genel düzenleme */
.mobile-menu {
    padding: 10px 0;
}

.mobile-menu .menu-item-has-children {
    position: relative;
    margin-bottom: 8px;
    z-index: 2;
}

.mobile-menu .menu-item-has-children:last-child {
    margin-bottom: 0;
}

    .mobile-menu .menu-item-has-children > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px; /* top-level */
        background: #fff;
        border-radius: 5px;
        transition: all 0.25s ease;
        position: relative;
        z-index: 1;
        min-height: 52px; /* top-level yükseklik */
    }



    .mobile-menu .menu-item-has-children.active > div {
        background: #ffffff;
        border-color: #A3D7C9;
    }

.mobile-menu .menu-item-has-children > div span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
    margin-right: 10px;
}

.mobile-menu .menu-expand {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid #e9ecef;
}

.mobile-menu .menu-expand:hover {
    background: #A3D7C9;
    color: #fff;
    border-color: #A3D7C9;
    transform: scale(1.1);
}

.mobile-menu .menu-expand i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

    .mobile-menu .menu-item-has-children.active > div .menu-expand {
        background: #A3D7C9;
        color: #fff;
        border-color: #cee3dd;
    }

.mobile-menu .menu-item-has-children.active > div .menu-expand i {
    transform: rotate(180deg);
}

.mobile-menu .mobile-submenu li {
    border-bottom: 1px solid #e9ecef;
}

.mobile-menu .mobile-submenu li:last-child {
    border-bottom: none;
}

/* Padding Normalizasyonu - iç içe menülerde padding birikmesin */
.mobile-menu,
.mobile-menu ul,
.mobile-menu li {
    list-style: none;
}

/* Tüm li'larda padding/margin sıfır – dikey boşluğu sadece satır (div/a) yönetir */
.mobile-menu li { padding: 0; margin: 0; }

/* Tüm mobile menu UL'lerinde sol padding'i sıfırla */
.mobile-menu ul { 
    padding-left: 0; 
    margin-left: 0; 
}

/* Üst seviye item */
    .mobile-menu > li.menu-item-has-children > div {
        padding: 16px 18px;
        min-height: 52px;
    }

/* Mega menü içindeki alt seviye item */
    .mobile-menu .mobile-mega-menu > li.menu-item-has-children > div,
    .mobile-menu .mobile-submenu > li.menu-item-has-children > div {
        padding: 14px 16px; /* nested header */
        min-height: 48px;
    }

    .mobile-menu .mobile-mega-menu .mobile-submenu > li.menu-item-has-children > div .menu-expand {
        width: 36px;
        height: 36px;
    }

/* Daha derin seviyeler için de aynı kuralı uygula */
.mobile-menu .mobile-submenu .mobile-submenu > li.menu-item-has-children > div,
.mobile-menu .mobile-mega-menu .mobile-submenu > li.menu-item-has-children > div {
    padding: 14px 16px;
    min-height: 48px;
}

/* İç konteynerlerde (dropdown/submenu) iç padding'i sıfırla, boşluklar li/div tarafından yönetilsin */
.mobile-menu .mobile-submenu,
.mobile-menu .mobile-mega-menu,
.mobile-menu .menu-item-has-children > .dropdown {
    padding-left: 0;
    padding-right: 0;
}

/* Başlık metni alanının ek iç boşluğu olmasın */
.mobile-menu .menu-item-has-children > div span:first-child {
    margin-right: 10px;
}

.mobile-menu .mobile-submenu a {
    display: block;
    padding: 12px 16px; /* leaf link */
    min-height: 44px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-menu .mobile-submenu a:hover {
    color: #A3D7C9;
    background: #fff;
}

/* Mega menu içindeki submenu linkleri */
.mobile-menu .mobile-mega-menu .mobile-submenu a {
    display: block;
    padding: 12px 16px; /* leaf link */
    min-height: 44px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.mobile-menu .mobile-mega-menu .mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-mega-menu .mobile-submenu a:hover {
    color: #A3D7C9;
    background: #fff;
    padding-left: 25px;
}

.mobile-menu .mobile-mega-menu .mobile-submenu a::before {
    content: "•";
    color: #A3D7C9;
    font-weight: bold;
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu .mobile-mega-menu .mobile-submenu a:hover::before {
    opacity: 1;
}
a.mobile-ritual-item {
    display: flex !important;
    align-items: center;
}
/* 4 Adımda Cilt Bakım Ritüeli - Özel Görseller */
.mobile-menu .mobile-ritual-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    text-decoration: none;
    color: #666;
    transition: all 0.3s ease;
    background: #f8f9fa;
    margin: 3px 0;
    border-radius: 8px;
}

.mobile-menu .mobile-ritual-item:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-ritual-item:hover {
    color: #A3D7C9;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mobile-menu .mobile-ritual-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    margin-right: 15px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-menu .mobile-ritual-content {
    flex: 1;
}

.mobile-menu .mobile-ritual-content h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.mobile-menu .mobile-ritual-content p {
    margin: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

/* Ritüel adımları için özel görseller */
.mobile-menu .mobile-ritual-item[data-step="1"] .mobile-ritual-icon {
    background-image: url('/themes/sinoz/imgs/banner/temizle-arindir.jpg');

}

.mobile-menu .mobile-ritual-item[data-step="2"] .mobile-ritual-icon {
    background-image: url('/themes/sinoz/imgs/banner/nemlendir-guclendir.jpg');

}

.mobile-menu .mobile-ritual-item[data-step="3"] .mobile-ritual-icon {
    background-image: url('/themes/sinoz/imgs/banner/gunesten-koru.jpg');

}

.mobile-menu .mobile-ritual-item[data-step="4"] .mobile-ritual-icon {
    background-image: url('/themes/sinoz/imgs/banner/onar-yenile.jpg');

}


/* === Final Overrides: Height Rhythm Normalization === */
/* Non-accordion top links */
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li:not(.menu-item-has-children) > a,
.mobile-menu > li:not(.menu-item-has-children) > a {
  display: block;
  padding: 16px 18px !important;
  min-height: 52px !important;
  line-height: 1.4;
}

/* Top-level accordion headers */
.mobile-menu > li.menu-item-has-children > div {
  padding: 16px 18px !important;
  min-height: 52px !important;
}

/* Nested accordion headers */
.mobile-menu .mobile-mega-menu > li.menu-item-has-children > div,
.mobile-menu .mobile-submenu > li.menu-item-has-children > div,
.mobile-menu .mobile-submenu .mobile-submenu > li.menu-item-has-children > div,
.mobile-menu .mobile-mega-menu .mobile-submenu > li.menu-item-has-children > div {
  padding: 14px 16px !important;
  min-height: 48px !important;
}

/* Leaf links inside any submenu */
.mobile-menu .mobile-submenu a,
.mobile-menu .mobile-mega-menu .mobile-submenu a,
.mobile-menu .menu-item-has-children > .dropdown:not(.mobile-mega-menu):not(.mobile-ritual-menu) a {
  padding: 12px 16px !important;
  min-height: 44px !important;
  display: block;
}

/* NEW: Sections like “Cilt Bilimi”, “Sürdürülebilir Güzellik”, “Markamız”
   use direct li > a under .dropdown.dropdown-head.mobile-mega-menu.
   Normalize those links so they match Products submenu styling. */
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid #e9ecef;
}
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li:last-child { border-bottom: none; }
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li > a {
  display: block;
  padding: 14px 16px !important; /* bir tık daha ferah */
  min-height: 44px !important;
  color: #2c3e50;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li > a:hover { background: #f8f9fa; color: #2c3e50; }

/* === Cross-browser Precise Height Overrides (no :has) === */
/* Top-level SIMPLE links: li > a (no header div, no expand) */
.mobile-menu > li.menu-item-has-children > a {
    display: block;
    padding: 8px 5px !important;
    min-height: 52px !important;
    line-height: 1.4;
}

/* Top-level ACCORDION headers: li > div (with expand inside) */
.mobile-menu > li.menu-item-has-children > div {
    padding: 5px 5px !important;
    min-height: 52px !important;
}

/* Nested ACCORDION headers inside mega/submenus: li > div */
.mobile-menu .mobile-mega-menu > li.menu-item-has-children > div,
.mobile-menu .mobile-submenu > li.menu-item-has-children > div,
.mobile-menu .mobile-submenu .mobile-submenu > li.menu-item-has-children > div,
.mobile-menu .mobile-mega-menu .mobile-submenu > li.menu-item-has-children > div {
    padding: 14px 19px 14px 30px !important;
    min-height: 30px !important;
}

/* Leaf links inside any submenu: li > a */
.mobile-menu .mobile-submenu > li > a,
.mobile-menu .mobile-mega-menu .mobile-submenu > li > a,
.mobile-menu .menu-item-has-children > .dropdown:not(.mobile-mega-menu):not(.mobile-ritual-menu) > li > a,
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li > a {
  padding: 12px 46px !important; /* align with nested header indent */
  min-height: 44px !important;
}

/* ===== MobileMenuV2 - Visual Polish (mobile only) ===== */
body.mobile-menu-v2 .mmv2-toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 10px 14px;
}
body.mobile-menu-v2 .mmv2-toolbar-inner{
  display:flex;align-items:center;justify-content:space-between;gap:8px;
}
body.mobile-menu-v2 .mmv2-title{font-size:16px;font-weight:600;color:#2c3e50}
body.mobile-menu-v2 .mmv2-close{
  width:36px;height:36px;border-radius:8px;border:1px solid #e9ecef;background:#fff;color:#2c3e50;cursor:pointer;
}
body.mobile-menu-v2 .mmv2-close:hover{background:#f8f9fa}

/* Hide legacy close button to avoid duplicate X when V2 active */
body.mobile-menu-v2 .mobile-header-wrapper-inner .mobile-menu-close { display: none !important; }

/* Focus-visible for accessibility */
body.mobile-menu-v2 .mobile-menu a:focus-visible,
body.mobile-menu-v2 .mobile-menu button:focus-visible,
body.mobile-menu-v2 .mobile-menu .menu-expand:focus-visible{
  outline:2px solid #A3D7C9; outline-offset:2px; border-radius:8px;
}

/* Overlay polish */
body.mobile-menu-active .body-overlay{
  background: rgba(0,0,0,0.3) !important;
  backdrop-filter: blur(2px);
}

/* Consistent transitions */
body.mobile-menu-v2 .mobile-menu .mobile-submenu,
body.mobile-menu-v2 .mobile-menu .mobile-mega-menu,
body.mobile-menu-v2 .mobile-menu .menu-item-has-children > .dropdown{
  transition: max-height 0.26s ease !important;
}

/* Subtle hover */
body.mobile-menu-v2 .mobile-menu > li:not(.menu-item-has-children) > a:hover,
body.mobile-menu-v2 .mobile-menu .menu-item-has-children > div:hover {
    background: #ffffff;
}

/* Arrow sizing and alignment */
.mobile-menu > li.menu-item-has-children > div .menu-expand {
  position: static !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  -webkit-transform: none !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  margin-left: 12px !important;
}

.mobile-menu .mobile-mega-menu > li.menu-item-has-children > div .menu-expand,
.mobile-menu .mobile-submenu > li.menu-item-has-children > div .menu-expand,
.mobile-menu .mobile-submenu .mobile-submenu > li.menu-item-has-children > div .menu-expand {
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
}

/* Divider and margins consistency */
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li {
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
  margin: 0 !important;
  padding: 0 !important;
}
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li:last-child {
  border-bottom: none !important;
}

/* Remove inner list paddings to avoid compounding */
.mobile-menu ul { padding-left: 0 !important; margin-left: 0 !important; }
.mobile-menu li { padding: 0 !important; margin: 0 !important; }
ul.dropdown.dropdown-head.mobile-mega-menu li { padding: 0 !important; }

/* Typography Harmony */
.mobile-menu > li.menu-item-has-children > div span:first-child,
.mobile-menu > li:not(.menu-item-has-children) > a {
  font-size: 15px !important;
  font-weight: 500 !important;
}
.mobile-menu .mobile-mega-menu > li.menu-item-has-children > div span:first-child,
.mobile-menu .mobile-submenu > li.menu-item-has-children > div span:first-child { 
  font-size: 14px !important; 
  font-weight: 500 !important; 
}
.mobile-menu .mobile-submenu a { font-size: 14px !important; font-weight: 400 !important; }

/* ===== The Bath Factory - Ürünler Mega Menü ===== */
.tbf-products-mega-menu {
    padding: 25px 30px;
    background: #ffe6d7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 1230px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

.product-category-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.product-category-card::before {
    display: none;
}

.product-category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 140px;
    height: 140px;
    overflow: hidden;
    background: linear-gradient(135deg, #FF8C35 0%, #FF6C08 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(255, 108, 8, 0.2);
    transition: all 0.3s ease;
}

.product-category-card:hover .category-image {
    box-shadow: 0 6px 20px rgba(255, 108, 8, 0.35);
    transform: translateY(-3px);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 2;
    width: 69%;
}

.category-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: "Inter", sans-serif;
    transition: color 0.3s ease;
}

.product-category-card:hover .category-title {
    color: #FF6C08;
}

.category-title-img {
    max-width: 120px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
}

.category-subtitle {
    font-size: 13px;
    color: #666;
    margin: 6px 0;
    line-height: 1.4;
}

.category-subtitle-link {
    font-size: 11px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
    display: block;
}

.category-subtitle-link:hover {
    color: #FF6C08;
    text-decoration: none;
    padding-left: 3px;
}

.category-link-all {
    display: inline-block;
    margin-top: 0px;
    font-size: 12px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    padding-top: 0px;
}

.category-link-all:hover {
    color: #FF8C35;
    text-decoration: underline;
}

.category-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: #FF6C08;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: #FF8C35;
    text-decoration: underline;
}

/* Büyük Feature Kart */
.product-category-card.feature-card {
    grid-column: span 1;
    background: linear-gradient(135deg, #FF6C08 0%, #FF8C35 100%);
}

.category-image-large {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.category-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    text-align: center;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.category-link-white {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.category-link-white:hover {
    background: #fff;
    color: #FF6C08;
}

/* ===== The Bath Factory - Duşta Eğlence Mega Menü ===== */
.tbf-fun-mega-menu {
    padding: 20px;
    background: #fff;
}

.fun-content-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sol Banner Bölümü */
.fun-banner-section {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fun-banner-link {
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fun-banner-link:hover {
    transform: scale(1.02);
}

.fun-banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
}

.banner-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    font-family: "Inter", sans-serif;
}

.banner-overlay p {
    font-size: 14px;
    margin: 0;
    color: #fff;
    opacity: 0.9;
}

/* Sağ Blog Bölümü */
.fun-blog-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 2px solid #FF6C08;
}

.blog-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: "Inter", sans-serif;
}

.view-all-blogs {
    font-size: 13px;
    font-weight: 600;
    color: #FF6C08;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-blogs:hover {
    color: #FF8C35;
    text-decoration: underline;
}

/* Blog Slider */
.tbf-blog-slider {
    position: relative;
}

.blog-slide-item {
    padding: 0 8px;
}

.blog-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #FF6C08;
    text-decoration: none;
}

.blog-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #fff9e6;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 16px;
}

.blog-date {
    display: inline-block;
    font-size: 11px;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: "Inter", sans-serif;
}

.blog-excerpt {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card:hover .blog-title {
    color: #FF6C08;
}

/* Slick Slider Okları */
.tbf-blog-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #FF6C08;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.tbf-blog-slider .slick-arrow:hover {
    background: #FF8C35;
    transform: translateY(-50%) scale(1.1);
}

.tbf-blog-slider .slick-prev {
    left: -20px;
}

.tbf-blog-slider .slick-next {
    right: -20px;
}

.tbf-blog-slider .slick-arrow i {
    font-size: 16px;
}

/* Slick Dots */
.tbf-blog-slider .slick-dots {
    bottom: -35px;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.tbf-blog-slider .slick-dots li {
    margin: 0;
}

.tbf-blog-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ddd;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tbf-blog-slider .slick-dots li.slick-active button {
    background: #FF6C08;
    width: 24px;
    border-radius: 5px;
}

.tbf-blog-slider .slick-dots li button:hover {
    background: #FF8C35;
}

/* Responsive */
@media (max-width: 1200px) {
    .tbf-products-mega-menu {
        padding: 20px 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
    
    .category-image {
        height: 130px;
    }
    
    .category-content {
        padding: 12px 8px;
    }
    
    /* Duşta Eğlence Responsive */
    .fun-content-layout {
        grid-template-columns: 320px 1fr;
        gap: 20px;
    }
    
    .fun-banner-link img {
        min-height: 350px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .tbf-products-mega-menu {
        padding: 20px;
    }
    
    .category-image {
        width: 100px;
        height: 100px;
        border-radius: 14px;
    }
    
    .category-image img {
        width: 90%;
        height: 90%;
    }
    
    .category-content {
        padding: 0;
        gap: 4px;
    }
    
    .category-title {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .category-subtitle-link {
        font-size: 10px;
    }
    
    .category-link-all {
        font-size: 9px;
        margin-top: 5px;
        padding-top: 8px;
    }
    
    /* Duşta Eğlence Responsive */
    .fun-content-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .fun-banner-link img {
        min-height: 250px;
    }
    
    .tbf-blog-slider .slick-arrow {
        width: 36px;
        height: 36px;
    }
    
    .tbf-blog-slider .slick-prev {
        left: -18px;
    }
    
    .tbf-blog-slider .slick-next {
        right: -18px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tbf-products-mega-menu,
    .tbf-fun-mega-menu {
        padding: 15px;
    }
    
    .category-image {
        width: 90px;
        height: 90px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .category-image img {
        width: 90%;
        height: 90%;
    }
    
    .product-category-card {
        border-radius: 0;
    }
    
    .category-content {
        padding: 0;
    }
    
    .category-title {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .category-subtitle-link {
        font-size: 9px;
    }
    
    /* Duşta Eğlence Mobilde Gizle */
    .tbf-fun-mega-menu {
        display: none !important;
    }
    
    /* Mobil Category Header Düzenlemeleri */
    .mobile-category-icon {
        width: 45px;
        height: 45px;
        border-radius: 8px;
    }
    
    .mobile-category-header {
        padding: 12px 14px !important;
        min-height: 55px !important;
    }
    
    .mobile-category-name {
        font-size: 14px !important;
    }
    
    .mobile-category-item .mobile-submenu li a {
        padding: 10px 16px 10px 70px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .category-image {
        height: 120px;
    }
    
    .category-content {
        padding: 12px 10px;
    }
    
    .mobile-category-icon {
        width: 40px;
        height: 40px;
    }
    
    .mobile-category-header {
        padding: 10px 12px !important;
        min-height: 50px !important;
        gap: 10px;
    }
    
    .mobile-all-products {
        padding: 14px 16px !important;
        font-size: 14px !important;
    }
    
    .mobile-category-item .mobile-submenu li a {
        padding: 10px 14px 10px 60px !important;
    }
}

/* ===== Modern Slide Navigation System ===== */
/* Mobil menü container - slide için hazırlık */
.mobile-header-wrapper-style {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  height: -webkit-fill-available; /* iOS Safari fix */
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  /* iOS scroll optimization */
  -webkit-overflow-scrolling: touch;
}

.mobile-header-wrapper-style.open {
  transform: translateX(0);
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mobile-header-wrapper-style .mobile-header-content-area {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Main panel - footer ile birlikte scroll */
.mobile-header-wrapper-style .mobile-menu-wrap.main-panel {
  position: relative;
  z-index: 1;
}

/* Ana menü ve sub-panel'ler için genel yapı */
.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    /* iOS safe area için ekstra padding */
    padding-bottom: 60px;
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

/* Ana menü her zaman görünür */
.mobile-menu-panel.main-panel {
  position: relative;
  transform: translateX(0);
  z-index: 1;
}

/* Aktif sub-panel slide ile gelir */
.mobile-menu-panel.active {
  transform: translateX(0);
  z-index: 2;
}

/* Panel header (geri butonu için) */
.mobile-panel-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  min-height: 56px;
}

.mobile-panel-back {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #2c3e50;
  font-size: 20px;
  padding: 0;
  flex-shrink: 0;
}

.mobile-panel-back i::before {
  content: "‹" !important; /* Sol ok */
  font-family: inherit !important;
  font-weight: 300 !important;
  font-size: 32px !important;
  font-style: normal !important;
  line-height: 1 !important;
}

.mobile-panel-back:active {
  transform: scale(0.9);
}

.mobile-panel-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  flex: 1;
}

/* Ana menüdeki tüm okları sağa çevir */
.mobile-menu .menu-expand i::before,
.mobile-menu .menu-item-has-children .menu-expand i::before {
  content: "›" !important; /* Unicode sağ ok */
  font-family: inherit !important;
  font-weight: 300;
  font-size: 24px;
  transform: none !important;
}

/* Body overlay - menü genişliğini dışla */
.body-overlay {
    position: fixed;
    top: 0;
    left: inherit;
    right: 0;
    width: 27%;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-active .body-overlay {
  opacity: 1;
  visibility: visible;
}

/* ===== TBF Mobil Menü - Sinoz Tarzı Temiz Görünüm ===== */
/* iOS Optimizasyonları ve Slide Panel Yapısı */

/* Mobil menü container - iOS optimizasyonu */
.mobile-header-wrapper-style {
    position: fixed;
    top: 0;
    left: 0;
    width: 87%;
    height: 100vh;
    height: -webkit-fill-available; /* iOS Safari fix */
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    /* iOS scroll optimization */
    -webkit-overflow-scrolling: touch;
}

.mobile-header-wrapper-style.open {
  transform: translateX(0);

}


    .mobile-header-wrapper-style.open {
   
        background: #FDE4D5;
    }

.mobile-header-wrapper-style .mobile-header-wrapper-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mobile-header-wrapper-style .mobile-header-content-area {
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Ana menü ve sub-panel'ler için genel yapı */
.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    /* iOS safe area için ekstra padding */
    padding-bottom: 60px;
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

/* Ana menü her zaman görünür */
.mobile-menu-panel.main-panel {
  position: relative;
  transform: translateX(0);
  z-index: 1;
}

/* Aktif sub-panel slide ile gelir */
.mobile-menu-panel.active {
  transform: translateX(0);
  z-index: 2;
}

/* Panel header (geri butonu için) */
.mobile-panel-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  min-height: 56px;
}

.mobile-panel-back {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #2c3e50;
  font-size: 20px;
  padding: 0;
  flex-shrink: 0;
}

.mobile-panel-back i::before {
  content: "‹" !important; /* Sol ok */
  font-family: inherit !important;
  font-weight: 300 !important;
  font-size: 32px !important;
  font-style: normal !important;
  line-height: 1 !important;
}

.mobile-panel-back:active {
  transform: scale(0.9);
}

.mobile-panel-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  flex: 1;
}

/* TBF Özel: Menü item'larının arkaplan rengini kaldır */
.mobile-menu > li.menu-item-has-children > div {
    background: transparent !important;
    min-height: 52px !important;
}

.mobile-menu .menu-item-has-children.active > div {
    background: transparent !important;
}

/* TBF Özel: Arrow border ve background kaldır */
.mobile-menu .menu-expand {
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    color: #bdc3c7;
}

.mobile-menu .menu-expand i::before {
  content: "›" !important; /* Unicode sağ ok */
  font-family: inherit !important;
  font-weight: 300;
  font-size: 24px;
  transform: none !important;
}

.mobile-menu .menu-item-has-children.active > div .menu-expand {
    background: transparent !important;
    border: none !important;
}

/* TBF Özel: Dropdown arkaplan renkleri */
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu,
.mobile-menu .mobile-submenu {
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* TBF Özel: Normal font-weight */
.mobile-menu > li.menu-item-has-children > div span:first-child {
    font-weight: 500 !important;
    font-size: 15px !important;
    color: #2c3e50;
}

/* Dropdown itemleri için border ve height */
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li:last-child {
    border-bottom: none;
}

.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li > a {
    display: block;
    padding: 14px 20px !important;
    min-height: 48px !important;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}

/* Submenu items */
.mobile-menu .mobile-submenu > li {
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu .mobile-submenu > li:last-child {
    border-bottom: none;
}

.mobile-menu .mobile-submenu > li > a {
    display: block;
    padding: 12px 20px !important;
    min-height: 44px !important;
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

/* Body overlay - menü genişliğini dışla */
.body-overlay {
    position: fixed;
    top: 0;
    left: 320px; /* Menü genişliği kadar boşluk */
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-active .body-overlay {
  opacity: 1;
  visibility: visible;
}

/* Ana menü item'ları için düzenli height */
.mobile-menu .menu-item-has-children > div,
.mobile-menu .menu-item-has-children > a {
    display: flex !important;
    align-items: center !important;
    padding: 16px 0 !important;
    min-height: 52px !important;
}

.mobile-menu .menu-expand {
    width: 32px;
    height: 32px;
    min-width: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdc3c7;
    transition: all 0.2s ease;
}

.mobile-menu .menu-expand:hover {
    color: #FF6A08;
}

/* Sinoz ok stili - temiz unicode arrow */
.mobile-menu .menu-expand i::before {
    content: "›" !important;
    font-family: inherit !important;
    font-weight: 300 !important;
    font-size: 28px !important;
    font-style: normal !important;
    transform: none !important;
    line-height: 1 !important;
}

.mobile-menu .menu-item-has-children .menu-expand i::before {
    content: "›" !important;
    font-family: inherit !important;
    font-weight: 300 !important;
    font-size: 28px !important;
    font-style: normal !important;
}

.mobile-menu .menu-item-has-children.active .menu-expand i::before {
    content: "›" !important;
    transform: none !important;
}

/* Ok icon'ları için genel override - Sinoz stili */
.mobile-menu i.fi-rs-angle-right::before,
.mobile-menu i.fi-rs-angle-small-down::before,
.mobile-menu .fi-rs-angle-right::before,
.mobile-menu .fi-rs-angle-small-down::before {
    content: "›" !important;
    font-family: inherit !important;
    font-weight: 300 !important;
    font-size: 28px !important;
    font-style: normal !important;
}

/* Submenu linkleri için düzenli height */
.mobile-menu .dropdown li a {
    display: flex !important;
    align-items: center !important;
    min-height: 44px !important;
    padding: 12px 15px !important;
}

.mobile-menu .view-all-link {
    color: #FF6A08 !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 44px !important;
}

/* Mobil menüde grid layoutu gizle, sadece liste */
.mobile-menu .products-grid,
.mobile-menu .category-grid {
    display: none !important;
}

/* Mobilde img içeren tüm elementleri gizle (kategori iconları vs) */
.mobile-menu img:not(.mob-logo):not(.mobile-header-logo img) {
    display: none !important;
}

/* Mobile products menu - temiz liste görünümü */
.mobile-products-menu {
    padding: 0 !important;
    margin: 0 !important;
}

.mobile-products-menu > li {
    border-bottom: 1px solid #f5f5f5;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    list-style: none;
}

.mobile-products-menu > li:last-child {
    border-bottom: none;
}

/* Mobil menü genel düzen */
.mobile-menu {
    padding: 0;
    margin: 0;
}

.mobile-menu > nav > ul {
    padding: 0;
    margin: 0;
}

.mobile-menu > nav > ul > li {
    min-height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Media Query - Mobil cihazlarda kesinlikle gizle */
@media (max-width: 768px) {
    .mobile-category-icon,
    div.mobile-category-icon,
    .mobile-menu .mobile-category-icon,
    .mobile-header-active .mobile-category-icon,
    li.mobile-category-item .mobile-category-icon {
        display: none !important;
        visibility: hidden !important;
        width: 0 !important;
        height: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        pointer-events: none !important;
    }
    
    /* Mobil menüde kategori iconlarını içeren img'leri gizle */
    .mobile-menu img[src*="menu-"],
    .mobile-menu img[alt*="Jeli"],
    .mobile-menu img[alt*="Peeling"],
    .mobile-menu img[alt*="Sprey"],
    .mobile-menu img[alt*="Losyon"],
    img[src*="/theme/tbf/menu-"],
    img[src*="menu-dus"],
    img[src*="menu-peeling"],
    img[src*="menu-sprey"],
    img[src*="menu-losyon"] {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
    }
}

/* ===== TBF Mobil Menü - Slide Navigation (Sinoz'dan Kopyalandı) ===== */

/* Mobile Menu V2 - Body class */
body.mobile-menu-v2 {
    overflow: hidden;
}

/* Slide Navigation Wrapper */
.mobile-header-wrapper-style .mobile-header-content-area {
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Main panel - relative positioning */
.mobile-header-wrapper-style .mobile-menu-wrap.main-panel {
    position: relative;
    z-index: 1;
}

/* Panel sistemi - tüm slide paneller */
.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fde4d5;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1;
    padding-bottom: 60px;
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

/* Ana menü her zaman görünür */
.mobile-menu-panel.main-panel {
    position: relative;
    transform: translateX(0);
    z-index: 1;
}

/* Aktif sub-panel slide ile gelir */
.mobile-menu-panel.active {
    transform: translateX(0);
    z-index: 2;
}

/* Panel header (geri butonu) */
.mobile-panel-header {
    position: sticky;
    top: 0;
    background: #fde4d5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 18px;
    display: flex !important;
    align-items: center;
    gap: 12px;
    z-index: 10;
    min-height: 56px;
    margin-bottom: 0 !important;
}

.mobile-panel-back {
    width: 32px;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    opacity: 1 !important;
    visibility: visible !important;
    cursor: pointer;
}

.mobile-panel-back img {
    width: 20px;
    height: 20px;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-panel-title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-transform: none !important;
}

/* Panel içindeki list item'lar */
.mobile-menu-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .mobile-menu-panel ul li {
        border-bottom: 1px solid rgb(178 75 8 / 19%);
        margin: 0;
        padding: 0;
    }

.mobile-menu-panel ul li:first-child {
    border-top: none !important;
}

.mobile-menu-panel ul li:last-child {
    border-bottom: none;
}

/* Normal linkler için */
    .mobile-menu-panel ul li > a,
    .mobile-menu-panel-links li a {
        display: flex;
        align-items: center;
        padding: 16px 18px;
        height: 52px;
        color: #2c3e50;
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.4;
        background: #fde4d5;
        -webkit-tap-highlight-color: rgba(163, 215, 201, 0.2);
        touch-action: manipulation;
        cursor: pointer;
    }

.mobile-menu-panel ul li > a:active,
.mobile-menu-panel-links li a:active {
    background: #f8f9fa;
}

/* Nested panel links */
.mobile-menu-panel-links {
    list-style: none;
    padding: 0 0 60px 0;
    padding: 0 0 calc(60px + env(safe-area-inset-bottom)) 0;
    margin: 0;
}

.mobile-menu-panel-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-panel-links li:last-child {
    border-bottom: none;
}

/* Slide panellerdeki accordion'lar KAPALI başlasın */
.mobile-menu-panel:not(.main-panel) .menu-item-has-children > .dropdown,
.mobile-menu-panel:not(.main-panel) .menu-item-has-children > .mobile-submenu {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-panel:not(.main-panel) .menu-item-has-children.active > .dropdown,
.mobile-menu-panel:not(.main-panel) .menu-item-has-children.active > .mobile-submenu {
    max-height: 2000px !important;
}


    .mobile-menu-panel .menu-item-has-children > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        height: 52px;
        background: #fde4d5;
        cursor: pointer;
        transition: all 0.2s ease;
        -webkit-tap-highlight-color: rgba(163, 215, 201, 0.2);
        touch-action: manipulation;
        -webkit-user-select: none;
        user-select: none;
    }

.mobile-menu-panel .menu-item-has-children > div:active {
    background: #f8f9fa;
}

.mobile-menu-panel .menu-item-has-children > div span:first-child {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    margin-right: 12px;
}

.mobile-menu-panel .menu-item-has-children .menu-expand {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 6px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    border: none;
}

    .mobile-menu-panel .menu-item-has-children .menu-expand i {
        font-size: 14px;
        color: #666;
    }

.mobile-menu-panel .menu-item-has-children .menu-expand:active i {
    color: #FF6C08;
}

/* Ana menü wrapper */
.mobile-header-wrapper-style .mobile-menu-wrap {
    height: 100%;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Menü navigation kısmı */
.mobile-header-wrapper-style .mobile-menu-wrap nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 60px;
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
}

/* Ana menü listesi */
.mobile-header-wrapper-style .mobile-menu-wrap .mobile-menu {
    padding-bottom: 60px !important;
    padding-bottom: calc(60px + env(safe-area-inset-bottom)) !important;
}

/* Typography Harmony */
.mobile-menu > li.menu-item-has-children > div span:first-child,
.mobile-menu > li:not(.menu-item-has-children) > a {
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px;
}

/* Alt menü item'ları normal (uppercase değil) */
.mobile-menu .mobile-mega-menu > li > a,
.mobile-menu .mobile-submenu > li > a {
    text-transform: none !important;
}

.mobile-menu .mobile-mega-menu > li.menu-item-has-children > div span:first-child,
.mobile-menu .mobile-submenu > li.menu-item-has-children > div span:first-child {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.mobile-menu .mobile-submenu a {
    font-size: 14px !important;
    font-weight: 400 !important;
}

/* Divider and margins consistency */
.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-top: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-header-wrapper-style .mobile-header-wrapper-inner .mobile-header-content-area .mobile-menu-wrap nav .mobile-menu > li:last-child {
    border-bottom: none !important;
}

/* Dropdown açıldığında çift border olmasın */
.mobile-menu > li.menu-item-has-children.active {
    border-bottom: none !important;
}

.mobile-menu > li.menu-item-has-children.active + li {
    border-top: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Remove inner list paddings */
.mobile-menu ul {
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.mobile-menu li {
    padding: 0 !important;
    margin: 0 !important;
}

ul.dropdown.dropdown-head.mobile-mega-menu li {
    padding: 0 !important;
}

/* Menu expand animation */
.mobile-menu .menu-expand {
    transition: transform 0.3s ease;
}

/* Arrow sizing */
.mobile-menu > li.menu-item-has-children > div .menu-expand {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    -webkit-transform: none !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    margin-left: 12px !important;
}

.mobile-menu .mobile-mega-menu > li.menu-item-has-children > div .menu-expand,
.mobile-menu .mobile-submenu > li.menu-item-has-children > div .menu-expand,
.mobile-menu .mobile-submenu .mobile-submenu > li.menu-item-has-children > div .menu-expand {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
}

/* ===== Accordion Animasyonu (Sinoz'dan Kopyalandı) ===== */

/* Normal dropdown'lar için (mega menü değilse) */
.mobile-menu .menu-item-has-children > .dropdown:not(.mobile-mega-menu):not(.mobile-ritual-menu) {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu .menu-item-has-children.active > .dropdown:not(.mobile-mega-menu):not(.mobile-ritual-menu) {
    max-height: 2000px;
}

/* Mega menü özel animasyonu - KRITIK */
.mobile-menu .menu-item-has-children .dropdown.mobile-mega-menu,
.mobile-menu .menu-item-has-children .dropdown.mobile-ritual-menu,
.mobile-menu .menu-item-has-children .dropdown.mobile-sustainable-menu,
.mobile-menu .menu-item-has-children .dropdown.mobile-markamiz-menu {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.4s ease;
    display: block !important; /* KRITIK: display block olmalı */
}

.mobile-menu .menu-item-has-children.active .dropdown.mobile-mega-menu,
.mobile-menu .menu-item-has-children.active .dropdown.mobile-ritual-menu,
.mobile-menu .menu-item-has-children.active .dropdown.mobile-sustainable-menu,
.mobile-menu .menu-item-has-children.active .dropdown.mobile-markamiz-menu {
    max-height: 9999px !important;
}

/* Submenu içindeki child menüler */
.mobile-menu .mobile-submenu .menu-item-has-children .dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #fff;
    margin: 2px 0;
}

.mobile-menu .mobile-submenu .menu-item-has-children.active .dropdown {
    max-height: 800px;
}

/* Mega menu içindeki tüm submenu'ler */
.mobile-menu .mobile-mega-menu .menu-item-has-children .dropdown {
    max-height: 0 !important;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
    margin: 0;
}

.mobile-menu .mobile-mega-menu .menu-item-has-children.active .dropdown {
    max-height: 500px !important;
}

/* Dropdown padding */
.mobile-menu .mobile-submenu,
.mobile-menu .mobile-mega-menu,
.mobile-menu .menu-item-has-children > .dropdown {
    padding-left: 0;
    padding-right: 0;
}

/* Dropdown içindeki linkler */
.mobile-menu .mobile-submenu > li > a,
.mobile-menu .mobile-mega-menu .mobile-submenu > li > a,
.mobile-menu .menu-item-has-children > .dropdown:not(.mobile-mega-menu):not(.mobile-ritual-menu) > li > a,
.mobile-menu .dropdown.dropdown-head.mobile-mega-menu > li > a {
    padding: 12px 46px !important;
    min-height: 44px !important;
    display: block;
    color: #555;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
}

.mobile-menu .mobile-mega-menu > li > a:active,
.mobile-menu .mobile-submenu > li > a:active {
    background: #f8f9fa;
}

/* Touch feedback */
body.mobile-menu-v2 .mobile-menu > li:not(.menu-item-has-children) > a:active,
body.mobile-menu-v2 .mobile-menu .menu-item-has-children > div:active {
    background: #f8f9fa;
}

/* Mobile Header Top Actions */
.mobile-header-top-actions {
    padding: 12px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-header-top-actions .loginNone {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    margin-bottom: 0 !important;
}

.mobile-header-top-actions .unLoginNone-full {
    flex: 1 1 100%;
    margin-bottom: 0 !important;
}

    .mobile-header-top-actions .loginNone a {
        padding: 9px 12px;
        font-size: 13px;
        font-weight: 500;
        justify-content: center;
        background: #FF6A08;
        border: none;
        border-radius: 12px;
        color: #555;
        display: flex;
        align-items: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        color: white;
        max-width: 140px;
        margin: auto;
    }

.mobile-header-top-actions .unLoginNone-full a {
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    justify-content: center;
    background: #FF6C08;
    border: none;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
}

img.mobile-menu-logo {
    max-width: 100px;
    margin-top: 20px;
    margin-bottom: 7px;
}