﻿:root {
    /* Yaşam: Enerji dolu, ferah ve modern */
    --color-yasam-primary: #00A3FF; /* Parlak elektrik mavisi — canlılık ve dinamizm */
    --color-yasam-secondary: #00F7FF; /* Neon cyan — futuristik, ferah parıltı */
    /* Eğitim: Güvenilir, net ve ilham verici */
    --color-egitim-primary: #0066FF; /* Derin kraliyet mavisi — otorite ve netlik */
    --color-egitim-secondary: #4DC3FF; /* Canlı gök mavisi — erişilebilir, modern kontrast */
    /* Kültür: Sanatsal, yaratıcı ve sofistike */
    --color-kultur-primary: #B300FF; /* Canlı magenta mor — sanat ve yaratıcılık patlaması */
    --color-kultur-secondary: #E68AFF; /* Parlak orkide moru — zarif ama enerjik vurgu */
    /* Keşfet: Macera, sıcaklık ve merak uyandırıcı */
    --color-kesfet-primary: #FF4500; /* Ateş turuncusu — tutku ve macera */
    --color-kesfet-secondary: #FFD700; /* Parlak altın sarısı — zengin, sıcak ve davetkâr */
    /* Sağlık: Dikkat çekici, güçlü ve güven verici */
    --color-saglik-primary: #FF2D55; /* Canlı karmen kırmızısı — aciliyet ve sağlık farkındalığı */
    --color-saglik-secondary: #FF8DA1; /* Mercan pembesi — yumuşak ama enerjik geçiş */
    /* Servis: Teknolojik, profesyonel ve güvenilir */
    --color-servis-primary: #304FFE; /* Canlı indigo mavi — güçlü, teknolojik vibe */
    --color-servis-secondary: #8B5CF6; /* Parlak mor — yenilikçi ve modern teknoloji hissi */
}

/* Türkçe */
body.culture-tr .navbar .nav-item .nav-link {
    font-size: 17px;
}

body.culture-tr .category-btn {
    font-size: 17px;
}

/* İngilizce */
body.culture-en .navbar .nav-item .nav-link {
    font-size: 15px;
}

body.culture-en .category-btn {
    font-size: 14px;
}

/* Rusça */
body.culture-ru .navbar .nav-item .nav-link {
    font-size: 13px;
}

body.culture-ru .category-btn {
    font-size: 13px;
}

/* Arapça */
body.culture-ar .navbar .nav-item .nav-link {
    font-size: 17px;
}

body.culture-ar .category-btn {
    font-size: 17px;
}

/* Almanca */
body.culture-de .navbar .nav-item .nav-link {
    font-size: 14px;
}

body.culture-de .category-btn {
    font-size: 15px;
}

/* Japonca */
body.culture-ja .navbar .nav-item .nav-link {
    font-size: 15px;
}

body.culture-ja .category-btn {
    font-size: 16px;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
    min-width: 180px;
    margin-right: 12px;
    display: inline-block;
    vertical-align: top;
}

.custom-select-box {
    background: #fff;
    border: 1.5px solid #b3c1ce;
    border-radius: 8px;
    padding: 8px 36px 8px 14px;
    cursor: pointer;
    min-height: 38px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 1rem;
    user-select: none;
    transition: border 0.15s, box-shadow 0.15s;
}

    .custom-select-box:after {
        content: "▼";
        position: absolute;
        right: 16px;
        font-size: 0.85em;
        color: #888;
    }

    .custom-select-box.open {
        border-color: #3b82f6;
        box-shadow: 0 2px 14px #3b82f645;
    }

.custom-select-list {
    display: none;
    position: absolute;
    left: 0;
    top: 106%;
    width: 100%;
    background: #fff;
    border: 1.5px solid #3b82f6cc;
    border-radius: 8px;
    box-shadow: 0 8px 24px #0003;
    max-height: 180px;
    overflow-y: auto;
    z-index: 2222;
    margin-top: 2px;
}

