/* =========================================================
   Danukala V2
   Header, navigation, footer and shared layout
   ========================================================= */

/* فونت */

@font-face {
    font-family: "DanukalaVazir";
    src: url("fonts/Vazir-Regular-FD.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* متغیرها */

:root {
    --dk-blue: #17346e;
    --dk-blue-dark: #102650;
    --dk-blue-light: #234681;
    --dk-cyan: #18b5cf;
    --dk-cyan-dark: #079ab4;
    --dk-red: #ef4056;
    --dk-green: #008f7c;
    --dk-text: #272b34;
    --dk-muted: #7b8290;
    --dk-border: #e4e7ec;
    --dk-background: #f7f7f8;
    --dk-surface: #ffffff;
    --dk-radius-sm: 8px;
    --dk-radius-md: 12px;
    --dk-radius-lg: 16px;
    --dk-header-shadow: 0 1px 5px rgba(0, 0, 0, 0.09);
}

/* تنظیمات عمومی */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.dk-body {
    margin: 0;
    color: var(--dk-text);
    background: var(--dk-background);
    font-family: "DanukalaVazir", Vazir, Tahoma, sans-serif;
    font-size: 14px;
    direction: rtl;
}

    body.dk-body a {
        text-decoration: none;
    }

    body.dk-body button,
    body.dk-body input,
    body.dk-body select,
    body.dk-body textarea {
        font-family: inherit;
    }

    body.dk-body img {
        max-width: 100%;
    }

.dk-container {
    width: min(1676px, calc(100% - 48px));
    margin-right: auto;
    margin-left: auto;
}

.dk-main {
    min-height: 55vh;
}

/* =========================================================
   نوار کمپین
   ========================================================= */

.dk-promo-bar {
    min-height: 44px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient( 90deg, var(--dk-blue-dark), var(--dk-blue-light) );
    text-align: center;
    font-size: 14px;
}

    .dk-promo-bar a {
        color: #fff;
    }

        .dk-promo-bar a:hover {
            color: #fff;
        }

/* =========================================================
   هدر
   ========================================================= */

.dk-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: var(--dk-header-shadow);
}

.dk-header-main {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 28px;
}

/* لوگو */

.dk-logo {
    width: 190px;
    flex: 0 0 190px;
}

    .dk-logo img {
        width: 100%;
        height: auto;
        display: block;
    }

/* =========================================================
   جستجو
   ========================================================= */

.dk-search {
    height: 48px;
    max-width: 760px;
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #f1f2f4;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

    .dk-search:focus-within {
        background: #fff;
        border-color: var(--dk-cyan);
        box-shadow: 0 5px 22px rgba(23, 52, 110, 0.12);
    }

    .dk-search > button {
        width: 54px;
        height: 100%;
        padding: 0;
        flex: 0 0 54px;
        border: 0;
        outline: 0;
        color: #8b929e;
        background: transparent;
        cursor: pointer;
        font-size: 20px;
    }

        .dk-search > button:hover {
            color: var(--dk-blue);
        }

    .dk-search > input {
        width: 100%;
        height: 100%;
        padding: 0 4px 0 18px;
        border: 0;
        outline: 0;
        color: var(--dk-text);
        background: transparent;
        font-family: inherit;
        font-size: 13px;
    }

        .dk-search > input::-webkit-search-cancel-button {
            cursor: pointer;
        }

        .dk-search > input::placeholder {
            color: #9298a3;
        }

/* پنل پیشنهاد جستجو */

.dk-search-panel {
    position: absolute;
    z-index: 20;
    top: 53px;
    right: 0;
    left: 0;
    display: none;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--dk-border);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.dk-search:focus-within .dk-search-panel {
    display: block;
}

.dk-search-panel strong {
    margin-bottom: 14px;
    display: block;
    color: var(--dk-text);
    font-size: 13px;
}

.dk-search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

    .dk-search-suggestions a {
        padding: 6px 11px;
        color: #646b77;
        border: 1px solid var(--dk-border);
        border-radius: 18px;
        font-size: 11px;
        transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
    }

        .dk-search-suggestions a:hover {
            color: var(--dk-blue);
            background: #f8fbff;
            border-color: var(--dk-cyan);
        }

/* =========================================================
   ورود و سبد خرید
   ========================================================= */

.dk-header-actions {
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.dk-login {
    min-height: 42px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #333;
    border: 1px solid #d8dce3;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
}

    .dk-login:hover {
        color: var(--dk-blue);
        background: #f9fbff;
        border-color: #b8c0cc;
    }

    .dk-login i,
    .dk-cart i {
        font-size: 21px;
    }

.dk-action-divider {
    height: 25px;
    border-right: 1px solid #ddd;
}

.dk-cart {
    width: 42px;
    height: 42px;
    position: relative;
    display: grid;
    place-items: center;
    color: #333;
    border-radius: 9px;
    transition: color 150ms ease, background-color 150ms ease;
}

    .dk-cart:hover {
        color: var(--dk-blue);
        background: #f4f6f9;
    }

    .dk-cart b {
        width: 19px;
        height: 19px;
        position: absolute;
        right: -2px;
        bottom: 0;
        display: grid;
        place-items: center;
        color: #fff;
        background: var(--dk-red);
        border: 2px solid #fff;
        border-radius: 50%;
        font-size: 9px;
        font-weight: 700;
    }

/* =========================================================
   منوی اصلی
   ========================================================= */

.dk-navigation {
    min-height: 47px;
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    overflow-y: hidden;
    color: #555d69;
    border-top: 1px solid #f1f2f4;
    font-size: 13px;
    scrollbar-width: none;
}

    .dk-navigation::-webkit-scrollbar {
        display: none;
    }

    .dk-navigation > a {
        flex: 0 0 auto;
        position: relative;
        display: flex;
        align-items: center;
        color: inherit;
        white-space: nowrap;
        transition: color 150ms ease;
    }

        .dk-navigation > a::after {
            content: "";
            height: 2px;
            position: absolute;
            right: 0;
            bottom: -14px;
            left: 100%;
            background: var(--dk-cyan);
            transition: left 180ms ease;
        }

        .dk-navigation > a:hover {
            color: var(--dk-blue);
        }

            .dk-navigation > a:hover::after {
                left: 0;
            }

    .dk-navigation i {
        margin-left: 5px;
        color: #969da8;
    }

.dk-all-categories {
    color: #222 !important;
    font-size: 14px;
    font-weight: 700;
}

    .dk-all-categories i {
        color: #444;
    }

.dk-nav-divider {
    height: 23px;
    flex: 0 0 auto;
    border-right: 1px solid #ddd;
}

.dk-currency-link {
    color: var(--dk-green) !important;
    font-weight: 700;
}

    .dk-currency-link i {
        color: var(--dk-green);
    }

    .dk-currency-link small {
        margin-right: 5px;
        padding: 2px 7px;
        color: #00796d;
        background: #e1f5f1;
        border-radius: 12px;
        font-size: 9px;
    }

.dk-location {
    margin-right: auto;
}

/* =========================================================
   مزایای خرید
   ========================================================= */

.dk-benefits {
    background: #fff;
    border-top: 1px solid var(--dk-border);
    border-bottom: 1px solid var(--dk-border);
}

    .dk-benefits > .dk-container {
        padding: 30px 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
    }

.dk-benefit-item {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

    .dk-benefit-item > i {
        flex: 0 0 auto;
        color: var(--dk-cyan);
        font-size: 31px;
    }

    .dk-benefit-item span,
    .dk-benefit-item small {
        display: block;
    }

    .dk-benefit-item b {
        color: var(--dk-text);
        font-size: 13px;
    }

    .dk-benefit-item small {
        margin-top: 4px;
        color: var(--dk-muted);
        font-size: 11px;
    }

/* =========================================================
   فوتر
   ========================================================= */

.dk-footer {
    padding-top: 44px;
    color: #c5ccda;
    background: #172039;
}

.dk-footer-main {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr) 1.4fr;
    gap: 40px;
}

.dk-footer h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.dk-footer-column a {
    margin: 11px 0;
    display: block;
    color: #b9c2d1;
    font-size: 13px;
    transition: color 150ms ease, transform 150ms ease;
}

    .dk-footer-column a:hover {
        color: #fff;
        transform: translateX(-3px);
    }

/* معرفی فوتر */

.dk-footer-about img {
    width: 170px;
    max-height: 52px;
    object-fit: contain;
}

.dk-footer-about p {
    max-width: 400px;
    margin: 18px 0;
    color: #9fa9bb;
    font-size: 13px;
    line-height: 2;
}

.dk-footer-contact span {
    display: block;
    color: #9fa9bb;
    font-size: 11px;
}

.dk-footer-contact a {
    margin-top: 6px;
    display: inline-block;
    color: #fff;
    direction: ltr;
    font-size: 18px;
}

/* خبرنامه */

.dk-newsletter form {
    height: 45px;
    display: flex;
    overflow: hidden;
    background: #fff;
    border-radius: 9px;
}

.dk-newsletter input {
    min-width: 0;
    padding: 0 12px;
    flex: 1;
    border: 0;
    outline: 0;
    color: var(--dk-text);
    background: #fff;
    font-family: inherit;
    font-size: 12px;
}

.dk-newsletter button {
    width: 60px;
    flex: 0 0 60px;
    border: 0;
    color: #fff;
    background: var(--dk-cyan);
    cursor: pointer;
    font-family: inherit;
    transition: background-color 150ms ease;
}

    .dk-newsletter button:hover {
        background: var(--dk-cyan-dark);
    }

/* شبکه‌های اجتماعی */

.dk-socials {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

    .dk-socials a {
        width: 38px;
        height: 38px;
        display: grid;
        place-items: center;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 50%;
        transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
    }

        .dk-socials a:hover {
            color: #fff;
            background: var(--dk-cyan);
            border-color: var(--dk-cyan);
        }

/* توضیحات پایانی */

.dk-footer-description {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

    .dk-footer-description > .dk-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }

    .dk-footer-description h2 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 17px;
    }

    .dk-footer-description p {
        max-width: 1000px;
        margin: 0;
        color: #929db0;
        font-size: 12px;
        line-height: 2;
    }

    .dk-footer-description a {
        flex: 0 0 auto;
        color: var(--dk-cyan);
        font-size: 12px;
    }

        .dk-footer-description a:hover {
            color: #fff;
        }

    .dk-footer-description i {
        margin-right: 5px;
    }

.dk-copyright {
    padding: 20px;
    color: #8792a6;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
    font-size: 11px;
}

/* =========================================================
   منوی کناری موبایل
   ========================================================= */

.dk-mobile-menu {
    width: min(340px, 88vw);
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    overflow-y: auto;
    visibility: hidden;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    transform: translateX(110%);
    transition: transform 220ms ease, visibility 220ms ease;
}

    .dk-mobile-menu.is-open {
        visibility: visible;
        transform: translateX(0);
    }

.dk-mobile-menu-header {
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--dk-border);
}

    .dk-mobile-menu-header img {
        width: 145px;
    }

    .dk-mobile-menu-header button {
        width: 40px;
        height: 40px;
        padding: 0;
        display: grid;
        place-items: center;
        border: 0;
        color: #555;
        background: #f3f4f6;
        border-radius: 50%;
        cursor: pointer;
        font-size: 18px;
    }

.dk-mobile-menu nav {
    margin-top: 16px;
}

    .dk-mobile-menu nav a {
        min-height: 48px;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: var(--dk-text);
        border-bottom: 1px solid #f1f2f4;
        font-size: 13px;
    }

        .dk-mobile-menu nav a:hover {
            color: var(--dk-blue);
            background: #f8faff;
        }

    .dk-mobile-menu nav i {
        width: 25px;
        color: var(--dk-blue);
        text-align: center;
        font-size: 17px;
    }

/* پس‌زمینه منوی موبایل */

.dk-mobile-overlay {
    position: fixed;
    z-index: 1999;
    inset: 0;
    visibility: hidden;
    background: rgba(12, 20, 36, 0.5);
    opacity: 0;
    transition: opacity 200ms ease, visibility 200ms ease;
}

    .dk-mobile-overlay.is-open {
        visibility: visible;
        opacity: 1;
    }

body.dk-menu-open {
    overflow: hidden;
}

/* =========================================================
   نوار پایین موبایل
   ========================================================= */

.dk-mobile-bottom {
    display: none;
}

/* =========================================================
   Back to top قالب قبلی
   ========================================================= */

.progress-wrap {
    z-index: 1500;
}

/* =========================================================
   دسترس‌پذیری
   ========================================================= */

.dk-login:focus-visible,
.dk-cart:focus-visible,
.dk-search button:focus-visible,
.dk-navigation a:focus-visible,
.dk-mobile-menu a:focus-visible,
.dk-mobile-menu button:focus-visible,
.dk-mobile-bottom a:focus-visible,
.dk-mobile-bottom button:focus-visible {
    outline: 2px solid var(--dk-cyan);
    outline-offset: 3px;
}

/* =========================================================
   نمایش دسکتاپ کوچک و تبلت
   ========================================================= */

@media (max-width: 1200px) {
    .dk-header-main {
        gap: 18px;
    }

    .dk-logo {
        width: 155px;
        flex-basis: 155px;
    }

    .dk-navigation {
        gap: 20px;
    }

    .dk-footer-main {
        grid-template-columns: 1.6fr repeat(3, 1fr);
    }

    .dk-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1050px) {
    .dk-header-main {
        gap: 14px;
    }

    .dk-login {
        width: 42px;
        padding: 0;
        justify-content: center;
    }

        .dk-login span {
            display: none;
        }

    .dk-action-divider {
        display: none;
    }

    .dk-benefits > .dk-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .dk-footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* =========================================================
   موبایل
   ========================================================= */

@media (max-width: 650px) {
    body.dk-body {
        padding-bottom: 62px;
    }

    .dk-container {
        width: calc(100% - 24px);
    }

    /* کمپین */

    .dk-promo-bar {
        min-height: 34px;
        padding: 5px 12px;
        font-size: 10px;
    }

    /* هدر */

    .dk-header-main {
        min-height: auto;
        padding: 10px 0;
        display: grid;
        grid-template-columns: 115px 1fr;
        gap: 10px;
    }

    .dk-logo {
        width: 115px;
        min-width: 0;
        flex-basis: auto;
    }

    .dk-header-actions {
        margin: 0;
        grid-row: 1;
        grid-column: 2;
        justify-self: end;
    }

    .dk-login,
    .dk-cart {
        width: 38px;
        height: 38px;
        min-height: 38px;
    }

        .dk-login i,
        .dk-cart i {
            font-size: 19px;
        }

    /* جستجو در ردیف دوم */

    .dk-search {
        width: 100%;
        height: 44px;
        max-width: none;
        grid-row: 2;
        grid-column: 1 / -1;
    }

    .dk-search-panel {
        display: none !important;
    }

    /* منو */

    .dk-navigation {
        min-height: 42px;
        gap: 20px;
    }

        .dk-navigation > a::after {
            bottom: -12px;
        }

    .dk-location {
        display: none !important;
    }

    /* مزایا */

    .dk-benefits > .dk-container {
        padding: 25px 0;
        grid-template-columns: 1fr 1fr;
        gap: 25px 14px;
    }

    .dk-benefit-item {
        justify-content: flex-start;
    }

        .dk-benefit-item > i {
            font-size: 25px;
        }

        .dk-benefit-item b {
            font-size: 11px;
        }

        .dk-benefit-item small {
            font-size: 9px;
        }

    /* فوتر */

    .dk-footer {
        padding-top: 35px;
    }

    .dk-footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }

    .dk-footer-about,
    .dk-newsletter {
        grid-column: 1 / -1;
    }

    .dk-footer h3 {
        font-size: 14px;
    }

    .dk-footer-column a {
        font-size: 11px;
    }

    .dk-footer-description > .dk-container {
        align-items: flex-start;
        flex-direction: column;
    }

    /* نوار پایین */

    .dk-mobile-bottom {
        height: 62px;
        padding: 5px 8px;
        position: fixed;
        z-index: 900;
        right: 0;
        bottom: 0;
        left: 0;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        background: #fff;
        border-top: 1px solid var(--dk-border);
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    }

        .dk-mobile-bottom a,
        .dk-mobile-bottom button {
            min-width: 0;
            padding: 0;
            border: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 3px;
            color: #777f8c;
            background: transparent;
            cursor: pointer;
            font-family: inherit;
            font-size: 10px;
        }

        .dk-mobile-bottom i {
            font-size: 19px;
        }

        .dk-mobile-bottom .active {
            color: var(--dk-blue);
        }
}

/* =========================================================
   موبایل خیلی کوچک
   ========================================================= */

@media (max-width: 380px) {
    .dk-header-main {
        grid-template-columns: 100px 1fr;
    }

    .dk-logo {
        width: 100px;
    }

    .dk-benefits > .dk-container {
        grid-template-columns: 1fr;
    }

    .dk-footer-main {
        grid-template-columns: 1fr;
    }

    .dk-footer-about,
    .dk-newsletter {
        grid-column: auto;
    }
}

/* =========================================================
   کاهش انیمیشن برای کاربران حساس
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================================================
   صفحه اصلی: اسلایدر
   ========================================================= */

.dk-home-hero {
    padding-top: 22px;
}



.dk-slide-badge {
    padding: 7px 13px;
    display: inline-block;
    background: var(--dk-cyan);
    border-radius: 20px;
    font-size: 12px;
}

.dk-slide-content h1,
.dk-slide-content h2 {
    margin: 18px 0 8px;
    color: #fff;
    font-size: clamp(28px, 3vw, 46px);
    line-height: 1.55;
}

.dk-slide-content p {
    margin: 0;
    color: #e2e7ef;
    font-size: 15px;
}

.dk-slide-content > a {
    margin-top: 25px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--dk-blue);
    background: #fff;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
}

    .dk-slide-content > a:hover {
        color: #fff;
        background: var(--dk-cyan);
    }


/* =========================================================
   میان‌برها
   ========================================================= */

.dk-quick-services {
    padding: 22px 0 5px;
}

.dk-quick-services-track {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

.dk-quick-service {
    min-width: 0;
    padding: 8px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
    color: var(--dk-text);
    text-align: center;
}

.dk-quick-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    color: var(--dk-blue);
    background: #edf3ff;
    border-radius: 50%;
    font-size: 24px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.dk-quick-service:hover .dk-quick-icon {
    color: #fff;
    background: var(--dk-blue);
    transform: translateY(-4px);
}

.dk-quick-service strong {
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dk-quick-service.currency .dk-quick-icon {
    color: #008c7a;
    background: #ddf6f1;
}

.dk-quick-service.currency:hover .dk-quick-icon {
    color: #fff;
    background: #008c7a;
}

.dk-quick-service.offer .dk-quick-icon {
    color: var(--dk-red);
    background: #ffe7eb;
}

.dk-quick-service.offer:hover .dk-quick-icon {
    color: #fff;
    background: var(--dk-red);
}

.dk-quick-service.wallet .dk-quick-icon {
    color: #866200;
    background: #fff3c7;
}

.dk-quick-service.wallet:hover .dk-quick-icon {
    color: #fff;
    background: #c39208;
}

.dk-quick-service.seller .dk-quick-icon {
    color: #8248a8;
    background: #f1e5f8;
}

.dk-quick-service.seller:hover .dk-quick-icon {
    color: #fff;
    background: #8248a8;
}

/* =========================================================
   پیشنهاد شگفت‌انگیز
   ========================================================= */

.dk-amazing-section {
    padding-top: 28px;
}

.dk-amazing-box {
    padding: 18px;
    display: flex;
    gap: 18px;
    overflow: hidden;
    background: linear-gradient( 135deg, #d92f48, #ef4056 );
    border-radius: 18px;
}

.dk-amazing-intro {
    width: 190px;
    padding: 12px 8px;
    flex: 0 0 190px;
    color: #fff;
    text-align: center;
}

.dk-amazing-percent {
    display: block;
    font-size: 58px;
    line-height: 1;
}

.dk-amazing-intro h2 {
    margin: 10px 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.5;
}

.dk-amazing-timer {
    margin: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    gap: 5px;
}

    .dk-amazing-timer span {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        color: #27314a;
        background: #fff;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
    }

.dk-amazing-intro > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 12px;
}

.dk-amazing-slider {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

/* کارت محصول */

.dk-product-card {
    height: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.dk-product-image {
    height: 190px;
    position: relative;
    display: grid;
    place-items: center;
}

    .dk-product-image > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 220ms ease;
    }

.dk-product-card:hover .dk-product-image > img {
    transform: scale(1.04);
}

.dk-product-discount {
    position: absolute;
    z-index: 3;
    top: 4px;
    right: 0;
    padding: 4px 8px;
    color: #fff;
    background: var(--dk-red);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.dk-product-favorite {
    width: 34px;
    height: 34px;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #8e959f;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

    .dk-product-favorite:hover {
        color: var(--dk-red);
    }

.dk-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .dk-product-content h3 {
        height: 50px;
        margin: 10px 0;
        overflow: hidden;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.9;
    }

        .dk-product-content h3 a {
            color: #333;
        }

.dk-product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 10px;
}

.dk-product-delivery {
    color: #089c79;
}

.dk-product-rating {
    color: #4c525c;
    direction: ltr;
}

    .dk-product-rating i {
        margin-left: 3px;
        color: #f9a825;
    }

.dk-product-prices {
    margin-top: 10px;
    text-align: left;
}

    .dk-product-prices del {
        min-height: 18px;
        display: block;
        color: #a8adb5;
        font-size: 11px;
    }

    .dk-product-prices > div {
        display: flex;
        align-items: end;
        justify-content: flex-start;
        direction: rtl;
        gap: 5px;
    }

    .dk-product-prices strong {
        color: #222;
        font-size: 16px;
    }

    .dk-product-prices small {
        color: #555;
        font-size: 9px;
    }

.dk-product-credit {
    margin-top: 10px;
    padding-top: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7b5a00;
    border-top: 1px solid #f0f0f0;
    font-size: 9px;
}

    .dk-product-credit i {
        color: #c4940b;
    }

.dk-product-slider-next,
.dk-product-slider-prev {
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 6;
    top: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--dk-border);
    color: #444;
    background: #fff;
    border-radius: 50%;
    transform: translateY(-50%);
}

.dk-product-slider-next {
    right: 10px;
}

.dk-product-slider-prev {
    left: 10px;
}

    .dk-product-slider-next.swiper-button-disabled,
    .dk-product-slider-prev.swiper-button-disabled {
        visibility: hidden;
        opacity: 0;
    }

/* =========================================================
   بنرهای خدمات
   ========================================================= */

.dk-service-banners {
    padding: 34px 0;
}

.dk-service-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dk-service-banner {
    min-height: 230px;
    padding: 34px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    border-radius: 18px;
}

.dk-currency-banner {
    background: radial-gradient( circle at 18% 110%, rgba(92, 255, 220, 0.35), transparent 35% ), linear-gradient( 135deg, #006b5e, #00a28e );
}

.dk-cashback-banner {
    background: radial-gradient( circle at 15% 110%, rgba(81, 113, 224, 0.42), transparent 35% ), linear-gradient( 135deg, #111d42, #26346b );
}

.dk-service-banner-content {
    max-width: 68%;
    position: relative;
    z-index: 2;
}

.dk-service-label {
    padding: 5px 10px;
    display: inline-block;
    color: #222;
    background: #ffd13c;
    border-radius: 15px;
    font-size: 10px;
}

.dk-service-banner h2 {
    margin: 14px 0 8px;
    color: #fff;
    font-size: 27px;
    line-height: 1.55;
}

.dk-service-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 2;
}

.dk-service-banner a {
    margin-top: 18px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #17346e;
    background: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
}

.dk-service-banner-icon {
    width: 210px;
    height: 210px;
    position: absolute;
    bottom: -48px;
    left: -30px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
    font-size: 95px;
    transform: rotate(-12deg);
}

/* =========================================================
   تبلت
   ========================================================= */

@media (max-width: 1050px) {
  

    .dk-quick-services-track {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

        .dk-quick-services-track::-webkit-scrollbar {
            display: none;
        }

    .dk-quick-service {
        width: 105px;
        flex: 0 0 105px;
    }

    .dk-service-banner {
        min-height: 215px;
        padding: 25px;
    }

    .dk-service-banner-content {
        max-width: 75%;
    }
}

/* =========================================================
   موبایل
   ========================================================= */

@media (max-width: 650px) {
    .dk-home-hero {
        padding-top: 12px;
    }

  
    

   

    .dk-quick-services {
        padding-top: 15px;
    }

    .dk-quick-service {
        width: 85px;
        flex-basis: 85px;
    }

    .dk-quick-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .dk-amazing-section {
        padding-top: 18px;
    }

        .dk-amazing-section > .dk-container {
            width: 100%;
        }

    .dk-amazing-box {
        padding: 12px;
        gap: 10px;
        border-radius: 0;
    }

    .dk-amazing-intro {
        width: 125px;
        flex-basis: 125px;
        padding: 8px 0;
    }

    .dk-amazing-percent {
        font-size: 43px;
    }

    .dk-amazing-intro h2 {
        font-size: 18px;
    }

    .dk-amazing-timer span {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .dk-product-card {
        padding: 11px;
    }

    .dk-product-image {
        height: 160px;
    }

    .dk-product-content h3 {
        font-size: 11px;
    }

    .dk-product-prices strong {
        font-size: 14px;
    }

    .dk-product-slider-next,
    .dk-product-slider-prev {
        display: none;
    }

    .dk-service-banners {
        padding: 24px 0;
    }

    .dk-service-banner-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dk-service-banner {
        min-height: 200px;
        padding: 24px;
    }

        .dk-service-banner h2 {
            font-size: 23px;
        }

    .dk-service-banner-icon {
        width: 170px;
        height: 170px;
        font-size: 70px;
    }
}

@media (max-width: 380px) {
   

    .dk-amazing-intro {
        width: 105px;
        flex-basis: 105px;
    }

        .dk-amazing-intro h2 {
            font-size: 16px;
        }

    .dk-service-banner-content {
        max-width: 82%;
    }
}
/* =========================================================
   Danu Flow Hero
   ========================================================= */
/* =========================================================
   اسلایدر بنری Danukala
   ========================================================= */

.danu-banner-section {
    padding-top: 0;
    background: #fff;
}

.danu-banner-wrapper {
    width: 100%;
}

.danu-banner-slider {
    width: 100%;
    height: clamp(320px, 25vw, 500px);
    position: relative;
    overflow: hidden;
    background: #eef0f3;
}

.danu-banner-slide {
    overflow: hidden;
}

.danu-banner-link {
    width: 100%;
    height: 100%;
    display: block;
}

    .danu-banner-link picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .danu-banner-link img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

/* کنترل‌ها */
/* =========================================================
   کنترل پایین اسلایدر
   ========================================================= */

/* فلش‌های پایین سمت راست */

.danu-banner-navigation {
    position: absolute;
    z-index: 20;
    right: 24px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* دکمه‌های گرد */

.danu-banner-next,
.danu-banner-prev {
    width: 52px;
    height: 52px;
    padding: 0;
    display: grid;
    place-items: center;
    color: #343943;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    box-shadow: 0 7px 22px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    font-size: 19px;
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

    .danu-banner-next:hover,
    .danu-banner-prev:hover {
        color: #fff;
        background: var(--dk-blue);
        border-color: var(--dk-blue);
        transform: translateY(-3px);
    }

    .danu-banner-next:active,
    .danu-banner-prev:active {
        transform: translateY(0) scale(0.96);
    }

    /* غیرفعال‌شدن دکمه */

    .danu-banner-next.swiper-button-disabled,
    .danu-banner-prev.swiper-button-disabled {
        cursor: default;
        opacity: 0.45;
    }

/* =========================================================
   نقطه‌های پایینِ وسط
   ========================================================= */



    /* نقطه‌های غیرفعال */

   
    .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
        margin: 0 3px !important;
        display: block;
        background: #323842;
        border-radius: 50%;
        opacity: 0.55;
        transition: width 220ms ease, border-radius 220ms ease, background-color 220ms ease, opacity 220ms ease, transform 220ms ease;
    }

    /* اسلاید فعال؛ مستطیل کپسولی */

    
    .swiper-pagination-bullet-active {
        width: 30px;
        height: 9px;
        background: #161a20;
        border-radius: 10px;
        opacity: 1;
    }

    /* Hover روی نقطه‌ها */

  
    .swiper-pagination-bullet:hover {
        background: var(--dk-blue);
        opacity: 1;
        transform: scale(1.12);
    }

    /* نقطه فعال در Hover نباید بیش از حد بزرگ شود */

    
    .swiper-pagination-bullet-active:hover {
        transform: none;
    }

/* =========================================================
   خوانایی کنترل روی بنرهای تیره
   ========================================================= */

.danu-banner-slider.controls-light
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.65);
}

.danu-banner-slider.controls-light
.swiper-pagination-bullet-active {
    background: #fff;
}

/* =========================================================
   نمایش داخل Container در مانیتورهای خیلی بزرگ
   ========================================================= */

@media (min-width: 1900px) {
    .danu-banner-wrapper {
        width: min(1920px, 100%);
        margin-right: auto;
        margin-left: auto;
    }

    .danu-banner-slider {
        border-radius: 0 0 18px 18px;
    }
}

/* =========================================================
   موبایل
   ========================================================= */

@media (max-width: 650px) {
    .danu-banner-navigation {
        right: 12px;
        bottom: 12px;
        gap: 6px;
    }

    .danu-banner-next,
    .danu-banner-prev {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    

       
        .swiper-pagination-bullet {
            width: 7px;
            height: 7px;
            margin: 0 2px !important;
            background: rgba(255, 255, 255, 0.72);
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        }

      
        .swiper-pagination-bullet-active {
            width: 23px;
            height: 7px;
            background: #fff;
        }
}

/* محتوای Hero */


.danu-eyebrow {
    padding: 7px 13px;
    display: inline-flex;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-size: 11px;
}


.danu-hero-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.danu-primary-button,
.danu-secondary-button {
    min-height: 45px;
    padding: 0 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    transition: transform 180ms ease, background-color 180ms ease;
}

.danu-primary-button {
    color: var(--dk-blue);
    background: #fff;
}

    .danu-primary-button:hover {
        color: var(--dk-blue);
        transform: translateY(-2px);
    }

.danu-secondary-button {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .danu-secondary-button:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.17);
    }

.danu-hero-features {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

    .danu-hero-features span {
        display: flex;
        align-items: center;
        gap: 6px;
        color: rgba(255, 255, 255, 0.74);
        font-size: 10px;
    }

    .danu-hero-features i {
        color: #63e5d0;
    }

/* تصویر Hero */

.danu-product-glow {
    width: 54%;
    aspect-ratio: 1;
    position: absolute;
    background: radial-gradient( circle, rgba(255, 255, 255, 0.35), transparent 68% );
    border-radius: 50%;
}

.danu-visual-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.orbit-one {
    width: 54%;
    aspect-ratio: 1;
}

.orbit-two {
    width: 72%;
    aspect-ratio: 1;
}

/* کارت‌های شناور */





/* =========================================================
   Service Dock
   ========================================================= */
/* =========================================================
   مرکز خدمات Danukala
   ========================================================= */

.danu-service-center {
    padding: 30px 0 12px;
}

.danu-service-center-header {
    margin-bottom: 17px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

    .danu-service-center-header span {
        color: var(--dk-cyan-dark);
        font-size: 10px;
    }

    .danu-service-center-header h2 {
        margin: 4px 0 0;
        color: var(--dk-text);
        font-size: 23px;
    }

    .danu-service-center-header p {
        max-width: 500px;
        margin: 0;
        color: var(--dk-muted);
        text-align: left;
        font-size: 11px;
        line-height: 1.9;
    }

/* شبکه خدمات */

.danu-service-grid {
    display: grid;
    grid-template-columns: minmax(330px, 1.7fr) repeat(2, minmax(210px, 1fr)) repeat(2, minmax(150px, 0.75fr));
    grid-template-rows: repeat(2, 92px);
    gap: 12px;
}

/* کارت پایه */

.danu-service-card {
    min-width: 0;
    padding: 18px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    overflow: hidden;
    color: var(--dk-text);
    background: #fff;
    border: 1px solid var(--dk-border);
    border-radius: 16px;
    transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

    .danu-service-card:hover {
        color: var(--dk-blue);
        border-color: #cfd7e4;
        box-shadow: 0 12px 28px rgba(27, 45, 78, 0.09);
        transform: translateY(-3px);
    }

.danu-service-card-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    color: var(--dk-blue);
    background: #edf3ff;
    border-radius: 14px;
    font-size: 20px;
}

.danu-service-card-content {
    min-width: 0;
    flex: 1;
}

    .danu-service-card-content strong,
    .danu-service-card-content small {
        display: block;
    }

    .danu-service-card-content strong {
        overflow: hidden;
        font-size: 13px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .danu-service-card-content small {
        margin-top: 5px;
        overflow: hidden;
        color: var(--dk-muted);
        font-size: 9px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.danu-service-card-arrow {
    color: #a7aeb8;
    font-size: 11px;
}

/* =========================================================
   کارت اصلی پرداخت ارزی
   ========================================================= */

.danu-service-card-primary {
    padding: 25px 27px;
    grid-row: 1 / 3;
    align-items: flex-start;
    flex-direction: column;
    color: #fff;
    background: radial-gradient( circle at 10% 110%, rgba(86, 255, 220, 0.35), transparent 42% ), linear-gradient( 135deg, #006b60, #009b89 );
    border: 0;
}

    .danu-service-card-primary:hover {
        color: #fff;
        border: 0;
        box-shadow: 0 17px 35px rgba(0, 126, 111, 0.2);
    }

    .danu-service-card-primary
    .danu-service-card-icon {
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .danu-service-card-primary
    .danu-service-card-content {
        position: relative;
        z-index: 2;
    }

        .danu-service-card-primary
        .danu-service-card-content strong {
            font-size: 18px;
        }

        .danu-service-card-primary
        .danu-service-card-content small {
            margin-top: 7px;
            color: rgba(255, 255, 255, 0.75);
            white-space: normal;
            line-height: 1.7;
        }

.danu-service-card-label {
    padding: 4px 9px;
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 3;
    color: #5c4500;
    background: #ffd33d;
    border-radius: 12px;
    font-size: 8px;
}

.danu-service-card-action {
    margin-top: auto;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.danu-service-decoration {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.decoration-one {
    width: 190px;
    height: 190px;
    left: -80px;
    bottom: -95px;
}

.decoration-two {
    width: 120px;
    height: 120px;
    left: -45px;
    bottom: -60px;
}

/* اعتبار */

.danu-service-card-credit {
    grid-column: 2;
    grid-row: 1;
}

    .danu-service-card-credit
    .danu-service-card-icon {
        color: #a77900;
        background: #fff3c9;
    }

/* فروشندگی */

.danu-service-card-seller {
    grid-column: 2;
    grid-row: 2;
}

    .danu-service-card-seller
    .danu-service-card-icon {
        color: #7941a1;
        background: #f0e5f7;
    }

/* کارت‌های کوچک */

.danu-service-card-small {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

    .danu-service-card-small
    .danu-service-card-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        border-radius: 12px;
        font-size: 17px;
    }

    .danu-service-card-small
    .danu-service-card-content strong {
        font-size: 11px;
    }

    .danu-service-card-small
    .danu-service-card-content small {
        display: none;
    }

.danu-service-card-offer {
    grid-column: 3;
    grid-row: 1 / 3;
}

    .danu-service-card-offer
    .danu-service-card-icon {
        color: var(--dk-red);
        background: #ffe7eb;
    }

.danu-service-card-shipping {
    grid-column: 4;
    grid-row: 1;
}

    .danu-service-card-shipping
    .danu-service-card-icon {
        color: #1765b4;
        background: #e4f1ff;
    }

.danu-service-card-tracking {
    grid-column: 4;
    grid-row: 2;
}

    .danu-service-card-tracking
    .danu-service-card-icon {
        color: #59616f;
        background: #eef0f3;
    }

.danu-service-card-support {
    grid-column: 5;
    grid-row: 1 / 3;
}

    .danu-service-card-support
    .danu-service-card-icon {
        color: #0782a1;
        background: #dff6fb;
    }

/* =========================================================
   تبلت
   ========================================================= */

@media (max-width: 1100px) {
    .danu-service-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        grid-template-rows: repeat(3, 92px);
    }

    .danu-service-card-primary {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .danu-service-card-credit {
        grid-column: 2;
        grid-row: 1;
    }

    .danu-service-card-seller {
        grid-column: 2;
        grid-row: 2;
    }

    .danu-service-card-offer {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .danu-service-card-shipping {
        grid-column: 1;
        grid-row: 3;
    }

    .danu-service-card-tracking {
        grid-column: 2;
        grid-row: 3;
    }

    .danu-service-card-support {
        grid-column: 3;
        grid-row: 3;
    }

    .danu-service-card-small {
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
    }

        .danu-service-card-small
        .danu-service-card-content small {
            display: block;
        }
}

/* =========================================================
   موبایل
   ========================================================= */

@media (max-width: 650px) {
    .danu-service-center {
        padding-top: 22px;
    }

    .danu-service-center-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

        .danu-service-center-header h2 {
            font-size: 20px;
        }

        .danu-service-center-header p {
            text-align: right;
        }

    .danu-service-grid {
        padding-bottom: 5px;
        display: flex;
        overflow-x: auto;
        gap: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .danu-service-grid::-webkit-scrollbar {
            display: none;
        }

    .danu-service-card {
        width: 220px;
        min-width: 220px;
        min-height: 105px;
        padding: 16px;
        grid-column: auto;
        grid-row: auto;
        scroll-snap-align: start;
    }

    .danu-service-card-primary {
        width: 270px;
        min-width: 270px;
        min-height: 185px;
    }

    .danu-service-card-small {
        min-height: 105px;
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
    }

        .danu-service-card-small
        .danu-service-card-content small {
            display: block;
        }
}


/* موقت مرحله بعد */

.danu-next-section {
    padding: 20px 0 70px;
}

.danu-section-placeholder {
    padding: 70px 20px;
    text-align: center;
    background: #fff;
    border: 1px dashed #cfd4dd;
    border-radius: 18px;
}

    .danu-section-placeholder > span {
        color: var(--dk-cyan);
        font-size: 10px;
    }

    .danu-section-placeholder h2 {
        margin: 8px 0;
        font-size: 25px;
    }

    .danu-section-placeholder p {
        margin: 0;
        color: var(--dk-muted);
        font-size: 12px;
    }

/* =========================================================
   واکنش‌گرایی
   ========================================================= */

@media (max-width: 1050px) {
   

    .danu-dock {
        grid-template-columns: repeat(3, 1fr);
    }

    .danu-dock-item.featured {
        grid-column: span 1;
    }

    .danu-dock-item::after {
        display: none;
    }

    .danu-brand-message-box {
        grid-template-columns: 1fr auto;
    }

        .danu-brand-message-box > p {
            grid-column: 1 / -1;
            grid-row: 2;
        }
}

@media (max-width: 650px) {
    

    .danu-hero-features {
        display: none;
    }

    .danu-secondary-button {
        display: none;
    }

   

   

    .danu-floating-discount {
        top: 12%;
        left: 2%;
    }

    .danu-floating-credit {
        right: 0;
        bottom: 5%;
    }

   
   

    .danu-dock {
        padding: 8px;
        display: flex;
        overflow-x: auto;
        border-radius: 14px;
        scrollbar-width: none;
    }

        .danu-dock::-webkit-scrollbar {
            display: none;
        }

    .danu-dock-item {
        width: 210px;
        min-width: 210px;
    }

    .danu-brand-message-box {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 15px;
    }

        .danu-brand-message-box > p {
            grid-column: auto;
            grid-row: auto;
        }

        .danu-brand-message-box > a {
            justify-self: start;
        }
}


#danuBannerSlider {
    position: relative;
}

    #danuBannerSlider .danu-banner-pagination {
        width: auto !important;
        height: 20px;
        position: absolute !important;
        z-index: 100 !important;
        right: 50% !important;
        bottom: 18px !important;
        left: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transform: translateX(50%);
    }

        #danuBannerSlider
        .danu-banner-pagination
        .swiper-pagination-bullet {
            width: 9px !important;
            height: 9px !important;
            min-width: 9px;
            margin: 0 4px !important;
            padding: 0 !important;
            display: block !important;
            background: #969696 !important;
            border: 0 !important;
            border-radius: 50% !important;
            opacity: 1 !important;
            cursor: pointer;
            transition: width 200ms ease, min-width 200ms ease, background-color 200ms ease, border-radius 200ms ease;
        }

        #danuBannerSlider
        .danu-banner-pagination
        .swiper-pagination-bullet-active {
            width: 30px !important;
            min-width: 30px;
            background: #15191f !important;
            border-radius: 10px !important;
        }
/* =========================================================
   اسلایدر اصلی
   ========================================================= */

#danuBannerSlider {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2048 / 507;
    background: #eceef1;
}

    #danuBannerSlider .swiper-wrapper {
        width: 100%;
        height: 100%;
    }

    #danuBannerSlider .danu-banner-slide {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    #danuBannerSlider .danu-banner-link {
        width: 100%;
        height: 100%;
        display: block;
    }

        #danuBannerSlider .danu-banner-link img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center;
        }

    /* نقطه‌های پایین وسط */

    #danuBannerSlider .danu-banner-pagination {
        width: auto !important;
        height: 20px;
        position: absolute !important;
        z-index: 100 !important;
        right: 50% !important;
        bottom: 18px !important;
        left: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        transform: translateX(50%);
    }

        #danuBannerSlider
        .danu-banner-pagination
        .swiper-pagination-bullet {
            width: 9px !important;
            height: 9px !important;
            min-width: 9px;
            margin: 0 4px !important;
            padding: 0 !important;
            display: block !important;
            background: #969696 !important;
            border: 0 !important;
            border-radius: 50% !important;
            opacity: 1 !important;
            cursor: pointer;
            transition: width 200ms ease, min-width 200ms ease, background-color 200ms ease, border-radius 200ms ease;
        }

        #danuBannerSlider
        .danu-banner-pagination
        .swiper-pagination-bullet-active {
            width: 30px !important;
            min-width: 30px;
            background: #15191f !important;
            border-radius: 10px !important;
        }

    /* فلش‌ها */

    #danuBannerSlider .danu-banner-navigation {
        position: absolute;
        z-index: 100;
        right: 26px;
        bottom: 18px;
        display: flex;
        align-items: center;
        gap: 9px;
    }

    #danuBannerSlider .danu-banner-next,
    #danuBannerSlider .danu-banner-prev {
        width: 52px;
        height: 52px;
        padding: 0;
        display: grid;
        place-items: center;
        color: #343943;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.07);
        border-radius: 50%;
        box-shadow: 0 7px 22px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        font-size: 18px;
        transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
    }

        #danuBannerSlider .danu-banner-next:hover,
        #danuBannerSlider .danu-banner-prev:hover {
            color: #fff;
            background: var(--dk-blue);
            transform: translateY(-3px);
        }

/* موبایل */

@media (max-width: 650px) {
    #danuBannerSlider {
        height: 250px;
        aspect-ratio: auto;
    }

        #danuBannerSlider .danu-banner-next,
        #danuBannerSlider .danu-banner-prev {
            width: 38px;
            height: 38px;
            font-size: 13px;
        }

        #danuBannerSlider .danu-banner-navigation {
            right: 12px;
            bottom: 12px;
        }

        #danuBannerSlider .danu-banner-pagination {
            bottom: 13px !important;
        }

            #danuBannerSlider
            .danu-banner-pagination
            .swiper-pagination-bullet {
                width: 7px !important;
                height: 7px !important;
                min-width: 7px;
                margin: 0 3px !important;
                background: rgba(255, 255, 255, 0.8) !important;
            }

            #danuBannerSlider
            .danu-banner-pagination
            .swiper-pagination-bullet-active {
                width: 24px !important;
                min-width: 24px;
                background: #fff !important;
            }
}
#danuBannerSlider {
    width: 100%;
    overflow: hidden !important;
}

    #danuBannerSlider .swiper-wrapper {
        width: 100%;
    }

    #danuBannerSlider .swiper-slide {
        width: 100% !important;
        min-width: 100% !important;
        flex: 0 0 100% !important;
    }
/* =========================================================
   Danu Smart Dock
   ========================================================= */

.danu-dock-section {
    position: relative;
    z-index: 30;
    margin-top: -42px;
    padding-bottom: 20px;
    pointer-events: none;
}

.danu-smart-dock {
    min-height: 108px;
    padding: 10px;
    display: flex;
    align-items: stretch;
    gap: 7px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(24, 38, 68, 0.15);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

    /* خط رنگی بالای Dock */

    .danu-smart-dock::before {
        content: "";
        height: 3px;
        position: absolute;
        top: 0;
        right: 30px;
        left: 30px;
        background: linear-gradient( 90deg, transparent, var(--dk-cyan), var(--dk-blue), transparent );
        border-radius: 0 0 5px 5px;
    }

/* آیتم پایه */

.danu-smart-item {
    width: 105px;
    min-width: 105px;
    padding: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    overflow: hidden;
    color: var(--dk-text);
    background: transparent;
    border: 1px solid transparent;
    border-radius: 16px;
    transition: width 240ms ease, min-width 240ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

    .danu-smart-item:hover {
        color: var(--dk-blue);
        background: #f7f9fc;
        border-color: #e2e6ec;
    }

    /* حالت فعال */

    .danu-smart-item.is-active {
        width: 320px;
        min-width: 320px;
        color: #fff;
        border-color: transparent;
        box-shadow: 0 12px 26px rgba(20, 42, 80, 0.13);
    }

/* آیکون */

.danu-smart-icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    display: grid;
    place-items: center;
    color: var(--dk-blue);
    background: #eaf1ff;
    border-radius: 17px;
    font-size: 21px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.danu-smart-item:hover
.danu-smart-icon {
    transform: translateY(-2px);
}

.danu-smart-item.is-active
.danu-smart-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.13);
}