.custom-select-box.open + .custom-select-list {
    display: block;
    animation: show .18s;
}

@@keyframes show {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-select-item {
    padding: 11px 16px;
    cursor: pointer;
    transition: background 0.12s;
}

    .custom-select-item.selected,
    .custom-select-item:hover {
        background: #e6f1fd;
        color: #1876ce;
        font-weight: 500;
    }


/* Genel ikon stili */
.main-category li a i {
    --fa-primary-color: #11B76B; /* gri ton, kibar */
    --fa-secondary-color: #6c757d; /* ikisi de aynı renk */
    --fa-secondary-opacity: 0.15; /* hafif gölge efekti */

    filter: brightness(0.95) saturate(0.9); /* yumuşak başlangıç */
    transform: scale(1);
    transition: filter 0.4s ease, transform 0.3s ease, color 0.4s ease; /* smooth geçişler */
}

/* Hover efekti (rengini değiştir) */
.main-category li:hover a i {
    --fa-primary-color: #007bff; /* maviye geçiş */
    --fa-secondary-color: #007bff;
    filter: brightness(1.25) saturate(1.2); /* parlaklık artar */
    transform: scale(1.07); /* ufak büyüme efekti */
}

/* Eğer her menü elemanı kendi rengini alsın dersen: (örnek pastel renk seti) */

/* Renk paleti (dengeli pastel tonlar) */
.main-category li:nth-child(1):hover a i {
    --fa-primary-color: #2f80ed;
}
/* Emlak */
.main-category li:nth-child(2):hover a i {
    --fa-primary-color: #e67e22;
}
/* Oto */
.main-category li:nth-child(3):hover a i {
    --fa-primary-color: #9b59b6;
}
/* Mağaza */
.main-category li:nth-child(4):hover a i {
    --fa-primary-color: #27ae60;
}
/* Hizmet */
.main-category li:nth-child(5):hover a i {
    --fa-primary-color: #16a085;
}
/* İkinci el */
.main-category li:nth-child(6):hover a i {
    --fa-primary-color: #e74c3c;
}
/* Ada etkinlikleri */
.main-category li:nth-child(7):hover a i {
    --fa-primary-color: #3498db;
}
/* Ev arkadaşı */
.main-category li:nth-child(8):hover a i {
    --fa-primary-color: #f1c40f;
}
/* Yeni başlayanlar */
.main-category li:nth-child(9):hover a i {
    --fa-primary-color: #ff7675;
}
/* Bakım destek */
.main-category li:nth-child(10):hover a i {
    --fa-primary-color: #00b894;
}
/* Aktif yaşam */
.main-category li:nth-child(11):hover a i {
    --fa-primary-color: #6c5ce7;
}
/* Ada Günlükleri */
.main-category li:nth-child(12):hover a i {
    --fa-primary-color: #fd79a8;
}
/* Sosyal Sorumluluk */
.main-category li:nth-child(13):hover a i {
    --fa-primary-color: #00cec9;
}

/* MEGA MENÜ FONT SIZE */
.navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 15px !important;
    text-overflow: ellipsis;
}

/* 📱 Mobil için */
@media (max-width: 991px) {
    .navbar .nav-item .dropdown-menu .dropdown-item {
        font-size: 14px !important;
        padding: 6px 10px !important;
        white-space: normal !important; /* taşmasın, alta geçsin */
        text-overflow: clip !important;
    }
}

    .navbar .nav-item .dropdown-menu .dropdown-item:hover {
        white-space: normal; /* alt satıra iner, tüm metin görünür */
        overflow: visible; /* gizleme kalkar */
        text-overflow: unset; /* ... kaldırılır */
        padding-left: 10px !important;
        color: var(--color-dark) !important;
        font-size: 13px !important;
    }

.mega-menu-item {
    position: relative;
}