/* متن */

.danu-smart-copy {
    min-width: 0;
    flex: 1;
}

    .danu-smart-copy strong {
        display: block;
        overflow: hidden;
        font-size: 11px;
        text-align: center;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.danu-smart-item.is-active
.danu-smart-copy strong {
    font-size: 14px;
    text-align: right;
}

.danu-smart-copy small,
.danu-smart-action {
    max-height: 0;
    display: block;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
    transform: translateY(5px);
    transition: max-height 220ms ease, opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.danu-smart-item.is-active
.danu-smart-copy small {
    max-height: 30px;
    margin-top: 5px;
    visibility: visible;
    color: rgba(255, 255, 255, 0.72);
    opacity: 1;
    transform: translateY(0);
    font-size: 9px;
    white-space: nowrap;
}

.danu-smart-item.is-active
.danu-smart-action {
    max-height: 25px;
    margin-top: 9px;
    visibility: visible;
    color: #fff;
    opacity: 1;
    transform: translateY(0);
    font-size: 9px;
    font-weight: 700;
}

.danu-smart-action i {
    margin-right: 5px;
}

/* Badge */

.danu-smart-badge {
    padding: 2px 6px;
    position: absolute;
    top: 5px;
    left: 6px;
    visibility: hidden;
    color: #604900;
    background: #ffd43d;
    border-radius: 9px;
    opacity: 0;
    font-size: 7px;
    transition: opacity 180ms ease, visibility 180ms ease;
}

.danu-smart-item.is-active
.danu-smart-badge {
    visibility: visible;
    opacity: 1;
}

/* =========================================================
   رنگ آیتم فعال
   ========================================================= */

.danu-smart-item.currency.is-active {
    background: linear-gradient( 135deg, #006e62, #00a18d );
}

.danu-smart-item.credit.is-active {
    background: linear-gradient( 135deg, #896400, #c99b16 );
}

.danu-smart-item.seller.is-active {
    background: linear-gradient( 135deg, #563176, #8e53b6 );
}

.danu-smart-item.offer.is-active {
    background: linear-gradient( 135deg, #c92d43, #ef4056 );
}

.danu-smart-item.shipping.is-active {
    background: linear-gradient( 135deg, #154d89, #2778c6 );
}

.danu-smart-item.tracking.is-active {
    background: linear-gradient( 135deg, #3d4655, #657083 );
}

.danu-smart-item.support.is-active {
    background: linear-gradient( 135deg, #087f9d, #18b5cf );
}

/* رنگ آیکون‌ها در حالت بسته */

.danu-smart-item.credit
.danu-smart-icon {
    color: #a57900;
    background: #fff2c8;
}

.danu-smart-item.seller
.danu-smart-icon {
    color: #7841a0;
    background: #f0e4f7;
}

.danu-smart-item.offer
.danu-smart-icon {
    color: var(--dk-red);
    background: #ffe6ea;
}

.danu-smart-item.shipping
.danu-smart-icon {
    color: #1764b3;
    background: #e3f0ff;
}

.danu-smart-item.tracking
.danu-smart-icon {
    color: #59616f;
    background: #eceff3;
}

.danu-smart-item.support
.danu-smart-icon {
    color: #07839f;
    background: #dff5fa;
}

.danu-smart-item.is-active
.danu-smart-icon {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

/* =========================================================
   دسکتاپ کوچک
   ========================================================= */

@media (max-width: 1200px) {
    .danu-smart-item {
        width: 90px;
        min-width: 90px;
    }

        .danu-smart-item.is-active {
            width: 270px;
            min-width: 270px;
        }

    .danu-smart-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
}

/* =========================================================
   موبایل و تبلت
   ========================================================= */

@media (max-width: 900px) {
    .danu-dock-section {
        margin-top: -25px;
    }

    .danu-smart-dock {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .danu-smart-dock::-webkit-scrollbar {
            display: none;
        }

    .danu-smart-item {
        width: 86px;
        min-width: 86px;
        scroll-snap-align: start;
    }

        .danu-smart-item.is-active {
            width: 260px;
            min-width: 260px;
        }
}

@media (max-width: 650px) {
    .danu-dock-section {
        margin-top: -18px;
        padding-bottom: 13px;
    }

    .danu-smart-dock {
        min-height: 94px;
        padding: 8px;
        border-radius: 17px;
        box-shadow: 0 13px 30px rgba(24, 38, 68, 0.13);
    }

    .danu-smart-item {
        width: 78px;
        min-width: 78px;
        min-height: 76px;
        padding: 9px;
        flex-direction: column;
        justify-content: center;
        gap: 7px;
        border-radius: 13px;
    }

        .danu-smart-item.is-active {
            width: 235px;
            min-width: 235px;
            align-items: center;
            flex-direction: row;
            justify-content: flex-start;
        }

    .danu-smart-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        border-radius: 13px;
        font-size: 18px;
    }

    .danu-smart-copy strong {
        font-size: 9px;
    }

    .danu-smart-item.is-active
    .danu-smart-copy strong {
        font-size: 12px;
    }
}
/* =========================================================
   Danukala Signature Services
   ========================================================= */

.danu-signature-services {
    padding: 42px 0 54px;
    direction: rtl;
    background: radial-gradient( circle at 92% 12%, rgba(10, 176, 188, 0.07), transparent 27% ), #fff;
}

.danu-signature-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 22px;
}

.danu-signature-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    color: #00a9bb;
    font-size: 13px;
    font-weight: 700;
}

    .danu-signature-eyebrow::before {
        width: 22px;
        height: 3px;
        content: "";
        border-radius: 999px;
        background: #00b8cc;
    }

.danu-signature-heading h2 {
    margin: 0;
    color: #17213a;
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 800;
    line-height: 1.5;
    letter-spacing: -0.7px;
}

.danu-signature-heading p {
    max-width: 460px;
    margin: 0 0 4px;
    color: #697386;
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}

.danu-signature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.danu-signature-card {
    position: relative;
    display: block;
    min-width: 0;
    height: 290px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(17, 31, 55, 0.08);
    border-radius: 22px;
    background: #17213a;
    box-shadow: 0 10px 35px rgba(22, 32, 55, 0.08);
    isolation: isolate;
    text-decoration: none !important;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

    .danu-signature-card::after {
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
        width: 100%;
        height: 4px;
        content: "";
        transform: scaleX(0.22);
        transform-origin: right;
        transition: transform 260ms ease;
    }

.danu-signature-card--exchange::after {
    background: #16d2b0;
}

.danu-signature-card--seller::after {
    background: #a36fef;
}

.danu-signature-card--reward::after {
    background: #f7b731;
}

.danu-signature-card:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(22, 32, 55, 0.15);
}

    .danu-signature-card:hover::after {
        transform: scaleX(1);
    }

.danu-signature-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms cubic-bezier(.2, .75, .25, 1);
}

.danu-signature-card:hover img {
    transform: scale(1.035);
}

.danu-signature-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient( 90deg, rgba(10, 20, 40, 0.08) 0%, rgba(10, 20, 40, 0.42) 48%, rgba(8, 17, 35, 0.94) 100% );
}

.danu-signature-card--exchange .danu-signature-overlay {
    background: linear-gradient( 90deg, rgba(0, 56, 66, 0.12) 0%, rgba(0, 68, 71, 0.50) 48%, rgba(0, 50, 54, 0.96) 100% );
}

.danu-signature-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    width: 72%;
    height: 100%;
    padding: 26px;
}

.danu-signature-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 30px;
    margin-bottom: auto;
    padding: 5px 10px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
}

.danu-signature-card--exchange .danu-signature-label {
    color: #073e39;
    border-color: transparent;
    background: #ffd34e;
}

.danu-signature-content strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 23px;
    font-weight: 800;
    line-height: 1.6;
    letter-spacing: -0.4px;
}

.danu-signature-content small {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    font-weight: 500;
    line-height: 2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.danu-signature-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 14px;
    color: #16213a;
    border-radius: 11px;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    transition: gap 180ms ease, background-color 180ms ease;
}

.danu-signature-card:hover .danu-signature-action {
    gap: 14px;
}

.danu-signature-card--exchange .danu-signature-action {
    color: #fff;
    background: #00a78f;
}

/* Tablet */
@media (max-width: 1100px) {
    .danu-signature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .danu-signature-card--exchange {
        grid-column: 1 / -1;
    }

    .danu-signature-card {
        height: 270px;
    }
}

/* Mobile */
@media (max-width: 650px) {
    .danu-signature-services {
        padding: 28px 0 38px;
    }

    .danu-signature-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 17px;
    }

        .danu-signature-heading p {
            font-size: 12px;
            line-height: 1.9;
        }

    .danu-signature-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        margin-inline: -16px;
        padding: 0 16px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .danu-signature-grid::-webkit-scrollbar {
            display: none;
        }

    .danu-signature-card,
    .danu-signature-card--exchange {
        flex: 0 0 84%;
        height: 245px;
        grid-column: auto;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .danu-signature-content {
        width: 82%;
        padding: 20px;
    }

        .danu-signature-content strong {
            font-size: 20px;
        }

        .danu-signature-content small {
            margin-bottom: 13px;
        }
}
/* =========================================================
   Danukala Amazing Deals
   ========================================================= */

.danu-deals-section {
    padding: 22px 0 52px;
    direction: rtl;
    background: #fff;
}

.danu-deals-shell {
    display: grid;
    grid-template-columns: 235px minmax(0, 1fr);
    gap: 14px;
    overflow: hidden;
    padding: 14px;
    border: 1px solid #dcecf1;
    border-radius: 26px;
    background: linear-gradient( 135deg, #e8fbfd 0%, #f3f8ff 48%, #fff8de 100% );
    box-shadow: 0 14px 40px rgba(18, 48, 74, 0.08);
}

/* پنل معرفی */

.danu-deals-intro {
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    min-height: 390px;
    overflow: hidden;
    padding: 25px 18px;
    text-align: center;
    border-radius: 20px;
    background: radial-gradient( circle at 20% 5%, rgba(255, 218, 77, 0.9), transparent 31% ), linear-gradient( 145deg, #00b7c7, #087eaa );
}

    .danu-deals-intro::before,
    .danu-deals-intro::after {
        position: absolute;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.17);
        border-radius: 50%;
    }

    .danu-deals-intro::before {
        right: -80px;
        bottom: -95px;
        width: 240px;
        height: 240px;
    }

    .danu-deals-intro::after {
        right: -35px;
        bottom: -50px;
        width: 150px;
        height: 150px;
    }

.danu-deals-kicker {
    position: absolute;
    top: 17px;
    right: 17px;
    padding: 6px 11px;
    color: #564000;
    border-radius: 999px;
    background: #ffdc57;
    font-size: 11px;
    font-weight: 800;
}

.danu-deals-icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 12px;
    color: #ffdc57;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    place-items: center;
    font-size: 25px;
    transform: rotate(-5deg);
}

.danu-deals-intro h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.6px;
}

.danu-deals-intro p {
    max-width: 185px;
    margin: 0 0 17px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.9;
}

/* تایمر */

.danu-deals-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    direction: ltr;
    gap: 5px;
    margin-bottom: 18px;
}

    .danu-deals-timer > b {
        color: #fff;
        font-size: 17px;
    }

.danu-time-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 48px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(5, 73, 105, 0.14);
}

    .danu-time-box strong {
        color: #15213c;
        font-size: 16px;
        font-weight: 900;
        line-height: 1;
    }

    .danu-time-box small {
        margin-top: 5px;
        color: #7a8496;
        font-size: 8px;
        font-weight: 700;
    }