.mega-menu-item li {
    position: relative;
    transition: all 0.30s ease-in-out !important;
    z-index: 1;
    will-change: transform, opacity;
}

/* Hover sırasında diğerleri opaklaşır (flu değil!) */
.mega-menu-item:hover li:not(:hover) {
    opacity: 0.4;
    transform: scale(0.97);
    transition: all 0.30s ease-in-out !important;
}

/* Üzerine gelinen öğe */
.mega-menu-item li:hover {
    opacity: 1;
    transform: scale(1.04);
    z-index: 10;
    background: rgba(255,255,255,0.03);
    transition: all 0.30s ease-in-out !important;
}

/* Link genel görünümü */
.mega-menu-item li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.30s ease-in-out !important;
    opacity: 1;
    transform: scale(1);
}

/* Hover'da baloncuk efekti */
.mega-menu-item li:hover a {
    background: rgba(255, 255, 255, 0.85) !important;
    padding: 10px !important;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    white-space: normal;
    width: max-content;
    opacity: 1;
    transform: scale(1) !important;
}

/* Hover'dan çıkarken yumuşak dönüş */
.mega-menu-item li:not(:hover) a {
    opacity: 0.75;
    transform: scale(1);
    transition: all 0.30s ease-in-out !important;
}




/* 🔹 Genel ikon stili */
.navbar-nav .nav-link i {
    filter: brightness(0.95) saturate(0.9);
    transform: scale(1);
    transition: filter 0.4s ease, transform 0.3s ease, color 0.4s ease;
}

/* 🔹 Hover efekti (ikon büyür ve renk değişir) */
.navbar-nav .nav-item i {
    --fa-secondary-color: #CBEBF4;
}
.navbar-nav .nav-item:hover i {
    --fa-secondary-color: #CBEBF4;
    transform: scale(1.15);
}

/* 🎨 Menüye göre özel renk paleti */
/* Kıbrıs'ta Yaşam */
.navbar-nav .nav-item:nth-child(1) i {
    --fa-primary-color: var(--color-yasam-primary);
}
.navbar-nav .nav-item:nth-child(1):hover i {
    --fa-secondary-color: var(--color-yasam-secondary);
}

/* 🎯 Adayı Keşfet */
.navbar-nav .nav-item:nth-child(2) i {
    --fa-primary-color: var(--color-kesfet-primary);
    --fa-secondary-color: var(--color-kesfet-secondary);
}

.navbar-nav .nav-item:nth-child(2):hover i {
    --fa-primary-color: var(--color-kesfet-secondary);
    --fa-secondary-color: var(--color-kesfet-primary);
}

/* 🎓 Eğitim */
.navbar-nav .nav-item:nth-child(3) i {
    --fa-primary-color: var(--color-egitim-primary);
    --fa-secondary-color: var(--color-egitim-secondary);
}

.navbar-nav .nav-item:nth-child(3):hover i {
    --fa-primary-color: var(--color-egitim-secondary);
    --fa-secondary-color: var(--color-egitim-primary);
}

/* ❤️ Sağlık */
.navbar-nav .nav-item:nth-child(4) i {
    --fa-primary-color: var(--color-saglik-primary);
    --fa-secondary-color: var(--color-saglik-secondary);
}

.navbar-nav .nav-item:nth-child(4):hover i {
    --fa-primary-color: var(--color-saglik-secondary);
    --fa-secondary-color: var(--color-saglik-primary);
}

/* 🎭 Kültür */
.navbar-nav .nav-item:nth-child(5) i {
    --fa-primary-color: var(--color-kultur-primary);
    --fa-secondary-color: var(--color-kultur-secondary);
}

.navbar-nav .nav-item:nth-child(5):hover i {
    --fa-primary-color: var(--color-kultur-secondary);
    --fa-secondary-color: var(--color-kultur-primary);
}

/* ⚙️ Servisler */
.navbar-nav .nav-item:nth-child(6) i {
    --fa-primary-color: var(--color-servis-primary);
    --fa-secondary-color: var(--color-servis-secondary);
}

.navbar-nav .nav-item:nth-child(6):hover i {
    --fa-primary-color: var(--color-servis-secondary);
    --fa-secondary-color: var(--color-servis-primary);
}



/* 🔸 Hover sırasında yazı rengi de ikonla uyumlu olsun */
.navbar-nav .nav-item:hover > a {
    color: var(--fa-primary-color) !important;
}

.menu-divider {
    height: 1px;
    margin: 22px 0;
    background: linear-gradient(to right, transparent, #11B76B, transparent);
    border: none;
    opacity: 0.5;
}

.menu-divider-strong {
    height: 1px;
    margin: 15px 0;
    border: none;
    background: linear-gradient( to right, rgba(0, 123, 255, 0) 0%, rgba(0, 123, 255, 0.6) 25%, rgba(0, 255, 200, 0.8) 50%, rgba(0, 123, 255, 0.6) 75%, rgba(0, 123, 255, 0) 100% );
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 200, 255, 0.3);
    opacity: 0.8;
}

.mega-menu-item a i {
    transition: --fa-primary-color 0.25s ease, transform 0.25s ease-in-out;
}

/* Hover (mavi ve hafif büyüme efekti) */
.mega-menu-item a:hover i {

    transform: scale(1.05);
}

blog-details-title{
    font-size:18px !important;
}

.mega-menu-item li:nth-child(1) a i {
    --fa-primary-color: #FF4C4C !important;
    --fa-secondary-color: #FFD6D6 !important;
}

.mega-menu-item li:nth-child(2) a i {
    --fa-primary-color: #FF8C00 !important;
    --fa-secondary-color: #FFE0B3 !important;
}

.mega-menu-item li:nth-child(3) a i {
    --fa-primary-color: #FFC300 !important;
    --fa-secondary-color: #FFF3B0 !important;
}

.mega-menu-item li:nth-child(4) a i {
    --fa-primary-color: #2ECC71 !important;
    --fa-secondary-color: #C9F7D7 !important;
}

.mega-menu-item li:nth-child(5) a i {
    --fa-primary-color: #00BFFF !important;
    --fa-secondary-color: #B3E5FF !important;
}

.mega-menu-item li:nth-child(6) a i {
    --fa-primary-color: #007BFF !important;
    --fa-secondary-color: #B0D0FF !important;
}

.mega-menu-item li:nth-child(7) a i {
    --fa-primary-color: #8E44AD !important;
    --fa-secondary-color: #E1C8F2 !important;
}

.mega-menu-item li:nth-child(8) a i {
    --fa-primary-color: #FF1493 !important;
    --fa-secondary-color: #FFC2E5 !important;
}

.mega-menu-item li:nth-child(9) a i {
    --fa-primary-color: #FF6347 !important;
    --fa-secondary-color: #FFD1C1 !important;
}

.mega-menu-item li:nth-child(10) a i {
    --fa-primary-color: #00CED1 !important;
    --fa-secondary-color: #B2F5F5 !important;
}

.mega-menu-item li:nth-child(11) a i {
    --fa-primary-color: #1E90FF !important;
    --fa-secondary-color: #B3D9FF !important;
}

.mega-menu-item li:nth-child(12) a i {
    --fa-primary-color: #FF69B4 !important;
    --fa-secondary-color: #FFD6E9 !important;
}

.mega-menu-item li:nth-child(13) a i {
    --fa-primary-color: #ADFF2F !important;
    --fa-secondary-color: #E9FFC2 !important;
}

.mega-menu-item li:nth-child(14) a i {
    --fa-primary-color: #FF7F50 !important;
    --fa-secondary-color: #FFD3BD !important;
}

.mega-menu-item li:nth-child(15) a i {
    --fa-primary-color: #DA70D6 !important;
    --fa-secondary-color: #F2C7F0 !important;
}