.danu-deals-all {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 9px 16px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none !important;
    transition: 180ms ease;
}

    .danu-deals-all:hover {
        gap: 13px;
        color: #075f7b;
        background: #fff;
    }

/* ناحیه محصولات */

.danu-deals-products {
    min-width: 0;
    overflow: hidden;
}

.danu-deals-track {
    display: flex;
    gap: 10px;
    height: 100%;    
    padding: 0 0 9px;   
}

    .danu-deals-track::-webkit-scrollbar {
        height: 5px;
    }

    .danu-deals-track::-webkit-scrollbar-thumb {
        border-radius: 99px;
        background: rgba(0, 166, 185, 0.3);
    }

.danu-deal-card {
    position: relative;
    display: flex;
    flex: 0 0 218px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(22, 46, 75, 0.08);
    border-radius: 18px;
    background: #fff;
    scroll-snap-align: start;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

    .danu-deal-card:hover {
        z-index: 2;
        transform: translateY(-3px);
        box-shadow: 0 14px 32px rgba(25, 60, 88, 0.12);
    }

/* تصویر محصول */

.danu-deal-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 194px;
    padding: 15px;
    background: linear-gradient( 180deg, #fff, #fbfcfd );
}

    .danu-deal-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 220ms ease;
    }

.danu-deal-card:hover .danu-deal-image img {
    transform: scale(1.045);
}

.danu-deal-discount {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    min-width: 43px;
    height: 25px;
    padding: 0 8px;
    color: #fff;
    border-radius: 8px 8px 8px 2px;
    background: #f04461;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

/* اطلاعات */

.danu-deal-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 10px 13px 13px;
}

.danu-deal-title {
    display: -webkit-box;
    min-height: 46px;
    overflow: hidden;
    color: #1c2942;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.9;
    text-decoration: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .danu-deal-title:hover {
        color: #00a8ba;
    }

.danu-deal-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 8px 0;
    color: #8a94a5;
        
}

    .danu-deal-rating span:last-child {
        color: #465267;
    }

    .danu-deal-rating i {
        color: #f8b90b;
        font-size: 9px;
    }

.danu-deal-price {
    margin-top: auto;
}

    .danu-deal-price del {
        display: block;
        min-height: 18px;
        color: #a9b0bc;
        
        text-align: left;
    }

    .danu-deal-price > div {
        display: flex;
        align-items: baseline;
        justify-content: flex-end;
        gap: 4px;
    }

    .danu-deal-price strong {
        color: #14213d;
        font-size: 17px;
        font-weight: 900;
    }

    .danu-deal-price small {
        color: #586275;
        font-size: 9px;
        font-weight: 700;
    }

/* موجودی و دکمه افزودن */

.danu-deal-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
}

.danu-stock {
    flex: 1;
}

    .danu-stock > span {
        display: block;
        height: 4px;
        overflow: hidden;
        border-radius: 99px;
        background: #edf0f3;
    }

        .danu-stock > span i {
            display: block;
            height: 100%;
            border-radius: inherit;
            background: linear-gradient( 90deg, #00b5c7, #ffcf4b );
        }

    .danu-stock small {
        display: block;
        margin-top: 5px;
        color: #9aa2af;
        
    }

.danu-quick-add {
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    padding: 0;
    color: #fff;
    border: 0;
    border-radius: 11px;
    background: #00afbe;
    box-shadow: 0 7px 16px rgba(0, 175, 190, 0.22);
    cursor: pointer;
    place-items: center;
    transition: 180ms ease;
}

    .danu-quick-add:hover {
        background: #087fa4;
        transform: rotate(90deg);
    }

/* کارت مشاهده همه */

.danu-deals-more {
    display: flex;
    align-items: center;
    flex: 0 0 150px;
    flex-direction: column;
    justify-content: center;
    min-height: 382px;
    color: #26334d;
    border: 1px dashed rgba(0, 164, 183, 0.42);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.66);
    text-align: center;
    text-decoration: none !important;
    scroll-snap-align: start;
}

    .danu-deals-more > span {
        display: grid;
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
        color: #00a9ba;
        border: 1px solid rgba(0, 169, 186, 0.27);
        border-radius: 50%;
        background: #fff;
        place-items: center;
        transition: 180ms ease;
    }

    .danu-deals-more strong {
        font-size: 12px;
        font-weight: 900;
    }

    .danu-deals-more small {
        margin-top: 5px;
        color: #8b94a3;
        font-size: 9px;
    }

    .danu-deals-more:hover > span {
        color: #fff;
        background: #00a9ba;
        transform: translateX(-4px);
    }

/* تبلت */

@media (max-width: 1000px) {
    .danu-deals-shell {
        grid-template-columns: 205px minmax(0, 1fr);
    }

    .danu-deal-card {
        flex-basis: 205px;
    }
}

/* موبایل */

@media (max-width: 650px) {
    .danu-deals-section {
        padding: 12px 0 34px;
    }

    .danu-deals-shell {
        display: block;
        margin-inline: -5px;
        padding: 10px;
        border-radius: 20px;
    }

    .danu-deals-intro {
        align-items: flex-start;
        min-height: auto;
        margin-bottom: 10px;
        padding: 18px;
        text-align: right;
        border-radius: 16px;
    }

    .danu-deals-kicker {
        top: 14px;
        left: 14px;
        right: auto;
    }

    .danu-deals-icon {
        display: none;
    }

    .danu-deals-intro h2 {
        margin-top: 2px;
        font-size: 19px;
    }

    .danu-deals-intro p {
        max-width: 220px;
        margin-bottom: 12px;
    }

    .danu-deals-timer {
        justify-content: flex-start;
        margin-bottom: 13px;
    }

    .danu-time-box {
        width: 43px;
        height: 45px;
    }

    .danu-deals-all {
        position: absolute;
        left: 14px;
        bottom: 18px;
        min-height: 36px;
        padding: 7px 11px;
    }

    .danu-deals-track {
        margin-inline: -10px;
        padding-inline: 10px;
    }

    .danu-deal-card {
        flex-basis: 178px;
    }

    .danu-deal-image {
        height: 160px;
    }

    .danu-deal-body {
        padding: 9px 10px 11px;
    }

    .danu-deal-price strong {
        font-size: 15px;
    }

    .danu-deals-more {
        flex-basis: 125px;
        min-height: 348px;
    }
}
.danu-stock {
    display: flex;
    align-items: center;
    min-height: 34px;
}

    .danu-stock small {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin: 0;
        
        font-weight: 700;
    }

        .danu-stock small.is-limited {
            color: #ef4056;
        }

            .danu-stock small.is-limited i {
                color: #ff6b35;
            }

        .danu-stock small.is-available {
            color: #4f9b72;
        }

            .danu-stock small.is-available i {
                color: #36a269;
            }
/* =========================================================
   Danukala Category Orbit
   ========================================================= */

.danu-category-orbit {
    padding: 20px 0 48px;
    direction: rtl;
    background: #fff;
}

.danu-category-orbit-header {
    margin-bottom: 23px;
    text-align: center;
}

    .danu-category-orbit-header span {
        display: block;
        margin-bottom: 4px;
        color: #00a8ba;
        font-size: 11px;
        font-weight: 800;
    }

    .danu-category-orbit-header h2 {
        margin: 0;
        color: #17213a;
        font-size: 23px;
        font-weight: 900;
        line-height: 1.7;
        letter-spacing: -0.6px;
    }

/* گرید دو ردیفه */

.danu-category-orbit-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(90px, 1fr));
    gap: 22px 15px;
}

.danu-orbit-item {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-direction: column;
    color: #202b42;
    text-align: center;
    text-decoration: none !important;
}

.danu-orbit-picture {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    max-width: 100%;
    aspect-ratio: 1;
    overflow: visible;
    border: 2px solid #edf0f2;
    border-radius: 50%;
    background: #f1f2f3;
    
}

    .danu-orbit-picture::after {
        position: absolute;
        right: 50%;
        bottom: -7px;
        width: 0;
        height: 4px;
        content: "";
        border-radius: 99px;
        background: #00b2c3;
        transform: translateX(50%);
        transition: width 200ms ease;
    }

    .danu-orbit-picture img {
        width: 92%;
        height: 92%;
        object-fit: contain;
        border-radius: 50%;
        mix-blend-mode: multiply;
        transition: transform 220ms ease;
    }

.danu-orbit-item strong {
    display: -webkit-box;
    min-height: 38px;
    overflow: hidden;
    margin-top: 13px;
    color: #222c40;
   
    font-weight: 800;
    line-height: 1.8;
   
}

.danu-orbit-item:hover
.danu-orbit-picture {
    border-color: rgba(0, 178, 195, 0.48);
    box-shadow: inset 0 0 0 5px #fff, 0 10px 23px rgba(17, 73, 91, 0.11);
    transform: translateY(-5px);
}

    .danu-orbit-item:hover
    .danu-orbit-picture img {
        transform: scale(1.08);
    }

    .danu-orbit-item:hover
    .danu-orbit-picture::after {
        width: 32px;
    }


.color-lime {
    background: #f1f9e5;
}

/* بیشتر */

.danu-orbit-more .danu-orbit-picture {
    color: #768095;
    border-style: dashed;
    background: #f5f6f8;
    font-size: 25px;
}

    .danu-orbit-more
    .danu-orbit-picture::after {
        display: none;
    }

/* نمایشگرهای متوسط */

@media (max-width: 1500px) {
    .danu-category-orbit-grid {
        grid-template-columns: repeat(8, minmax(90px, 1fr));
    }
}

@media (max-width: 1150px) {
    .danu-category-orbit-grid {
        grid-template-columns: repeat(6, minmax(90px, 1fr));
    }
}

/* موبایل: دو ردیف با اسکرول افقی */

@media (max-width: 650px) {
    .danu-category-orbit {
        padding: 12px 0 34px;
    }

    .danu-category-orbit-header {
        margin-bottom: 16px;
    }

        .danu-category-orbit-header h2 {
            font-size: 19px;
        }

    .danu-category-orbit-grid {
        display: grid;
        grid-auto-columns: 91px;
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-template-rows: repeat(2, 125px);
        gap: 12px 9px;
        overflow-x: auto;
        margin-inline: -16px;
        padding: 3px 16px 12px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

        .danu-category-orbit-grid::-webkit-scrollbar {
            display: none;
        }

    .danu-orbit-item {
        scroll-snap-align: start;
    }

    .danu-orbit-picture {
        width: 78px;
        height: 78px;
        margin-inline: auto;
        border-width: 1px;
        box-shadow: inset 0 0 0 3px #fff;
    }

    .danu-orbit-item strong {
        min-height: 34px;
        margin-top: 8px;
        font-size: 9px;
    }
}/* =========================================================
   Danukala Middle Promo Banners
   ========================================================= */

.danu-promo-section {
    padding: 2px 0 48px;
    direction: rtl;
    background: #fff;
}

.danu-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.danu-promo-card {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
    color: #fff;
    border-radius: 22px;
    background: #176fa5;
    box-shadow: 0 10px 28px rgba(28, 57, 84, 0.08);
    isolation: isolate;
    text-decoration: none !important;
    transition:
        transform 220ms ease,
        box-shadow 220ms ease;
}

.danu-promo-card:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 17px 37px rgba(28, 57, 84, 0.15);
}

.danu-promo-card > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.danu-promo-card:hover > img {
    transform: scale(1.035);
}

/* پوشش سمت نوشته‌ها */

.danu-promo-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.danu-promo-laptop .danu-promo-shade {
    background: linear-gradient(
        90deg,
        rgba(0, 95, 153, 0) 0%,
        rgba(0, 93, 148, 0.08) 38%,
        rgba(0, 80, 128, 0.78) 72%,
        rgba(0, 57, 98, 0.94) 100%
    );
}

.danu-promo-mobile .danu-promo-shade {
    background: linear-gradient(
        90deg,
        rgba(164, 22, 81, 0) 0%,
        rgba(151, 20, 75, 0.07) 38%,
        rgba(130, 19, 65, 0.72) 72%,
        rgba(91, 14, 50, 0.92) 100%
    );
}

/* محتوای بنر */

.danu-promo-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    width: 52%;
    height: 100%;
    margin-right: auto;
    padding: 28px;
}

.danu-promo-content small {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    margin-bottom: 7px;
    padding: 4px 10px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(7px);
    font-size: 9px;
    font-weight: 800;
}

.danu-promo-content strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.danu-promo-content p {
    margin: 3px 0 17px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 500;
}

.danu-promo-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 14px;
    color: #17213a;
    border-radius: 11px;
    background: #fff;
    font-size: 10px;
    font-weight: 900;
    transition:
        gap 180ms ease,
        transform 180ms ease;
}

.danu-promo-card:hover
.danu-promo-action {
    gap: 13px;
    transform: translateX(-2px);
}

/* نشان رنگی پایین بنر */