.mega-menu-item li:nth-child(16) a i {
    --fa-primary-color: #40E0D0 !important;
    --fa-secondary-color: #C1FAF4 !important;
}

.mega-menu-item li:nth-child(17) a i {
    --fa-primary-color: #4169E1 !important;
    --fa-secondary-color: #C6D7FF !important;
}

.mega-menu-item li:nth-child(18) a i {
    --fa-primary-color: #FF4500 !important;
    --fa-secondary-color: #FFD4B0 !important;
}


@media (max-width: 991px) {
    /* Menü konteyneri serbest uzasın */
    .navbar-collapse {
        max-height: none !important;
        overflow: visible !important;
    }

    /* Alt menüler doğal akışta açılacak */
    .navbar .dropdown-menu {
        position: static !important;
        float: none !important;
        background: transparent !important;
        box-shadow: none !important;
        width: 100% !important;
        margin: 0 !important;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Açık dropdown görünür olsun */
    .navbar .dropdown.show > .dropdown-menu {
        display: block !important;
    }

    .navbar .dropdown-menu.fade-down {
        transform-origin: top center;
        animation: slideFadeDown 0.30s ease-out forwards;
    }

    @keyframes slideFadeDown {
        0% {
            transform: translateY(-20px);
            opacity: 0;
        }

        20% {
            transform: translateY(-10px);
            opacity: 0.2;
        }

        40% {
            transform: translateY(0);
            opacity: 0.4;
        }

        60% {
            transform: translateY(2px);
            opacity: 0.6;
        }

        80% {
            transform: translateY(1px);
            opacity: 0.8;
        }

        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
}
    /* 🔄 Override: Mobilde account ve login ikonlarını göster */
    @media all and (max-width: 991px) {
        .header-top-right .header-top-list li.account,
        .header-top-right .header-top-list li.login {
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
        }

        /* Sadece ikonlar görünsün */
        .header-top-right .header-top-list li.account a span,
        .header-top-right .header-top-list li.login a span {
            display: none !important;
        }

        .header-top-right .header-top-list li.account a i,
        .header-top-right .header-top-list li.login a i {
            font-size: 14px;
        }

        /* Yazıyı gizle */
        .header-top-right .header-top-list li.account a,
        .header-top-right .header-top-list li.login a {
            font-size: 0 !important;
        }
    }

.product-img .type {
    position: relative;
    float: right;
    top: 28px;
    margin-right: 3px !important;
    /* 🔹 Eklemeler */
    border: 1px solid #fff; /* beyaz çerçeve */
    box-shadow: 0 2px 6px rgba(0,0,0,0.25); /* hafif gölge */
    background-clip: padding-box; /* border düzgün dursun */
}

/* === BREADCRUMB OVERRIDE (ORİJİNALE GERİ DÖNÜŞ) === */

.site-breadcrumb {
    background-color: #081828 !important;
    padding-top: 10px !important;
    padding-bottom: 8px !important;
}

    .site-breadcrumb .breadcrumb-menu li a {
        color: var(--color-gray) !important;
    }

    .site-breadcrumb .breadcrumb-menu li a i {
        margin-right: 6px;
    }

    .site-breadcrumb .breadcrumb-menu li::before {
        color: #656464 !important;
    }

.testimonial-quote p a:hover {
    color: #11B76B; /* yeşil hover rengi */
}

.blog-item-info p a:hover {
    color: #11B76B; /* yeşil hover rengi */
}


.break-mobile {
    line-height: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.help-search-keyword a {
    position: relative;
    padding: 0 12px;
    color: #fff;
    display: inline-block;
    transition: color .2s ease;
}

    /* ✅ ilk link hariç hepsine çizgi koy */
    .help-search-keyword a:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 14px;
        background: #fff; /* beyaz ve net */
    }

    .help-search-keyword a:hover {
        color: #11B76B !important; /* hover rengi */
        backdrop-filter: blur(6px); /* 🔥 cam efekti */
        border-radius: 3px; /* opsiyonel ama yakışıyor */
        padding: 0px 12px;
    }

/* ✅ mobilde çizgileri kapat */
@media (max-width: 576px) {
    .help-search-keyword a::before {
        display: none;
    }

    .help-search-keyword a {
        height: 13px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}


/* ===================================================
           SHOP CATEGORY ICONS (Custom Duotone Color System)
           Kanka için özel üretim 😎
           =================================================== */

/* Genel ikon ayarı */
.shop-category-list li a i {
    margin-right: 8px;
    transition: transform .80s ease, filter .80s ease;
    --fa-primary-opacity: 1;
    --fa-secondary-opacity: .85;
}

/* Hover efekti */
.shop-category-list li a:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.25));
}

/* METİN HOVER */
.shop-category-list li a {
    transition: color .80s ease;
}

    .shop-category-list li a:hover {
        color: #000;
    }

/* ================================
           KATEGORİ SIRASINA GÖRE RENKLER
           (class eklemeden renklendiriyoruz)
           ================================ */

/* 1) Emlak İlanları – Turuncu */
.shop-category-list li:nth-child(1) i {
    --fa-primary-color: #ff7b00;
    --fa-secondary-color: #ffd8b2;
}

.shop-category-list li:nth-child(1):hover i {
    --fa-secondary-color: #ffe6cc;
}

/* 2) Otomotiv İlanları – Kırmızı */
.shop-category-list li:nth-child(2) i {
    --fa-primary-color: #d00000;
    --fa-secondary-color: #ffb3b3;
}

.shop-category-list li:nth-child(2):hover i {
    --fa-secondary-color: #ffd1d1;
}

/* 3) Sanal Mağaza – Mor */
.shop-category-list li:nth-child(3) i {
    --fa-primary-color: #7209b7;
    --fa-secondary-color: #e0b3ff;
}

.shop-category-list li:nth-child(3):hover i {
    --fa-secondary-color: #f0d0ff;
}

/* 4) Hizmet Sektörü – Mavi */
.shop-category-list li:nth-child(4) i {
    --fa-primary-color: #0077b6;
    --fa-secondary-color: #a8d8ff;
}

.shop-category-list li:nth-child(4):hover i {
    --fa-secondary-color: #c9e8ff;
}

/* 5) İkinci El Pazarı – Yeşil */
.shop-category-list li:nth-child(5) i {
    --fa-primary-color: #2eb82e;
    --fa-secondary-color: #caffca;
}

.shop-category-list li:nth-child(5):hover i {
    --fa-secondary-color: #e4ffe4;
}

/* 6) Araç Kiralama – Turkuaz */
.shop-category-list li:nth-child(6) i {
    --fa-primary-color: #00b4d8;
    --fa-secondary-color: #bff3ff;
}

.shop-category-list li:nth-child(6):hover i {
    --fa-secondary-color: #d8f9ff;
}

.tag-list a {
    font-size: 14px !important; /* istediğin değeri yaz */
    line-height: 1.2; /* daha temiz görünür */
}

/*
         ------------------------------------------------------------
          OWL SINGLE MODE (0 veya 1 gerçek item varsa)
          ------------------------------------------------------------
          .owl-single class'ı JS tarafından eklenir.

          - cloned item'lar gizlenir
          - stage transform kapatılır (kayma efekti yok)
          - nav/dots gizlenir
          - tek kart tam genişlikte ve sabit görünür
         ------------------------------------------------------------
        */

.owl-single .owl-item.cloned {
    display: none !important;
}

.owl-single .owl-stage {
    transform: none !important;
}

.owl-single .owl-nav,
.owl-single .owl-dots {
    display: none !important;
}