.danu-promo-card::after {
    position: absolute;
    right: 28px;
    bottom: 0;
    width: 54px;
    height: 4px;
    content: "";
    border-radius: 99px 99px 0 0;
}

.danu-promo-laptop::after {
    background: #42e3ef;
}

.danu-promo-mobile::after {
    background: #ffd755;
}

/* تبلت */

@media (max-width: 900px) {
    .danu-promo-card {
        height: 220px;
    }

    .danu-promo-content {
        width: 59%;
        padding: 21px;
    }

    .danu-promo-content strong {
        font-size: 20px;
    }
}

/* موبایل */

@media (max-width: 650px) {
    .danu-promo-section {
        padding: 0 0 34px;
    }

    .danu-promo-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .danu-promo-card {
        height: 180px;
        border-radius: 17px;
    }

    .danu-promo-content {
        width: 62%;
        padding: 17px;
    }

    .danu-promo-content small {
        min-height: 23px;
        margin-bottom: 5px;
    }

    .danu-promo-content strong {
        font-size: 17px;
    }

    .danu-promo-content p {
        margin-bottom: 11px;
        font-size: 9px;
    }

    .danu-promo-action {
        min-height: 32px;
        padding: 5px 10px;
        font-size: 9px;
    }
}
/* =========================================================
   Danukala Feature Banners With Transparent PNG
   ========================================================= */

.danu-feature-banners {
    padding: 4px 0 48px;
    direction: rtl;
    background: #fff;
}

.danu-feature-banners-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

/* کارت اصلی */

.danu-feature-banner {
    --feature-color-start: #1689c5;
    --feature-color-end: #07679b;
    --feature-accent: #57e8ef;
    position: relative;
    display: flex;
    align-items: stretch;
    min-width: 0;
    height: 270px;
    overflow: hidden;
    color: #fff;
    border: 1px solid rgba(20, 43, 68, 0.06);
    border-radius: 23px;
    background: linear-gradient( 135deg, var(--feature-color-start), var(--feature-color-end) );
    box-shadow: 0 11px 30px rgba(24, 55, 84, 0.1);
    isolation: isolate;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

    /* دایره تزئینی داخل والد */

    .danu-feature-banner::before {
        position: absolute;
        left: -75px;
        bottom: -115px;
        z-index: -1;
        width: 310px;
        height: 310px;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 50%;
    }

    .danu-feature-banner::after {
        position: absolute;
        right: 28px;
        bottom: 0;
        width: 58px;
        height: 4px;
        content: "";
        border-radius: 99px 99px 0 0;
        background: var(--feature-accent);
    }

/* رنگ لپ‌تاپ */

.danu-feature-banner--laptop {
    --feature-color-start: #1695cf;
    --feature-color-end: #08649a;
    --feature-accent: #5bf2ec;
}

/* رنگ موبایل */

.danu-feature-banner--mobile {
    --feature-color-start: #f05279;
    --feature-color-end: #ad2058;
    --feature-accent: #ffd255;
}

/* محتوای سمت راست */

.danu-feature-copy {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    flex: 0 0 49%;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 28px 31px;
    text-align: right;
}

/* برچسب */

.danu-feature-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 29px;
    margin-bottom: 8px;
    padding: 5px 10px;
    color: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(8px);
    font-size: 9px;
    font-weight: 800;
}

    .danu-feature-label i {
        color: var(--feature-accent);
    }

/* عنوان */

.danu-feature-copy h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 1.5vw, 27px);
    font-weight: 900;
    line-height: 1.55;
    letter-spacing: -0.7px;
}

/* توضیحات */

.danu-feature-copy p {
    margin: 3px 0 17px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.9;
}

/* دکمه */

.danu-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 7px 13px;
    color: #18223a;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15, 44, 68, 0.1);
    font-size: 10px;
    font-weight: 900;
    text-decoration: none !important;
    transition: gap 180ms ease, transform 180ms ease;
}

    .danu-feature-link:hover {
        gap: 13px;
        color: #18223a;
        transform: translateX(-3px);
    }

/* ناحیه تصویر شفاف */

.danu-feature-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    height: 100%;
}

    /*
 * تصویر هیچ‌وقت پس‌زمینه کارت را پر نمی‌کند.
 * فقط خود محصول PNG نمایش داده می‌شود.
 */

    .danu-feature-visual img {
        display: block;
        width: 112%;
        height: 112%;
        max-width: none;
        object-fit: contain;
        object-position: center;
        filter: drop-shadow( 0 17px 17px rgba(13, 35, 57, 0.18) );
        transform: translateY(7%);
        transition: transform 240ms ease;
    }

/* تنظیم جداگانه لپ‌تاپ */

.danu-feature-banner--laptop
.danu-feature-visual img {
    width: 118%;
    height: 118%;
    transform: translate(-2%, 8%);
}

/* تنظیم جداگانه موبایل */

.danu-feature-banner--mobile
.danu-feature-visual img {
    width: 108%;
    height: 108%;
    transform: translate(-1%, 5%);
}

/* هاور */

.danu-feature-banner:hover {
    box-shadow: 0 18px 40px rgba(24, 55, 84, 0.16);
    transform: translateY(-4px);
}

.danu-feature-banner--laptop:hover
.danu-feature-visual img {
    transform: translate(-2%, 5%) scale(1.025);
}

.danu-feature-banner--mobile:hover
.danu-feature-visual img {
    transform: translate(-1%, 2%) scale(1.025);
}

/* تبلت */

@media (max-width: 1050px) {
    .danu-feature-banner {
        height: 235px;
    }

    .danu-feature-copy {
        flex-basis: 52%;
        padding: 21px;
    }

        .danu-feature-copy h3 {
            font-size: 20px;
        }
}

/* موبایل */

@media (max-width: 650px) {
    .danu-feature-banners {
        padding: 0 0 34px;
    }

    .danu-feature-banners-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .danu-feature-banner {
        height: 185px;
        border-radius: 18px;
    }

    .danu-feature-copy {
        flex-basis: 57%;
        padding: 15px 17px;
    }

    .danu-feature-label {
        min-height: 23px;
        margin-bottom: 4px;
        padding: 3px 8px;
        font-size: 8px;
    }

    .danu-feature-copy h3 {
        font-size: 17px;
    }

    .danu-feature-copy p {
        margin: 2px 0 10px;
        font-size: 8px;
    }

    .danu-feature-link {
        min-height: 31px;
        padding: 5px 9px;
        border-radius: 9px;
        font-size: 8px;
    }

    .danu-feature-banner--laptop
    .danu-feature-visual img {
        width: 125%;
        height: 125%;
        transform: translate(-4%, 10%);
    }

    .danu-feature-banner--mobile
    .danu-feature-visual img {
        width: 115%;
        height: 115%;
        transform: translate(-3%, 6%);
    }
}
/* =========================================================
   Danukala Best Sellers
   ========================================================= */

.danu-best-sellers {
    padding: 4px 0 50px;
    direction: rtl;
    background: #fff;
}

.danu-best-sellers-shell {
    overflow: hidden;
    padding: 22px;
    border: 1px solid #e3e8ed;
    border-radius: 24px;
    background: linear-gradient( 180deg, #fff 0%, #fbfdfe 100% );
}

/* عنوان */

.danu-best-sellers-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

    .danu-best-sellers-header > div {
        display: flex;
        align-items: center;
        gap: 12px;
    }

.danu-best-sellers-icon {
    display: grid;
    width: 45px;
    height: 45px;
    color: #ff6746;
    border-radius: 14px;
    background: #fff0e9;
    place-items: center;
    font-size: 18px;
}

.danu-best-sellers-header small {
    display: block;
    margin-bottom: 2px;
    color: #00a5b6;
   
    font-weight: 800;
}

.danu-best-sellers-header h2 {
    margin: 0;
    color: #17213a;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.danu-best-sellers-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #697487;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;
    transition: 180ms ease;
}

    .danu-best-sellers-all:hover {
        gap: 12px;
        color: #00a6b8;
    }

/* گرید */

.danu-best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0 20px;
}

/* هر محصول */

.danu-best-seller-item {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 36px 76px minmax(0, 1fr) 20px;
    min-width: 0;
    min-height: 102px;
    color: #202c43;
    border-bottom: 1px solid #edf0f2;
    text-decoration: none !important;
    transition: background-color 180ms ease, transform 180ms ease;
}

    .danu-best-seller-item:nth-last-child(-n + 4) {
        border-bottom-color: transparent;
    }

    .danu-best-seller-item:hover {
        color: #202c43;
        border-radius: 13px;
        background: #f6fbfc;
        transform: translateX(-3px);
    }

/* شماره رتبه */

.danu-best-seller-rank {
    color: #00aebe;
    font-size: 25px;
    font-weight: 900;
    text-align: center;
    letter-spacing: -1px;
}

/* تصویر */

.danu-best-seller-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 78px;
    overflow: hidden;
    border-radius: 13px;
    background: #fff;
}

    .danu-best-seller-image img {
        width: 90%;
        height: 90%;
        object-fit: contain;
        transition: transform 200ms ease;
    }

.danu-best-seller-item:hover
.danu-best-seller-image img {
    transform: scale(1.07);
}

/* اطلاعات */

.danu-best-seller-info {
    display: block;
    min-width: 0;
    padding: 0 9px;
}

    .danu-best-seller-info strong {
        display: -webkit-box;
        overflow: hidden;
        color: #263148;
       
        font-weight: 800;
        line-height: 1.9;
      
    }

    .danu-best-seller-info small {
        display: block;
        margin-top: 4px;
        overflow: hidden;
        color: #a0a7b3;
       
        font-weight: 500;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

/* فلش */

.danu-best-seller-arrow {
    color: #c2c8d0;
    font-size: 9px;
    opacity: 0;
    transform: translateX(5px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.danu-best-seller-item:hover
.danu-best-seller-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* تبلت */

@media (max-width: 1200px) {
    .danu-best-sellers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .danu-best-seller-item:nth-last-child(-n + 4) {
        border-bottom-color: #edf0f2;
    }

    .danu-best-seller-item:nth-last-child(-n + 3) {
        border-bottom-color: transparent;
    }
}

@media (max-width: 900px) {
    .danu-best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .danu-best-seller-item:nth-last-child(-n + 3) {
        border-bottom-color: #edf0f2;
    }

    .danu-best-seller-item:nth-last-child(-n + 2) {
        border-bottom-color: transparent;
    }
}

/* موبایل */

@media (max-width: 650px) {
    .danu-best-sellers {
        padding: 0 0 34px;
    }

    .danu-best-sellers-shell {
        margin-inline: -5px;
        padding: 16px 12px;
        border-radius: 19px;
    }

    .danu-best-sellers-header {
        margin-bottom: 12px;
    }

    .danu-best-sellers-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 15px;
    }

    .danu-best-sellers-header h2 {
        font-size: 17px;
    }

    .danu-best-sellers-grid {
        display: grid;
        grid-auto-columns: 270px;
        grid-auto-flow: column;
        grid-template-columns: none;
        grid-template-rows: repeat(3, 88px);
        gap: 0 11px;
        overflow-x: auto;
        padding-bottom: 9px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .danu-best-sellers-grid::-webkit-scrollbar {
            display: none;
        }

    .danu-best-seller-item {
        grid-template-columns: 31px 62px minmax(0, 1fr);
        min-height: 88px;
        scroll-snap-align: start;
    }

    .danu-best-seller-image {
        width: 58px;
        height: 66px;
    }

    .danu-best-seller-rank {
        font-size: 21px;
    }

    .danu-best-seller-info strong {
        font-size: 9px;
    }

    .danu-best-seller-arrow,
    .danu-best-seller-info small {
        display: none;
    }
}
/* =========================================================
   Danukala Popular Brands
   ========================================================= */

.danu-popular-brands {
    padding: 2px 0 50px;
    direction: rtl;
    background: #fff;
}

.danu-brands-shell {
    overflow: hidden;
    border: 1px solid #e4e8ed;
    border-radius: 23px;
    background: #fff;
}

/* عنوان */

.danu-brands-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 19px 22px 15px;
    border-bottom: 1px solid #edf0f2;
}

    .danu-brands-header > div {
        display: flex;
        align-items: center;
        gap: 11px;
    }

.danu-brands-title-icon {
    display: grid;
    width: 42px;
    height: 42px;
    color: #00a8ba;
    border-radius: 13px;
    background: #e8f9fb;
    place-items: center;
    font-size: 17px;
}

.danu-brands-header small {
    display: block;
    margin-bottom: 1px;
    color: #9aa2af;    
    font-weight: 700;
}

.danu-brands-header h2 {
    margin: 0;
    color: #19243c;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.danu-brands-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #687386;
   
    font-weight: 800;
    text-decoration: none !important;
    transition: 180ms ease;
}

    .danu-brands-all:hover {
        gap: 12px;
        color: #00a4b6;
    }

/* لیست برندها */

.danu-brands-list {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

    .danu-brands-list::-webkit-scrollbar {
        display: none;
    }

.danu-brand-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 180px;
    min-width: 180px;
    height: 132px;
    padding: 22px;
    border-left: 1px solid #edf0f2;
    background: #fff;
    text-decoration: none !important;
    scroll-snap-align: start;
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

    .danu-brand-item:last-child {
        border-left: 0;
    }

    .danu-brand-item::after {
        position: absolute;
        right: 50%;
        bottom: 0;
        width: 0;
        height: 3px;
        content: "";
        border-radius: 99px 99px 0 0;
        background: #00afc0;
        transform: translateX(50%);
        transition: width 200ms ease;
    }

    .danu-brand-item:hover {
        z-index: 2;
        background: #fbfdfe;
        box-shadow: 0 10px 28px rgba(29, 58, 85, 0.08);
    }

        .danu-brand-item:hover::after {
            width: 45px;
        }

    .danu-brand-item img {
        display: block;
        width: 100%;
        height: 76px;
        object-fit: contain;
        filter: grayscale(22%);
        opacity: 0.8;
        transition: filter 200ms ease, opacity 200ms ease, transform 200ms ease;
    }

    .danu-brand-item:hover img {
        filter: grayscale(0);
        opacity: 1;
        transform: scale(1.06);
    }

/* کارت همکاری */

.danu-brand-join {
    flex-direction: column;
    gap: 9px;
    color: #526075;
    background: linear-gradient( 135deg, #f3fbfc, #f8fafc );
}

    .danu-brand-join > span {
        display: grid;
        width: 39px;
        height: 39px;
        color: #00a8ba;
        border: 1px dashed rgba(0, 168, 186, 0.45);
        border-radius: 12px;
        background: #fff;
        place-items: center;
    }

    .danu-brand-join strong {
        color: #526075;       
        font-weight: 800;
    }

/* موبایل */

@media (max-width: 650px) {
    .danu-popular-brands {
        padding: 0 0 34px;
    }

    .danu-brands-shell {
        margin-inline: -5px;
        border-radius: 19px;
    }

    .danu-brands-header {
        padding: 14px 14px 11px;
    }

    .danu-brands-title-icon {
        width: 37px;
        height: 37px;
        border-radius: 11px;
        font-size: 14px;
    }

    .danu-brands-header h2 {
        font-size: 17px;
    }

    .danu-brands-all {
        font-size: 9px;
    }

        .danu-brands-all span {
            display: none;
        }

    .danu-brand-item {
        flex-basis: 135px;
        min-width: 135px;
        height: 105px;
        padding: 17px;
    }

        .danu-brand-item img {
            height: 61px;
        }
}
/* =========================================================
   Danukala Personal Suggestions
   ========================================================= */

.danu-personal-section {
    padding: 2px 0 50px;
    direction: rtl;
    background: #fff;
}

/* عنوان اصلی */

.danu-personal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}

    .danu-personal-header > div {
        display: flex;
        align-items: center;
        gap: 11px;
    }

.danu-personal-header-icon {
    display: grid;
    width: 43px;
    height: 43px;
    color: #8758d1;
    border-radius: 14px;
    background: #f1eaff;
    place-items: center;
    font-size: 17px;
}

.danu-personal-header small {
    display: block;
    color: #00a5b7;
    font-size: 9px;
    font-weight: 800;
}

.danu-personal-header h2 {
    margin: 1px 0 0;
    color: #18223a;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.danu-personal-header > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #727c8d;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none !important;
}

    .danu-personal-header > a:hover {
        color: #00a6b8;
    }

/* گرید اصلی */

.danu-personal-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #e3e8ed;
    border-radius: 23px;
    background: #fff;
}

/* هر پنل */

.danu-suggestion-panel {
    --suggestion-color: #00aabe;
    --suggestion-soft: #e9f9fb;
    min-width: 0;
    padding: 18px;
    border-left: 1px solid #e9edf0;
}

    .danu-suggestion-panel:last-child {
        border-left: 0;
    }

/* رنگ‌های پنل */

.suggestion-blue {
    --suggestion-color: #198fc7;
    --suggestion-soft: #e9f6fc;
}

.suggestion-purple {
    --suggestion-color: #8a5ac8;
    --suggestion-soft: #f2eafd;
}

.suggestion-yellow {
    --suggestion-color: #c89000;
    --suggestion-soft: #fff5d8;
}

.suggestion-green {
    --suggestion-color: #3c9b75;
    --suggestion-soft: #eaf7f0;
}

/* عنوان پنل */

.danu-suggestion-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

    .danu-suggestion-panel-header > span {
        display: block;
        min-width: 0;
    }

    .danu-suggestion-panel-header strong {
        display: block;
        overflow: hidden;
        color: #202b42;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.7;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .danu-suggestion-panel-header small {
        display: block;
        margin-top: 2px;
        overflow: hidden;
        color: #969fac;        
        font-weight: 600;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .danu-suggestion-panel-header > i {
        display: grid;
        flex: 0 0 auto;
        width: 26px;
        height: 26px;
        color: #198fc7;
        border-radius: 8px;
        background: #e9f6fc;
        place-items: center;
        font-size: 8px;
    }

/* گرید محصولات هر پنل */

.danu-suggestion-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.danu-suggestion-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    height: 145px;
    padding: 12px;
    background: #fff;
}

    .danu-suggestion-product:nth-child(odd) {
        border-left: 1px solid #edf0f2;
    }

    .danu-suggestion-product:nth-child(-n + 2) {
        border-bottom: 1px solid #edf0f2;
    }

    .danu-suggestion-product img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 200ms ease;
    }

    .danu-suggestion-product:hover img {
        transform: scale(1.065);
    }

/* نشان منتخب */

.danu-suggestion-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 7px;
    color: #fff;
    border-radius: 7px;
    background: #00afbe;
    font-size: 10px;
    font-weight: 900;
}