/* ============================================================
   ADA GÜNLÜKLERİ – VERİ YOKKEN GÖRÜNEN PLACEHOLDER STİLLERİ
   Bu blok, testimonial slider içinde gerçek içerik henüz
   eklenmemişse görünen geçici (shimmer efektli) kartların
   tasarımını sağlar. Mevcut tasarımları bozmaz, yalnızca
   .testimonial-placeholder class’ına özel çalışır.
   ============================================================ */

.testimonial-placeholder {
    opacity: .85;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    transition: .25s ease;
}

    .testimonial-placeholder:hover {
        opacity: 1;
        box-shadow: 0 4px 12px rgba(17,183,107,.15);
    }

    .testimonial-placeholder .tp-avatar {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #d7ece2, #b8e6d3);
        border-radius: 50%;
        position: relative;
        overflow: hidden;
    }

        .testimonial-placeholder .tp-avatar::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient( 135deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100% );
            transform: translateX(-120%);
            animation: shimmerAnim 2.2s infinite;
        }

@keyframes shimmerAnim {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(120%);
    }
}
.kn-message-drawer-root {
    position: fixed;
    inset: 0;
    z-index: 12000;
    pointer-events: none;
}

.kn-message-drawer-root.is-open {
    pointer-events: auto;
}

.kn-message-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 40, 0.45);
    opacity: 0;
    transition: opacity .24s ease;
}

.kn-message-drawer-root.is-open .kn-message-drawer-overlay {
    opacity: 1;
}

.kn-message-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -14px 0 38px rgba(8, 24, 40, 0.18);
    transform: translateX(100%);
    transition: transform .28s ease;
}

.kn-message-drawer-root.is-open .kn-message-drawer-panel {
    transform: translateX(0);
}

.kn-message-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 14px;
    background: linear-gradient(135deg, #11b76b 0%, #0e9155 100%);
    color: #fff;
}

.kn-message-drawer-header-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.kn-message-drawer-header-main > div {
    min-width: 0;
}