/* مشاهده محصولات */

.danu-suggestion-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    margin-top: 11px;
    color: #000;
    border-radius: 10px;
    background-color: #edf0f2;   
    font-weight: 800;
    text-decoration: none !important;
    transition: gap 180ms ease, filter 180ms ease;
}

    .danu-suggestion-more:hover {
        gap: 11px;
        color: var(--suggestion-color);
        filter: brightness(0.97);
    }

/* تبلت */

@media (max-width: 1050px) {
    .danu-personal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .danu-suggestion-panel:nth-child(2) {
        border-left: 0;
    }

    .danu-suggestion-panel:nth-child(-n + 2) {
        border-bottom: 1px solid #e9edf0;
    }
}

/* موبایل */

@media (max-width: 650px) {
    .danu-personal-section {
        padding: 0 0 34px;
    }

    .danu-personal-header {
        margin-bottom: 13px;
    }

    .danu-personal-header-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 14px;
    }

    .danu-personal-header h2 {
        font-size: 17px;
    }

    .danu-personal-header > a {
        font-size: 0;
    }

        .danu-personal-header > a i {
            font-size: 13px;
        }

    .danu-personal-grid {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        margin-inline: -16px;
        padding: 0 16px 11px;
        border: 0;
        border-radius: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .danu-personal-grid::-webkit-scrollbar {
            display: none;
        }

    .danu-suggestion-panel {
        flex: 0 0 280px;
        padding: 14px;
        border: 1px solid #e4e8ed !important;
        border-radius: 18px;
        background: #fff;
        scroll-snap-align: start;
    }

    .danu-suggestion-product {
        height: 120px;
    }
}
/* =========================================================
   Danukala Customer Club
   ========================================================= */

.danu-club-section {
    padding: 2px 0 50px;
    direction: rtl;
    background: #fff;
}

.danu-club-banner {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: 170px minmax(270px, 1fr) minmax(330px, auto) auto;
    gap: 28px;
    min-height: 180px;
    overflow: hidden;
    padding: 25px 32px;
    color: #fff;
    border-radius: 24px;
    background: radial-gradient( circle at 8% 20%, rgba(255, 210, 78, 0.42), transparent 25% ), linear-gradient( 125deg, #6637a8 0%, #7852c4 38%, #087fa2 100% );
    box-shadow: 0 16px 38px rgba(69, 50, 126, 0.16);
    isolation: isolate;
}

    /* خطوط تزئینی */

    .danu-club-banner::before,
    .danu-club-banner::after {
        position: absolute;
        z-index: -1;
        content: "";
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 50%;
    }

    .danu-club-banner::before {
        right: -100px;
        bottom: -160px;
        width: 350px;
        height: 350px;
    }

    .danu-club-banner::after {
        left: -75px;
        top: -130px;
        width: 300px;
        height: 300px;
    }

/* تصویرسازی CSS */

.danu-club-visual {
    position: relative;
    width: 145px;
    height: 125px;
}

.danu-club-main-icon {
    position: absolute;
    right: 18px;
    bottom: 3px;
    display: grid;
    width: 102px;
    height: 102px;
    color: #6642a3;
    border: 7px solid rgba(255, 255, 255, 0.21);
    border-radius: 32px;
    background: linear-gradient( 145deg, #fff7c7, #ffd75b );
    box-shadow: 0 18px 30px rgba(35, 25, 84, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.65);
    place-items: center;
    font-size: 39px;
    transform: rotate(-7deg);
}

.danu-club-coin {
    position: absolute;
    display: grid;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 17px rgba(33, 24, 83, 0.15);
    backdrop-filter: blur(7px);
    place-items: center;
}

.danu-club-coin--one {
    top: 1px;
    left: 12px;
    width: 38px;
    height: 38px;
    color: #ffe071;
}

.danu-club-coin--two {
    top: 3px;
    right: 4px;
    width: 31px;
    height: 31px;
    color: #ff9cba;
    font-size: 11px;
}

.danu-club-coin--three {
    left: 0;
    bottom: 7px;
    width: 29px;
    height: 29px;
    color: #75edf2;
    font-size: 10px;
}

/* متن */

.danu-club-copy {
    min-width: 0;
}

.danu-club-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin-bottom: 6px;
    padding: 4px 10px;
    color: #fff1a8;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
}

.danu-club-copy h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(20px, 1.6vw, 27px);
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.7px;
}

.danu-club-copy p {
    max-width: 490px;
    margin: 5px 0 0;
    color: rgba(255, 255, 255, 0.78);   
    font-weight: 500;
    line-height: 2;
}

/* مزایا */

.danu-club-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

    .danu-club-benefits span {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        width: 94px;
        height: 78px;
        color: rgba(255, 255, 255, 0.88);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(8px);       
        font-weight: 700;
        font-size:12px;
    }

    .danu-club-benefits i {
        margin-bottom: 8px;
        color: #ffe073;
        font-size: 17px;
    }

/* دکمه */

.danu-club-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 140px;
    min-height: 45px;
    padding: 9px 16px;
    color: #584094;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(30, 24, 75, 0.16);   
    font-weight: 900;
    text-decoration: none !important;
    transition: gap 180ms ease, transform 180ms ease;
}

    .danu-club-action:hover {
        gap: 14px;
        color: #584094;
        transform: translateX(-3px);
    }

/* تبلت */

@media (max-width: 1100px) {
    .danu-club-banner {
        grid-template-columns: 125px minmax(230px, 1fr) auto;
        gap: 19px;
    }

    .danu-club-benefits {
        display: none;
    }

    .danu-club-visual {
        width: 120px;
    }

    .danu-club-main-icon {
        width: 88px;
        height: 88px;
        font-size: 32px;
    }
}

/* موبایل */

@media (max-width: 650px) {
    .danu-club-section {
        padding: 0 0 34px;
    }

    .danu-club-banner {
        display: grid;
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 12px;
        min-height: 165px;
        padding: 17px;
        border-radius: 19px;
    }

    .danu-club-visual {
        width: 70px;
        height: 88px;
    }

    .danu-club-main-icon {
        right: 0;
        bottom: 3px;
        width: 68px;
        height: 68px;
        border-width: 4px;
        border-radius: 21px;
        font-size: 25px;
    }

    .danu-club-coin {
        display: none;
    }

    .danu-club-eyebrow {
        min-height: 23px;
        margin-bottom: 4px;
        padding: 3px 8px;
        font-size: 8px;
    }

    .danu-club-copy h2 {
        font-size: 16px;
    }

    .danu-club-copy p {
        display: -webkit-box;
        overflow: hidden;
        font-size: 8px;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .danu-club-action {
        grid-column: 1 / -1;
        justify-self: stretch;
        min-height: 38px;
        margin-top: -2px;
    }
}
/* =========================================================
   Danukala Magazine
   ========================================================= */

.danu-magazine-section {
    padding: 2px 0 52px;
    direction: rtl;
    background: #fff;
}

/* عنوان */

.danu-magazine-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 17px;
}

    .danu-magazine-header > div {
        display: flex;
        align-items: center;
        gap: 11px;
    }

.danu-magazine-icon {
    display: grid;
    width: 43px;
    height: 43px;
    color: #1189b7;
    border-radius: 14px;
    background: #e7f6fc;
    place-items: center;
    font-size: 16px;
}

.danu-magazine-header small {
    display: block;
    color: #00a7b8;
    font-size: 9px;
    font-weight: 800;
}

.danu-magazine-header h2 {
    margin: 1px 0 0;
    color: #18223a;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.danu-magazine-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #707b8d;    
    font-weight: 800;
    text-decoration: none !important;
    transition: 180ms ease;
}

    .danu-magazine-all:hover {
        gap: 12px;
        color: #00a4b6;
    }

/* گرید مقالات */

.danu-magazine-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

/* کارت */

.danu-article-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e3e8ed;
    border-radius: 19px;
    background: #fff;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

    .danu-article-card:hover {
        box-shadow: 0 15px 34px rgba(27, 55, 82, 0.11);
        transform: translateY(-4px);
    }

/* تصویر */

.danu-article-image {
    position: relative;
    display: block;
    height: 205px;
    overflow: hidden;
    background: #eef2f5;
}

    .danu-article-image::after {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        background: linear-gradient( 180deg, transparent 50%, rgba(12, 28, 48, 0.28) 100% );
    }

    .danu-article-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
    }

.danu-article-card:hover
.danu-article-image img {
    transform: scale(1.045);
}

/* دسته‌بندی */

.danu-article-category {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 2;
    min-height: 26px;
    padding: 5px 9px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(12, 39, 61, 0.56);
    backdrop-filter: blur(7px);    
    font-weight: 800;
}

.danu-article-featured {
    position: absolute;
    left: 13px;
    bottom: 13px;
    z-index: 2;
    padding: 5px 9px;
    color: #4e3b00;
    border-radius: 8px;
    background: #ffdc59;
    font-size: 11px;
    font-weight: 900;
}

/* محتوای مقاله */

.danu-article-body {
    padding: 14px 15px 13px;
}

.danu-article-title {
    display: -webkit-box;
    min-height: 48px;
    overflow: hidden;
    color: #212c43;   
    font-weight: 900;
    line-height: 2;
    text-decoration: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

    .danu-article-title:hover {
        color: #00a3b5;
    }

/* اطلاعات پایین کارت */

.danu-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-top: 11px;
    padding-top: 11px;
    border-top: 1px solid #edf0f2;
}

    .danu-article-meta > span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #9ca4b1;        
    }

    .danu-article-meta > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: #667185;        
        font-weight: 800;
        text-decoration: none !important;
        transition: gap 180ms ease;
    }

        .danu-article-meta > a:hover {
            gap: 9px;
            color: #00a5b7;
        }

/* تبلت */