.kn-message-drawer-back,
.kn-message-drawer-close {
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kn-message-drawer-back:hover,
.kn-message-drawer-close:hover {
    background: rgba(255, 255, 255, 0.16);
}

.kn-message-drawer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.kn-message-drawer-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kn-message-drawer-subtitle {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kn-message-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f5f8f6;
}

.kn-message-drawer-empty,
.kn-message-drawer-loading {
    padding: 28px 16px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

.kn-message-drawer-footer {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.kn-message-drawer-footer.is-hidden {
    display: none;
}

.kn-message-drawer-input {
    min-height: 44px;
    max-height: 140px;
    resize: vertical;
    border-radius: 16px;
    border: 1px solid #d9e2dc;
    padding: 10px 14px;
    font-size: 14px;
}

.kn-message-drawer-send {
    flex: 0 0 auto;
    border: 0;
    border-radius: 14px;
    padding: 11px 16px;
    background: #11b76b;
    color: #fff;
    font-weight: 700;
}

.kn-message-drawer-send:disabled {
    opacity: .6;
}

.kn-message-drawer-feedback {
    padding: 0 16px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #0f766e;
    background: #fff;
}

.kn-message-drawer-feedback.is-error {
    color: #b91c1c;
}

.kn-message-thread {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kn-message-row {
    display: flex;
}

.kn-message-row.is-me {
    justify-content: flex-end;
}

.kn-message-row.is-other {
    justify-content: flex-start;
}

.kn-message-bubble {
    max-width: 82%;
    padding: 12px 14px;
    border-radius: 18px;
    background: #fff;
    color: #1f2937;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.kn-message-row.is-me .kn-message-bubble {
    background: #11b76b;
    color: #fff;
    border-bottom-right-radius: 6px;
}

.kn-message-row.is-other .kn-message-bubble {
    border-bottom-left-radius: 6px;
}

.kn-message-bubble-text {
    font-size: 14px;
    line-height: 1.55;
    white-space: pre-wrap;
    word-break: break-word;
}

.kn-message-bubble-time {
    margin-top: 6px;
    font-size: 11px;
    opacity: .75;
}

.kn-message-conversation-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kn-message-conversation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 1px solid #e5efe8;
    border-radius: 18px;
    background: #fff;
    padding: 12px;
    text-align: left;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.kn-message-conversation-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.kn-message-conversation-main {
    min-width: 0;
    flex: 1;
}

.kn-message-conversation-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 2px;
}

.kn-message-conversation-name {
    font-size: 14px;
    font-weight: 700;
    color: #081828;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kn-message-conversation-time {
    flex: 0 0 auto;
    font-size: 11px;
    color: #64748b;
}

.kn-message-conversation-context {
    margin-bottom: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #11b76b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kn-message-conversation-text {
    font-size: 13px;
    color: #475569;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.kn-message-unread-badge {
    flex: 0 0 auto;
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.kn-message-drawer-body.has-thread {
    background:
        radial-gradient(circle at top left, rgba(17, 183, 107, 0.06), transparent 36%),
        #f5f8f6;
}

body.kn-message-drawer-open {
    overflow: hidden;
}

@media (max-width: 575.98px) {
    .kn-message-drawer-panel {
        width: 100vw;
    }

    .kn-message-bubble {
        max-width: 88%;
    }
}

.dropdown-cart[data-notification-dropdown='true'] .dropdown-cart-menu {
    width: 360px;
}

.dropdown-cart[data-notification-dropdown='true'] .dropdown-cart-list li.is-unread {
    background: rgba(17, 183, 107, 0.04);
    border-radius: 10px;
}

.dropdown-cart[data-notification-dropdown='true'] .dropdown-cart-list .cart-qty {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #64748b;
}

.kn-notification-message {
    margin-top: 6px;
    font-size: 13px;
    color: #475569;
    line-height: 1.45;
}

.kn-notification-drawer-root {
    position: fixed;
    inset: 0;
    z-index: 10540;
    pointer-events: none;
}

.kn-notification-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.kn-notification-drawer-panel {
    position: absolute;
    top: 0;
    right: -420px;
    width: min(390px, 100vw);
    height: 100vh;
    background: #fff;
    box-shadow: -16px 0 36px rgba(15, 23, 42, 0.16);
    transition: right 0.24s ease;
    display: flex;
    flex-direction: column;
}

.kn-notification-drawer-root.is-open {
    pointer-events: auto;
}

.kn-notification-drawer-root.is-open .kn-notification-drawer-overlay {
    opacity: 1;
}

.kn-notification-drawer-root.is-open .kn-notification-drawer-panel {
    right: 0;
}

.kn-notification-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid #e2e8f0;
}

.kn-notification-drawer-title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #081828;
    font-size: 18px;
    font-weight: 700;
}

.kn-notification-drawer-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
}

.kn-notification-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 16px 24px;
    background:
        radial-gradient(circle at top left, rgba(17, 183, 107, 0.06), transparent 34%),
        #f8fafc;
}

.kn-notification-drawer-subhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.kn-notification-drawer-subhead span,
.kn-notification-drawer-subhead a {
    font-size: 12px;
    font-weight: 700;
    color: #081828;
    text-transform: uppercase;
}

.kn-notification-drawer-subhead a {
    color: #11b76b;
}

.kn-notification-drawer-body .dropdown-cart-list li {
    margin-bottom: 10px;
    padding-bottom: 0;
    border-bottom: 0;
}

.kn-notification-drawer-body .dropdown-cart-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    align-items: flex-start;
}

.kn-notification-drawer-body .dropdown-cart-list li.is-unread .dropdown-cart-item {
    border-color: rgba(17, 183, 107, 0.28);
    box-shadow: 0 10px 24px rgba(17, 183, 107, 0.08);
}

body.kn-notification-drawer-open {
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .dropdown-cart[data-notification-dropdown='true'] .dropdown-cart-menu {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .kn-notification-drawer-panel {
        width: 100vw;
    }
}