@media (max-width: 1050px) {
    .danu-magazine-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* موبایل */

@media (max-width: 650px) {
    .danu-magazine-section {
        padding: 0 0 36px;
    }

    .danu-magazine-header {
        margin-bottom: 13px;
    }

    .danu-magazine-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 14px;
    }

    .danu-magazine-header h2 {
        font-size: 17px;
    }

    .danu-magazine-all {
        font-size: 9px;
    }

    .danu-magazine-grid {
        display: flex;
        gap: 11px;
        overflow-x: auto;
        margin-inline: -16px;
        padding: 0 16px 11px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

        .danu-magazine-grid::-webkit-scrollbar {
            display: none;
        }

    .danu-article-card {
        flex: 0 0 275px;
        scroll-snap-align: start;
    }

    .danu-article-image {
        height: 170px;
    }
}
.danu-signature-services,
.danu-deals-section,
.danu-category-orbit,
.danu-feature-banners,
.danu-best-sellers,
.danu-popular-brands,
.danu-personal-section,
.danu-club-section {
    padding-bottom: 38px;
}
@media (max-width: 650px) {
    .danu-signature-services,
    .danu-deals-section,
    .danu-category-orbit,
    .danu-feature-banners,
    .danu-best-sellers,
    .danu-popular-brands,
    .danu-personal-section,
    .danu-club-section {
        padding-bottom: 28px;
    }
}
.danu-deals-track {
    padding-inline: 0 14px;
}
.danu-category-orbit-header h2 {
    font-size: 26px;
}

@media (max-width: 650px) {
    .danu-category-orbit-header h2 {
        font-size: 19px;
    }
}
/* =========================================================
   Danukala Main Footer
   ========================================================= */

.danu-site-footer {
    position: relative;
    direction: rtl;
    color: #263249;
    border-top: 1px solid #e5eaee;
    background: #f7fafb;
}

/* =========================================================
   App Banner
   ========================================================= */

.danu-footer-app {
    padding: 22px 0;
    background: radial-gradient( circle at 10% 30%, rgba(67, 221, 230, 0.18), transparent 24% ), linear-gradient( 115deg, #142a55, #173d70 55%, #086f8f );
}

.danu-footer-app-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.danu-footer-app-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.danu-footer-white-logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 48px;
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

    .danu-footer-white-logo img {
        display: block;
        width: 190px;
        height: auto;
    }

.danu-footer-app-brand strong {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
}

.danu-footer-app-brand small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 9px;
    font-weight: 500;
}

.danu-footer-app-download {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .danu-footer-app-download > span {
        color: rgba(255, 255, 255, 0.8);
        font-size: 10px;
        font-weight: 800;
    }

    .danu-footer-app-download > div {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .danu-footer-app-download a {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 9px;
    }

    .danu-footer-app-download img {
        display: block;
        width: 145px;
        height: 36px;
        object-fit: contain;
    }

.danu-footer-app-more {
    width: 42px;
    height: 36px;
    color: #16325d;
    background: #fff;
    text-decoration: none !important;
}

/* =========================================================
   Main Footer
   ========================================================= */

.danu-footer-main {
    padding: 32px 0 0;
    background: radial-gradient( circle at 94% 8%, rgba(0, 174, 191, 0.055), transparent 24% ), #f8fafb;
}

/* تماس */

.danu-footer-contact-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 31px;
    padding: 17px 19px;
    border: 1px solid #e3e9ed;
    border-radius: 17px;
    background: #fff;
}

    .danu-footer-contact-bar > div:first-child {
        display: flex;
        align-items: center;
        gap: 11px;
    }

.danu-footer-contact-icon {
    display: grid;
    width: 43px;
    height: 43px;
    color: #00aabc;
    border-radius: 13px;
    background: #e8f9fb;
    place-items: center;
    font-size: 17px;
}

.danu-footer-contact-bar small {
    display: block;
    color: #99a2af;    
    font-weight: 600;
}

.danu-footer-contact-bar strong {
    display: block;
    margin-top: 2px;
    color: #202b42;
    font-weight: 900;
}

.danu-footer-contact-methods {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .danu-footer-contact-methods a,
    .danu-footer-contact-methods span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        color: #687386;
        font-weight: 700;
        text-decoration: none !important;
    }

        .danu-footer-contact-methods a:hover {
            color: #00a2b4;
        }

    .danu-footer-contact-methods i {
        color: #00a9bb;
    }

/* ستون‌ها */

.danu-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(130px, 0.8fr)) 1.25fr;
    gap: 30px;
    padding-bottom: 31px;
}

.danu-footer-column {
    min-width: 0;
}

    .danu-footer-column h3 {
        position: relative;
        margin: 0 0 15px;
        padding-bottom: 9px;
        color: #202b42;
        font-size: 16px;
        font-weight: 900;
    }

        .danu-footer-column h3::after {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 25px;
            height: 3px;
            content: "";
            border-radius: 99px;
            background: #00afc0;
        }

    .danu-footer-column ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .danu-footer-column li {
        margin-bottom: 9px;
    }

        .danu-footer-column li:last-child {
            margin-bottom: 0;
        }

        .danu-footer-column li a {
            position: relative;
            display: inline-block;
            color: #727c8d;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.9;
            text-decoration: none !important;
            transition: color 180ms ease, transform 180ms ease;
        }

            .danu-footer-column li a::before {
                position: absolute;
                top: 50%;
                right: -9px;
                width: 4px;
                height: 4px;
                content: "";
                border-radius: 50%;
                background: #00afc0;
                opacity: 0;
                transform: translateY(-50%);
                transition: opacity 180ms ease;
            }

            .danu-footer-column li a:hover {
                color: #009daf;
                transform: translateX(-3px);
            }

                .danu-footer-column li a:hover::before {
                    opacity: 1;
                }

/* درباره */

.danu-footer-about p {
    margin: 0;
    color: #747f90;
    font-weight: 500;
    line-height: 2.1;
}

.danu-footer-about-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 11px;
    color: #00a5b7;
    font-size: 9px;
    font-weight: 800;
    text-decoration: none !important;
}

    .danu-footer-about-link:hover {
        gap: 11px;
        color: #007f91;
    }

/* شبکه اجتماعی */

.danu-footer-social {
    margin-top: 20px;
}

    .danu-footer-social > span {
        display: block;
        margin-bottom: 9px;
        color: #4f5b70;
        font-size: 9px;
        font-weight: 800;
    }

    .danu-footer-social > div {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .danu-footer-social a {
        display: grid;
        width: 34px;
        height: 34px;
        color: #718094;
        border: 1px solid #dfe6ea;
        border-radius: 11px;
        background: #fff;
        text-decoration: none !important;
        place-items: center;
        transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
    }

        .danu-footer-social a:hover {
            color: #00a8ba;
            border-color: rgba(0, 168, 186, 0.34);
            transform: translateY(-3px);
        }

/* خدمات ارزی */

.danu-footer-currency-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    min-height: 42px;
    margin-top: 15px;
    padding: 8px 11px;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient( 135deg, #00b29e, #008cac );
    box-shadow: 0 9px 20px rgba(0, 153, 168, 0.16);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
}

    .danu-footer-currency-button:hover {
        color: #fff;
        transform: translateY(-2px);
    }

    .danu-footer-currency-button span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
    }

/* خبرنامه */

.danu-footer-newsletter > p {
    margin: 0 0 12px;
    color: #778294;
    font-size: 12px;
    line-height: 2;
}

.danu-footer-newsletter-form {
    display: flex;
    overflow: hidden;
    height: 43px;
    border: 1px solid #dfe6ea;
    border-radius: 12px;
    background: #fff;
}

    .danu-footer-newsletter-form input {
        flex: 1;
        min-width: 0;
        padding: 0 11px;
        color: #263249;
        border: 0;
        outline: 0;
        background: transparent;
        font-family: inherit;
        font-size: 9px;
    }

        .danu-footer-newsletter-form input::placeholder {
            color: #a5adb8;
        }

    .danu-footer-newsletter-form button {
        flex: 0 0 auto;
        margin: 4px;
        padding: 0 12px;
        color: #fff;
        border: 0;
        border-radius: 9px;
        background: #00aabc;
        font-family: inherit;
        font-size: 8px;
        font-weight: 900;
        cursor: pointer;
    }

/* مجوزها */

.danu-footer-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin-top: 12px;
}

    .danu-footer-trust a {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        min-height: 74px;
        padding: 8px;
        color: #667286;
        border: 1px solid #e0e6ea;
        border-radius: 12px;
        background: #fff;
        text-align: center;
        text-decoration: none !important;
    }

    .danu-footer-trust i {
        margin-bottom: 7px;
        color: #00a7b9;
        font-size: 19px;
    }

    .danu-footer-trust span {
        
        font-weight: 800;
    }

/* توضیحات پایانی */

.danu-footer-description {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding: 23px 0;
    border-top: 1px solid #e4e9ed;
}

    .danu-footer-description h2 {
        margin: 0 0 6px;
        color: #303c52;
        font-size: 16px;
        font-weight: 900;
    }

    .danu-footer-description p {
        max-width: 1050px;
        margin: 0;
        color: #8a94a3;        
        line-height: 2.1;
    }

.danu-footer-more-text {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    padding: 0;
    color: #667286;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

/* =========================================================
   Footer Bottom
   ========================================================= */

.danu-footer-bottom {
    padding: 17px 0;
    border-top: 1px solid #dfe6ea;
    background: #eef3f5;
}

.danu-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.danu-footer-bottom p {
    margin: 0;
    color: #737e8e;
    font-size: 12px;
    font-weight: 600;
}

.danu-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

    .danu-footer-bottom-links a {
        color: #687386;
        font-size: 10px;
        font-weight: 700;
        text-decoration: none !important;
    }

        .danu-footer-bottom-links a:hover {
            color: #00a5b7;
        }

.danu-footer-payment {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .danu-footer-payment span {
        color: #7d8796;
        font-size: 10px;
        font-weight: 700;
    }

    .danu-footer-payment img {
        display: block;
        width: 190px;
        height: 24px;
        object-fit: contain;
    }

/* بازگشت به بالا */

.danu-footer-back-top {
    position: absolute;
    top: -24px;
    left: 32px;
    z-index: 5;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    color: #fff;
    border: 5px solid #fff;
    border-radius: 15px;
    background: #19355f;
    box-shadow: 0 9px 22px rgba(19, 46, 76, 0.18);
    cursor: pointer;
    place-items: center;
    transition: transform 180ms ease;
}

    .danu-footer-back-top:hover {
        transform: translateY(-4px);
    }

/* =========================================================
   Footer Responsive
   ========================================================= */

@media (max-width: 1200px) {
    .danu-footer-grid {
        grid-template-columns: 1.3fr repeat(3, minmax(135px, 1fr));
    }

    .danu-footer-newsletter,
    .danu-footer-currency {
        margin-top: 5px;
    }
}

@media (max-width: 900px) {
    .danu-footer-app-inner,
    .danu-footer-contact-bar,
    .danu-footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .danu-footer-app-download {
        width: 100%;
        justify-content: space-between;
    }

    .danu-footer-contact-methods {
        flex-wrap: wrap;
    }

    .danu-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .danu-footer-about,
    .danu-footer-newsletter {
        grid-column: 1 / -1;
    }

    .danu-footer-description {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 650px) {
    .danu-footer-app {
        padding: 17px 0;
    }

    .danu-footer-app-brand {
        align-items: flex-start;
        flex-direction: column;
        gap: 11px;
    }

    .danu-footer-white-logo {
        min-height: auto;
        padding-left: 0;
        border-left: 0;
    }

        .danu-footer-white-logo img {
            width: 150px;
        }

    .danu-footer-app-download {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

        .danu-footer-app-download > div {
            width: 100%;
            overflow-x: auto;
        }

        .danu-footer-app-download img {
            width: 125px;
            height: 32px;
        }

    .danu-footer-main {
        padding-top: 21px;
    }

    .danu-footer-contact-bar {
        margin-bottom: 22px;
        padding: 14px;
    }

    .danu-footer-contact-methods {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .danu-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 17px;
    }

    .danu-footer-about,
    .danu-footer-newsletter,
    .danu-footer-currency {
        grid-column: 1 / -1;
    }

    .danu-footer-column h3 {
        font-size: 11px;
    }

    .danu-footer-description {
        padding: 19px 0;
    }

    .danu-footer-bottom {
        padding: 16px 0 78px;
    }

    .danu-footer-bottom-links {
        flex-wrap: wrap;
        gap: 10px 15px;
    }

    .danu-footer-payment {
        align-items: flex-start;
        flex-direction: column;
    }

        .danu-footer-payment img {
            width: 170px;
        }

    .danu-footer-back-top {
        top: -21px;
        left: 17px;
        width: 44px;
        height: 44px;
    }
}
.danu-footer-highlight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 26px 30px;
    margin-bottom: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: radial-gradient( circle at 15% 0, rgba(20, 184, 166, 0.23), transparent 34% ), linear-gradient(115deg, #0b1733, #103b51);
}

.danu-footer-highlight__content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.danu-footer-highlight__icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 25px;
    border-radius: 20px;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    box-shadow: 0 12px 30px rgba(8, 145, 178, 0.25);
}

.danu-footer-highlight__label {
    display: block;
    margin-bottom: 5px;
    color: #5eead4;
    font-size: 12px;
    font-weight: 800;
}

.danu-footer-highlight h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
}

.danu-footer-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.9;
}

.danu-footer-highlight__action {
    min-height: 48px;
    padding: 0 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #082f49;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    border-radius: 14px;
    background: #fff;
    transition: 0.2s ease;
}

    .danu-footer-highlight__action:hover {
        color: #fff;
        background: #0db5ad;
        transform: translateY(-2px);
    }

@media (max-width: 700px) {
    .danu-footer-highlight {
        align-items: stretch;
        flex-direction: column;
        padding: 22px 18px;
    }

    .danu-footer-highlight__content {
        align-items: flex-start;
    }

    .danu-footer-highlight__icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        border-radius: 16px;
    }

    .danu-footer-highlight h3 {
        font-size: 17px;
    }

    .danu-footer-highlight__action {
        width: 100%;
    }
}