
/* =========================================================
   Fonts
========================================================= */

@font-face {
    font-family: 'IRANSansFanum';
    src: url('/assets/front/fonts/iransansfanum/woff2/IRANSansWeb(FaNum)_UltraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansFanum';
    src: url('/assets/front/fonts/iransansfanum/woff2/IRANSansWeb(FaNum)_Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansFanum';
    src: url('/assets/front/fonts/iransansfanum/woff2/IRANSansWeb(FaNum).woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansFanum';
    src: url('/assets/front/fonts/iransansfanum/woff2/IRANSansWeb(FaNum)_Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansFanum';
    src: url('/assets/front/fonts/iransansfanum/woff2/IRANSansWeb(FaNum)_Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IRANSansFanum';
    src: url('/assets/front/fonts/iransansfanum/woff2/IRANSansWeb(FaNum)_Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   Shabnam
========================================================= */

@font-face {
    font-family: 'Shabnam';
    src: url('/assets/front/fonts/shabnam/Shabnam-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shabnam';
    src: url('/assets/front/fonts/shabnam/Shabnam.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Shabnam';
    src: url('/assets/front/fonts/shabnam/Shabnam-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* =========================================================
   Root / Design System
========================================================= */

:root {

    /* -----------------------------------------------------
       Fonts
    ----------------------------------------------------- */

    --font-family: 'IRANSansFanum';
    --font-family-secondary: 'Shabnam';


    /* -----------------------------------------------------
       Brand Colors
    ----------------------------------------------------- */

    --primary: #000643;
    --primary-light: #161B62;
    --primary-dark: #00032E;

    --gold: #AD861C;
    --gold-light: #C8A94A;
    --gold-dark: #8B6A12;

    --white: #FFFFFF;


    /* -----------------------------------------------------
       Background
    ----------------------------------------------------- */

    --bg-body: #F7F8FC;
    --bg-light: #F1F3F8;
    --bg-dark: #000643;


    /* -----------------------------------------------------
       Text
    ----------------------------------------------------- */

    --text-primary: #111827;
    --text-secondary: #667085;
    --text-muted: #98A2B3;
    --text-white: #FFFFFF;


    /* -----------------------------------------------------
       Border
    ----------------------------------------------------- */

    --border-color: #E5E7EB;
    --border-light: #EEF0F4;


    /* -----------------------------------------------------
       Status
    ----------------------------------------------------- */

    --success: #198754;
    --danger: #DC3545;
    --warning: #AD861C;
    --info: #0D6EFD;


    /* -----------------------------------------------------
       Shadows
    ----------------------------------------------------- */

    --shadow-sm: 0 2px 8px rgba(0, 6, 67, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 6, 67, 0.10);
    --shadow-lg: 0 12px 35px rgba(0, 6, 67, 0.14);


    /* -----------------------------------------------------
       Radius
    ----------------------------------------------------- */

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;


    /* -----------------------------------------------------
       Bootstrap 5
    ----------------------------------------------------- */

    --bs-primary: #000643;
    --bs-primary-rgb: 0, 6, 67;

    --bs-warning: #AD861C;
    --bs-warning-rgb: 173, 134, 28;

    --bs-body-font-family: var(--font-family);
    --bs-body-bg: var(--bg-body);
    --bs-body-color: var(--text-primary);
}


/* =========================================================
   Global
========================================================= */

html {
    direction: rtl;
    font-size: 16px;
}

html,
body {
    min-height: 100%;
}

body,
button,
input,
textarea,
select,
optgroup {
    font-family: var(--font-family);
}

body {
    margin: 0;
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* =========================================================
   Typography
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.5;
}

p {
    margin-bottom: 1rem;
}

.text-primary {
    color: var(--primary) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}


/* =========================================================
   Links
========================================================= */

a {
    color: var(--primary);
    text-decoration: none;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

a:hover {
    color: var(--gold);
}


/* =========================================================
   Buttons
========================================================= */

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-light);
    --bs-btn-hover-border-color: var(--primary-light);

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-dark);
    --bs-btn-active-border-color: var(--primary-dark);
}


.btn-gold {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--gold);
    --bs-btn-border-color: var(--gold);

    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--gold-dark);
    --bs-btn-hover-border-color: var(--gold-dark);

    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--gold-dark);
    --bs-btn-active-border-color: var(--gold-dark);

    background-color: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    color: #fff;
}


/* =========================================================
   Form Controls
========================================================= */

.form-control,
.form-select {
    border-color: var(--border-color);
    color: var(--text-primary);
    background-color: var(--white);
    border-radius: var(--radius-md);
    font-family: var(--font-family);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(173, 134, 28, 0.12);
}


/* =========================================================
   Cards
========================================================= */

.card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}


/* =========================================================
   Selection
========================================================= */

::selection {
    background-color: var(--primary);
    color: var(--white);
}


/* =========================================================
   Scrollbar
========================================================= */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* =========================================================
   Snackbar
========================================================= */

#snackbar {
    position: fixed;
    left: 24px;
    bottom: 24px;

    width: min(420px, calc(100vw - 32px));

    z-index: 99999;

    pointer-events: none;
}


/* ---------------------------------------------------------
   Item
--------------------------------------------------------- */

.snackbar-item {
    position: relative;

    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    min-height: 68px;

    padding: 12px 14px;

    background: var(--white);

    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);

    box-shadow:
        0 12px 35px rgba(0, 6, 67, 0.14),
        0 3px 10px rgba(0, 6, 67, 0.06);

    overflow: hidden;

    pointer-events: auto;

    opacity: 0;
    transform: translateX(-30px) scale(.96);

    transition:
        opacity .3s ease,
        transform .3s cubic-bezier(.34, 1.56, .64, 1);

    direction: rtl;
}


/* ---------------------------------------------------------
   Show
--------------------------------------------------------- */

.snackbar-item.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}


/* ---------------------------------------------------------
   Icon
--------------------------------------------------------- */

.snackbar-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    font-size: 20px;

    background: var(--primary);
    color: var(--white);
}


/* ---------------------------------------------------------
   Content
--------------------------------------------------------- */

.snackbar-content {
    flex: 1;
    min-width: 0;
}

.snackbar-title {
    margin: 0 0 2px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.6;
}

.snackbar-message {
    margin: 0;

    color: var(--text-secondary);

    font-size: 13px;
    font-weight: 400;

    line-height: 1.7;

    word-break: break-word;
}


/* ---------------------------------------------------------
   Close
--------------------------------------------------------- */

.snackbar-close {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 8px;

    background: transparent;

    color: var(--text-muted);

    font-size: 18px;

    cursor: pointer;

    transition:
        background-color .2s ease,
        color .2s ease;
}

.snackbar-close:hover {
    background: var(--bg-light);
    color: var(--primary);
}


/* ---------------------------------------------------------
   Progress
--------------------------------------------------------- */

.snackbar-progress {
    position: absolute;

    right: 0;
    bottom: 0;

    height: 3px;
    width: 100%;

    background: var(--primary);

    transform-origin: right center;

    animation: snackbarProgress var(--snackbar-duration, 4000ms) linear forwards;
}


/* ---------------------------------------------------------
   Types
--------------------------------------------------------- */

.snackbar-success .snackbar-icon {
    background: rgba(25, 135, 84, .10);
    color: var(--success);
}

.snackbar-success .snackbar-progress {
    background: var(--success);
}


.snackbar-error .snackbar-icon {
    background: rgba(220, 53, 69, .10);
    color: var(--danger);
}

.snackbar-error .snackbar-progress {
    background: var(--danger);
}


.snackbar-warning .snackbar-icon {
    background: rgba(173, 134, 28, .12);
    color: var(--gold);
}

.snackbar-warning .snackbar-progress {
    background: var(--gold);
}


.snackbar-info .snackbar-icon {
    background: rgba(0, 6, 67, .08);
    color: var(--primary);
}

.snackbar-info .snackbar-progress {
    background: var(--primary);
}


/* ---------------------------------------------------------
   Animation
--------------------------------------------------------- */

@keyframes snackbarProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}


/* ---------------------------------------------------------
   Mobile
--------------------------------------------------------- */

@media (max-width: 767.98px) {

    #snackbar {
        left: 16px;
        right: 16px;

        /*
         * نوار ثابت محصول حدود 76px ارتفاع دارد.
         * 76px + 16px فاصله
         */
        bottom: 92px;

        width: auto;
    }

    .snackbar-item {
        min-height: 64px;
        padding: 10px 12px;
        border-radius: 14px;
    }

    .snackbar-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        font-size: 18px;
        border-radius: 10px;
    }

    .snackbar-title {
        font-size: 13px;
    }

    .snackbar-message {
        font-size: 12px;
    }
}


/* ---------------------------------------------------------
   Small Mobile
--------------------------------------------------------- */

@media (max-width: 480px) {

    #snackbar {
        /*
         * روی موبایل‌های کوچک کمی بالاتر
         */
        bottom: 88px;
    }

}


/* ---------------------------------------------------------
   Very Small Mobile
--------------------------------------------------------- */

@media (max-width: 360px) {

    #snackbar {
        left: 10px;
        right: 10px;
        bottom: 88px;
    }

    .snackbar-item {
        gap: 10px;
        padding: 9px 10px;
    }

    .snackbar-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }
}
/* ---------------------------------------------------------
   Mobile Snackbar Layer
--------------------------------------------------------- */

@media (max-width: 767.98px) {

    #snackbar {
        bottom: 92px;
        z-index: 9999999999;
    }

}
/* =========================================================
   DR ROGHANI FOOTER
========================================================= */


/* =========================================================
   ROOT
========================================================= */

.dr-footer {
    margin-top: 60px;

    background: var(--primary);

    color: rgba(255, 255, 255, .68);

    direction: rtl;
}


/* =========================================================
   FOOTER TOP
========================================================= */

.dr-footer-top {
    padding: 48px 0 42px;
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.dr-footer-column {
    height: 100%;
}


/* =========================================================
   TITLE
========================================================= */

.dr-footer-title {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 20px;
}

.dr-footer-title > span {
    display: block;

    width: 3px;
    height: 18px;

    flex-shrink: 0;

    background: var(--gold);

    border-radius: 5px;
}

.dr-footer-title h5 {
    margin: 0;

    color: var(--white);

    font-size: 14px;
    font-weight: 700;

    line-height: 1.5;
}


/* =========================================================
   FOOTER MENUS
========================================================= */

.dr-footer-menu ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.dr-footer-menu li {
    margin: 0 0 8px;
    padding: 0;
}

.dr-footer-menu a {
    position: relative;

    display: inline-flex;
    align-items: center;

    color: rgba(255, 255, 255, .57);

    font-size: 12px;
    font-weight: 400;

    line-height: 1.8;

    transition:
        color .2s ease,
        transform .2s ease;
}

.dr-footer-menu a::before {
    content: "";

    width: 4px;
    height: 4px;

    margin-left: 9px;

    flex-shrink: 0;

    background: rgba(173, 134, 28, .7);

    border-radius: 50%;

    transition:
        background-color .2s ease,
        transform .2s ease;
}

.dr-footer-menu a:hover {
    color: var(--gold-light);

    transform: translateX(-3px);
}

.dr-footer-menu a:hover::before {
    background: var(--gold-light);

    transform: scale(1.3);
}


/* =========================================================
   TRUST SIGNS
========================================================= */

.dr-trust-signs {
    display: flex;
    align-items: center;

    gap: 10px;
}

.dr-trust-item {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 7px;

    background: var(--white);

    border: 1px solid rgba(255, 255, 255, .12);

    border-radius: 13px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .12);

    overflow: hidden;
}

.dr-trust-item img {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;
}

.dr-trust-caption {
    max-width: 220px;

    margin: 12px 0 0;

    color: rgba(255, 255, 255, .38);

    font-size: 10px;

    line-height: 1.8;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.dr-footer-description {
    padding: 25px 0;

    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);

    background: rgba(0, 0, 0, .08);
}

.dr-footer-description-box {
    display: flex;
    align-items: flex-start;

    gap: 14px;
}

.dr-footer-description-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--gold-light);

    background: rgba(173, 134, 28, .1);

    border: 1px solid rgba(173, 134, 28, .18);

    border-radius: 10px;

    font-size: 19px;
}

.dr-footer-description-content {
    flex: 1;

    color: rgba(255, 255, 255, .48);

    font-size: 11px;

    line-height: 2.15;
}

.dr-footer-description-content p {
    margin: 0 0 7px;
}

.dr-footer-description-content p:last-child {
    margin-bottom: 0;
}

.dr-footer-description-content a {
    color: var(--gold-light);
}


/* =========================================================
   MIDDLE
========================================================= */

.dr-footer-middle {
    padding: 17px 0;

    background: rgba(0, 0, 0, .13);
}

.dr-footer-middle-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   FEATURES
========================================================= */

.dr-footer-features {
    display: flex;
    align-items: center;

    gap: 30px;
}

.dr-footer-feature {
    display: flex;
    align-items: center;

    gap: 9px;
}

.dr-footer-feature-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--gold-light);

    background: rgba(173, 134, 28, .09);

    border: 1px solid rgba(173, 134, 28, .14);

    border-radius: 9px;

    font-size: 18px;
}

.dr-footer-feature strong {
    display: block;

    color: rgba(255, 255, 255, .72);

    font-size: 12px;
    font-weight: 500;
}

.dr-footer-feature small {
    display: block;

    margin-top: 1px;

    color: rgba(255, 255, 255, .32);

    font-size: 10px;
}


/* =========================================================
   SOCIAL
========================================================= */

.dr-footer-social {
    display: flex;
    align-items: center;

    gap: 12px;
}

.dr-footer-social > span {
    color: rgba(255, 255, 255, .4);

    font-size: 10px;
}

.dr-social-list {
    display: flex;
    align-items: center;

    gap: 5px;
}

.dr-social-list a {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(255, 255, 255, .55);

    background: rgba(255, 255, 255, .045);

    border: 1px solid rgba(255, 255, 255, .07);

    border-radius: 8px;

    font-size: 16px;

    transition:
        color .2s ease,
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.dr-social-list a:hover {
    color: var(--white);

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-2px);
}


/* =========================================================
   APARAT
========================================================= */

.dr-aparat-icon {
    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid currentColor;

    border-radius: 4px;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 700;
}


/* =========================================================
   COPYRIGHT
========================================================= */

.dr-footer-copyright {
    padding: 14px 0;

    background: rgba(0, 0, 0, .2);
}

.dr-footer-copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.dr-copyright-right,
.dr-copyright-left {
    display: flex;
    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, .32);

    font-size: 11px;

    line-height: 1.8;
}

.dr-copyright-right i {
    color: rgba(255, 255, 255, .25);

    font-size: 13px;
}

.dr-copyright-right strong {
    color: rgba(255, 255, 255, .5);

    font-weight: 500;
}

.dr-copyright-left a {
    color: rgba(255, 255, 255, .45);

    transition: color .2s ease;
}

.dr-copyright-left a:hover {
    color: var(--gold-light);
}

.dr-copyright-heart {
    color: var(--gold);

    font-size: 12px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .dr-footer-top {
        padding: 40px 0 35px;
    }

    .dr-footer-middle-inner {
        align-items: flex-start;

        flex-direction: column;
    }

    .dr-footer-features {
        width: 100%;

        justify-content: space-between;
    }

    .dr-footer-social {
        width: 100%;

        justify-content: space-between;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .dr-footer {
        margin-top: 40px;
    }

    .dr-footer-top {
        padding: 32px 0;
    }

    .dr-footer-column {
        height: auto;
    }

    .dr-footer-title {
        margin-bottom: 14px;
    }

    .dr-footer-menu li {
        margin-bottom: 6px;
    }

    .dr-footer-menu a {
        font-size: 11px;
    }

    .dr-footer-trust-column {
        margin-top: 5px;
    }

    .dr-footer-description {
        padding: 20px 0;
    }

    .dr-footer-description-box {
        gap: 10px;
    }

    .dr-footer-description-icon {
        width: 34px;
        height: 34px;

        font-size: 17px;
    }

    .dr-footer-description-content {
        font-size: 10px;
    }

    .dr-footer-features {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

    .dr-footer-feature {
        width: 100%;
    }

    .dr-footer-social {
        align-items: flex-start;

        flex-direction: column;

        gap: 9px;
    }

    .dr-footer-copyright-inner {
        flex-direction: column;

        justify-content: center;

        gap: 5px;

        text-align: center;
    }

    .dr-copyright-right,
    .dr-copyright-left {
        justify-content: center;

        flex-wrap: wrap;

        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .dr-footer-trust {
        justify-content: center;
    }

    .dr-trust-item {
        width: 72px;
        height: 72px;
    }

}
.dr-footer-description-content h1 {
    color: #fff;
    font-size: 14px;
}
/* =========================================================
   DR ROUGHANI HEADER
========================================================= */

.dr-header {
    position: relative;
    z-index: 1000;
    direction: rtl;
    background: #fff;
}


/* =========================================================
   DESKTOP HEADER
========================================================= */

.dr-desktop-header {
    display: block;
    background: #fff;
}


/* ---------------------------------------------------------
   MAIN HEADER
--------------------------------------------------------- */

.dr-header-main {
    background: #fff;
    border-bottom: 1px solid #edf0f5;
}

.dr-header-container {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 14px 32px;
}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.dr-logo {
    width: 185px;
    min-width: 185px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
}

.dr-logo img {
    display: block;
    max-width: 175px;
    max-height: 62px;
    object-fit: contain;
}


/* ---------------------------------------------------------
   SEARCH
--------------------------------------------------------- */

.dr-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 760px;
    margin: 0 auto;
}

.dr-search-form {
    padding: 0;
    margin: 0;
}

.dr-search-box {
    width: 100%;
    height: 54px;
    padding: 5px;
    display: flex;
    align-items: center;
    background: #f7f8fc;
    border: 1px solid #e4e7ec;
    border-radius: 15px;
    transition: all .2s ease;
}

.dr-search-box:focus-within {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 6, 67, .055);
}

.dr-search-icon {
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #98a2b3;
    font-size: 19px;
}

.dr-search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    padding: 0 5px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
    font-family: var(--font-family);
    font-size: 13px;
}

.dr-search-input::placeholder {
    color: #98a2b3;
}

.dr-search-button {
    height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: 11px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.dr-search-button:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}


/* Ajax Search Result */

.dr-search-results,
.dr-mobile-search-results {
    position: absolute;
    right: 0;
    left: 0;
    top: calc(100% + 8px);
    z-index: 5000;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.dr-header-actions {
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.dr-user-action,
.dr-cart-action {
    height: 56px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.dr-user-action {
    color: #111827;
}

.dr-user-action:hover {
    color: var(--primary);
}

.dr-action-icon,
.dr-cart-icon {
    position: relative;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: #f2f4f8;
    color: var(--primary);
    font-size: 20px;
}

.dr-user-text,
.dr-cart-text {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    text-align: right;
}

.dr-user-text small,
.dr-cart-text small {
    color: #98a2b3;
    font-size: 9px;
}

.dr-user-text strong,
.dr-cart-text strong {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}


/* Cart */

.dr-cart-action {
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-family);
}

.dr-cart-icon {
    background: rgba(173, 134, 28, .10);
    color: var(--gold);
}

.dr-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: var(--gold);
    color: #fff;
    border: 2px solid #fff;
    font-size: 9px;
    line-height: 1;
}


/* =========================================================
   DESKTOP NAV
========================================================= */
/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.dr-desktop-nav {
    position: relative;
    height: 54px;
    background: var(--primary);
    border-bottom: 3px solid var(--gold);
}

.dr-desktop-menu {
    width: 100%;
    height: 51px;

    display: flex;
    align-items: stretch;
    justify-content: center;

    padding: 0 18px;
}


/* =========================================================
   MAIN MENU ITEM
========================================================= */

.dr-mega-item {
    position: static;
}

.dr-mega-link {
    position: relative;

    height: 51px;

    padding: 0 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: rgba(255,255,255,.92);

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        background-color .18s ease,
        color .18s ease;
}

.dr-mega-link i {
    font-size: 10px;

    transition:
        transform .2s ease;
}

.dr-mega-link::after {
    content: "";

    position: absolute;

    right: 16px;
    left: 16px;

    bottom: -3px;

    height: 3px;

    background: var(--gold);

    transform: scaleX(0);

    transition: transform .2s ease;
}

.dr-mega-link:hover {
    color: #fff;
    background: rgba(255,255,255,.06);
}

.dr-mega-item:hover .dr-mega-link::after {
    transform: scaleX(1);
}

.dr-mega-item:hover .dr-mega-link i {
    transform: rotate(180deg);
}


/* =========================================================
   MEGA DROPDOWN
========================================================= */

.dr-mega-dropdown {
    position: absolute;

    top: 54px;
    right: 0;
    left: 0;

    width: 100%;

    background: #fff;

    border: 0;
    border-bottom: 1px solid #e5e7eb;

    box-shadow:
        0 18px 45px rgba(0, 6, 67, .13);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(6px);

    transition:
        opacity .16s ease,
        transform .16s ease,
        visibility .16s ease;
}

.dr-mega-item:hover .dr-mega-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


/* =========================================================
   MEGA CONTENT
========================================================= */

.dr-mega-content {
    width: min(1380px, calc(100% - 70px));

    margin: 0 auto;

    padding: 18px 0 22px;
}


/* =========================================================
   MEGA HEADING
========================================================= */

.dr-mega-heading {
    min-height: 44px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding-bottom: 13px;
    margin-bottom: 15px;

    border-bottom: 1px solid #edf0f4;
}

.dr-mega-heading-icon {
    width: 36px;
    height: 36px;

    min-width: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: rgba(173,134,28,.09);

    color: var(--gold);

    font-size: 16px;
}

.dr-mega-heading > div:nth-child(2) {
    display: flex;
    flex-direction: column;

    line-height: 1.4;
}

.dr-mega-heading span {
    color: #98a2b3;

    font-size: 9px;
}

.dr-mega-heading strong {
    margin-top: 1px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 800;
}

.dr-mega-all {
    margin-right: auto;

    height: 32px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    gap: 7px;

    border: 1px solid #e5e7eb;
    border-radius: 8px;

    color: var(--primary);

    text-decoration: none;

    font-size: 10px;

    transition: all .18s ease;
}

.dr-mega-all:hover {
    color: var(--gold);

    border-color: rgba(173,134,28,.4);

    background: rgba(173,134,28,.045);
}

.dr-mega-all i {
    font-size: 8px;
}


/* =========================================================
   MEGA COLUMNS
========================================================= */

.dr-mega-columns {

    display: grid;

    /*
     * 6 ستون به جای 5 ستون
     */
    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    column-gap: 20px;
    row-gap: 18px;

    /*
     * اگر یک دسته خیلی بزرگ باشد
     * ارتفاع کل منو کنترل می‌شود.
     */
    max-height: 420px;

    overflow-y: auto;

    padding-left: 3px;
}


/* scrollbar */

.dr-mega-columns::-webkit-scrollbar {
    width: 4px;
}

.dr-mega-columns::-webkit-scrollbar-track {
    background: transparent;
}

.dr-mega-columns::-webkit-scrollbar-thumb {
    background: #d7dbe4;
    border-radius: 10px;
}

.dr-mega-columns::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}


/* =========================================================
   COLUMN
========================================================= */

.dr-mega-column {
    min-width: 0;

    padding: 0 0 4px;
}


/* =========================================================
   COLUMN TITLE
========================================================= */

.dr-mega-column-title {

    min-height: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 7px;

    padding: 0 0 7px;

    margin-bottom: 4px;

    border-bottom: 1px solid #edf0f4;

    color: var(--primary);

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.5;
}

.dr-mega-column-title span {
    overflow: hidden;

    text-overflow: ellipsis;
}

.dr-mega-column-title:hover {
    color: var(--gold);
}

.dr-mega-column-title i {
    flex-shrink: 0;

    color: #a1a8b5;

    font-size: 8px;
}


/* =========================================================
   SUB LINKS
========================================================= */

.dr-mega-links {
    display: flex;
    flex-direction: column;

    gap: 0;
}

.dr-mega-links a {

    min-height: 27px;

    display: flex;
    align-items: center;

    gap: 7px;

    padding: 2px 0;

    color: #667085;

    text-decoration: none;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.7;

    transition:
        color .15s ease,
        padding-right .15s ease;
}

.dr-mega-links a:hover {
    color: var(--primary);

    padding-right: 4px;
}

.dr-mega-dot {
    width: 4px;
    height: 4px;

    min-width: 4px;

    border-radius: 50%;

    background: var(--gold);
}


/* =========================================================
   MEDIUM DESKTOP
========================================================= */

@media (max-width: 1400px) {

    .dr-mega-link {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-mega-columns {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));

        column-gap: 18px;
    }

    .dr-mega-content {
        width: min(1280px, calc(100% - 50px));
    }
}


/* =========================================================
   SMALL DESKTOP
========================================================= */

@media (max-width: 1200px) {

    .dr-desktop-menu {
        padding: 0 10px;
    }

    .dr-mega-link {
        padding-left: 11px;
        padding-right: 11px;

        font-size: 12px;
    }

    .dr-mega-columns {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        column-gap: 16px;
    }

    .dr-mega-content {
        width: calc(100% - 35px);
    }

}

/* =========================================================
   MOBILE HEADER
========================================================= */

.dr-mobile-header {
    display: none;
}


/* =========================================================
   MOBILE OFFCANVAS
========================================================= */

.dr-mobile-offcanvas {
    width: min(400px, 88vw);
    border: 0;
}

.dr-offcanvas-header {
    min-height: 82px;
    padding: 17px 19px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: #fff;
}

.dr-offcanvas-title {
    display: flex;
    flex-direction: column;
}

.dr-offcanvas-title span {
    color: rgba(255,255,255,.48);
    font-size: 9px;
}

.dr-offcanvas-title strong {
    margin-top: 2px;
    font-size: 16px;
    font-weight: 700;
}

.dr-offcanvas-close {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 11px;
    background: rgba(255,255,255,.08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dr-offcanvas-close:hover {
    background: rgba(255,255,255,.14);
}


/* =========================================================
   MOBILE TREE
========================================================= */

.dr-mobile-menu-body {
    height: 100%;
    overflow-y: auto;
    background: #fff;
}

.dr-category-tree,
.dr-category-tree ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dr-category-item {
    border-bottom: 1px solid #eef0f4;
}

.dr-category-row {
    min-height: 54px;
    display: flex;
    align-items: center;
}

.dr-category-link {
    flex: 1;
    min-width: 0;
    min-height: 54px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.dr-category-link:hover {
    color: var(--gold);
}

.dr-category-main-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f3f4f8;
    color: var(--primary);
    font-size: 14px;
}

.dr-category-line {
    width: 6px;
    height: 6px;
    min-width: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.dr-category-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #98a2b3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dr-category-toggle i {
    font-size: 20px;
    transition: transform .2s ease;
}

.dr-category-toggle[aria-expanded="true"] {
    color: var(--gold);
}

.dr-category-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}


/* Level 1 */

.dr-category-children {
    background: #f8f9fc;
}

.dr-category-children > ul {
    padding: 4px 0 7px;
}

.dr-category-children .dr-category-row {
    min-height: 45px;
}

.dr-category-children .dr-category-link {
    min-height: 45px;
    padding-right: 32px;
    font-size: 12px;
    font-weight: 500;
}


/* Level 2+ */

.dr-category-children
.dr-category-children {
    background: #f2f4f8;
}

.dr-category-children
.dr-category-children
.dr-category-link {
    padding-right: 47px;
    font-size: 11px;
}

.dr-category-children
.dr-category-children
.dr-category-children
.dr-category-link {
    padding-right: 62px;
}


/* =========================================================
   CART OFFCANVAS
========================================================= */

.dr-cart-offcanvas {
    width: min(440px, 92vw);
    border: 0;
}

.dr-cart-body {
    height: 100%;
    overflow-y: auto;
    background: #fff;
    padding: 22px;
}

.dr-empty-cart {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.dr-empty-cart-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #f3f4f8;
    color: var(--primary);
    font-size: 31px;
}

.dr-empty-cart strong {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}

.dr-empty-cart p {
    max-width: 260px;
    margin: 6px 0 0;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1.9;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991.98px) {

    .dr-desktop-header {
        display: none;
    }

    .dr-mobile-header {
        display: block;
        background: #fff;
    }


    /* Mobile top */

    .dr-mobile-top {
        min-height: 68px;
        padding: 7px 12px;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        border-bottom: 1px solid #edf0f4;
    }

    .dr-mobile-menu-button {
        justify-self: start;
        width: 48px;
        height: 48px;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-family: var(--font-family);
    }

    .dr-mobile-menu-button i {
        font-size: 21px;
    }

    .dr-mobile-menu-button span {
        font-size: 9px;
    }


    /* Logo */

    .dr-mobile-logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dr-mobile-logo img {
        display: block;
        max-width: 125px;
        max-height: 47px;
        object-fit: contain;
    }


    /* Actions */

    .dr-mobile-actions {
        justify-self: end;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .dr-mobile-action {
        position: relative;
        width: 41px;
        height: 41px;
        padding: 0;
        border: 0;
        border-radius: 11px;
        background: #f4f5f9;
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 18px;
    }

    .dr-mobile-cart span {
        position: absolute;
        top: -4px;
        right: -4px;
        min-width: 17px;
        height: 17px;
        padding: 0 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        background: var(--gold);
        color: #fff;
        border: 2px solid #fff;
        font-size: 8px;
    }


    /* Mobile Search */

    .dr-mobile-search-wrapper {
        position: relative;
        padding: 8px 12px 11px;
        background: #fff;
    }

    .dr-mobile-search-form {
        margin: 0;
    }

    .dr-mobile-search {
        height: 46px;
        padding: 4px;
        display: flex;
        align-items: center;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: #f7f8fc;
    }

    .dr-mobile-search > i {
        width: 38px;
        color: #98a2b3;
        text-align: center;
        font-size: 16px;
    }

    .dr-mobile-search-input {
        flex: 1;
        min-width: 0;
        height: 100%;
        padding: 0 2px;
        border: 0;
        outline: 0;
        background: transparent;
        color: #111827;
        font-family: var(--font-family);
        font-size: 11px;
    }

    .dr-mobile-search-input::placeholder {
        color: #98a2b3;
    }

    .dr-mobile-search button {
        width: 38px;
        height: 36px;
        padding: 0;
        border: 0;
        border-radius: 9px;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .dr-mobile-logo img {
        max-width: 145px;
    }

    .dr-mobile-search-wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .dr-mobile-offcanvas {
        width: 88vw;
    }

    .dr-cart-offcanvas {
        width: 94vw;
    }

    .dr-mobile-logo img {
        max-width: 112px;
    }

    .dr-mobile-top {
        padding-left: 8px;
        padding-right: 8px;
    }

    .dr-mobile-action {
        width: 39px;
        height: 39px;
    }

}
/* =========================================================
   MOBILE FOOTER - COMPACT
   ========================================================= */

@media (max-width: 767.98px) {

    /* Footer */
    .dr-footer {
        margin-top: 20px;
    }

    /* -----------------------------------------
       Footer Top
    ----------------------------------------- */

    .dr-footer-top {
        padding: 24px 0 16px;
    }

    .dr-footer-top .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-top .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
    }

    .dr-footer-top .row > div {
        width: 100%;
        padding: 0;
    }

    .dr-footer-column {
        padding: 0 0 14px;
        margin-bottom: 14px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .dr-footer-column:last-child {
        margin-bottom: 0;
        border-bottom: 0;
    }

    /* عنوان هر بخش */
    .dr-footer-title {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 9px;
    }

    .dr-footer-title span {
        width: 3px;
        height: 16px;
        border-radius: 10px;
        flex: 0 0 auto;
    }

    .dr-footer-title h5 {
        margin: 0;
        font-size: 13px;
        line-height: 1.7;
        font-weight: 700;
    }

    /* منوهای فوتر */
    .dr-footer-menu {
        padding-right: 11px;
    }

    .dr-footer-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .dr-footer-menu li {
        margin: 0;
        padding: 0;
    }

    .dr-footer-menu a {
        display: flex;
        align-items: center;
        min-height: 29px;
        padding: 3px 0;
        font-size: 11.5px;
        line-height: 1.7;
    }

    /* -----------------------------------------
       Trust
    ----------------------------------------- */

    .dr-footer-trust-column {
        padding-bottom: 12px;
    }

    .dr-trust-signs {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        padding-right: 11px;
    }

    .dr-trust-item {
        width: 70px;
        height: 70px;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .dr-trust-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .dr-trust-caption {
        margin: 8px 0 0;
        padding-right: 11px;
        font-size: 10.5px;
        line-height: 1.8;
    }

    /* -----------------------------------------
       Description
    ----------------------------------------- */

    .dr-footer-description {
        padding: 12px 0;
    }

    .dr-footer-description .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-description-box {
        display: flex;
        align-items: flex-start;
        gap: 9px;
        padding: 11px 12px;
        border-radius: 10px;
    }

    .dr-footer-description-icon {
        width: 27px;
        height: 27px;
        min-width: 27px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dr-footer-description-icon i {
        font-size: 14px;
    }

    .dr-footer-description-content {
        font-size: 10.5px;
        line-height: 2;
    }

    .dr-footer-description-content p {
        margin: 0;
    }

    /* -----------------------------------------
       Features + Social
    ----------------------------------------- */

    .dr-footer-middle {
        padding: 14px 0;
    }

    .dr-footer-middle .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-middle-inner {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    /* امکانات */
    .dr-footer-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 7px;
    }

    .dr-footer-feature {
        min-width: 0;
        padding: 9px 6px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 5px;
    }

    .dr-footer-feature-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dr-footer-feature-icon i {
        font-size: 16px;
    }

    .dr-footer-feature strong {
        display: block;
        font-size: 10.5px;
        line-height: 1.7;
        white-space: nowrap;
    }

    .dr-footer-feature small {
        display: none;
    }

    /* شبکه‌های اجتماعی */
    .dr-footer-social {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding-top: 2px;
    }

    .dr-footer-social > span {
        font-size: 10.5px;
        white-space: nowrap;
    }

    .dr-social-list {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .dr-social-list a {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dr-social-list a i {
        font-size: 15px;
    }

    .dr-aparat-icon {
        font-size: 12px;
    }

    /* -----------------------------------------
       Copyright
    ----------------------------------------- */

    .dr-footer-copyright {
        padding: 11px 0;
    }

    .dr-footer-copyright .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-copyright-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        text-align: center;
    }

    .dr-copyright-right,
    .dr-copyright-left {
        width: 100%;
        justify-content: center;
        font-size: 9.5px;
        line-height: 1.8;
    }

    .dr-copyright-right {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .dr-copyright-right i {
        font-size: 12px;
    }

    .dr-copyright-left {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .dr-copyright-heart {
        font-size: 11px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .dr-footer-top {
        padding-top: 20px;
    }

    .dr-footer-column {
        padding-bottom: 11px;
        margin-bottom: 11px;
    }

    .dr-footer-title h5 {
        font-size: 12px;
    }

    .dr-footer-menu a {
        font-size: 11px;
        min-height: 27px;
    }

    .dr-footer-features {
        gap: 5px;
    }

    .dr-footer-feature {
        padding: 8px 4px;
    }

    .dr-footer-feature strong {
        font-size: 9.5px;
    }

    .dr-footer-feature-icon {
        width: 27px;
        height: 27px;
        min-width: 27px;
    }

    .dr-footer-feature-icon i {
        font-size: 14px;
    }

    .dr-social-list {
        gap: 4px;
    }

    .dr-social-list a {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 767.98px) {

    /* ================================
       FOOTER TOP - 2 COLUMNS
       ================================ */

    .dr-footer-top {
        padding: 22px 0 16px;
    }

    .dr-footer-top .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-top .row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
        margin: 0;
    }

    .dr-footer-top .row > div {
        width: auto;
        padding: 0;
        margin: 0;
    }

    .dr-footer-column {
        padding: 0 0 12px;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
        min-width: 0;
    }

    /* عنوان ستون */
    .dr-footer-title {
        display: flex;
        align-items: center;
        gap: 7px;
        margin-bottom: 8px;
    }

    .dr-footer-title span {
        width: 3px;
        height: 15px;
        flex: 0 0 3px;
        border-radius: 10px;
    }

    .dr-footer-title h5 {
        margin: 0;
        font-size: 12px;
        line-height: 1.7;
        font-weight: 700;
    }

    /* منوی داخل ستون */
    .dr-footer-menu {
        padding-right: 10px;
    }

    .dr-footer-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .dr-footer-menu li {
        margin: 0;
        padding: 0;
    }

    .dr-footer-menu a {
        display: block;
        padding: 3px 0;
        min-height: 27px;
        font-size: 10.5px;
        line-height: 1.7;
    }

    /* ================================
       TRUST COLUMN
       ================================ */

    .dr-footer-trust-column {
        padding-bottom: 12px;
    }

    .dr-trust-signs {
        display: flex;
        align-items: center;
        gap: 7px;
        padding-right: 10px;
    }

    .dr-trust-item {
        width: 58px;
        height: 58px;
        padding: 4px;
        border-radius: 8px;
    }

    .dr-trust-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .dr-trust-caption {
        margin: 7px 0 0;
        padding-right: 10px;
        font-size: 9.5px;
        line-height: 1.7;
    }

    /* ================================
       DESCRIPTION
       ================================ */

    .dr-footer-description {
        padding: 12px 0;
    }

    .dr-footer-description .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-description-box {
        padding: 10px 11px;
        gap: 8px;
        border-radius: 9px;
    }

    .dr-footer-description-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        border-radius: 7px;
    }

    .dr-footer-description-icon i {
        font-size: 13px;
    }

    .dr-footer-description-content {
        font-size: 10px;
        line-height: 1.9;
    }

    /* ================================
       FEATURES
       ================================ */

    .dr-footer-middle {
        padding: 13px 0;
    }

    .dr-footer-middle .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-middle-inner {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .dr-footer-features {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 6px;
    }

    .dr-footer-feature {
        min-width: 0;
        padding: 8px 4px;
        border-radius: 9px;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }

    .dr-footer-feature-icon {
        width: 29px;
        height: 29px;
        min-width: 29px;
        border-radius: 8px;
    }

    .dr-footer-feature-icon i {
        font-size: 15px;
    }

    .dr-footer-feature strong {
        display: block;
        font-size: 9.5px;
        line-height: 1.6;
        white-space: nowrap;
    }

    .dr-footer-feature small {
        display: none;
    }

    /* ================================
       SOCIAL
       ================================ */

    .dr-footer-social {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .dr-footer-social > span {
        font-size: 10px;
        white-space: nowrap;
    }

    .dr-social-list {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .dr-social-list a {
        width: 29px;
        height: 29px;
        border-radius: 7px;
    }

    .dr-social-list a i {
        font-size: 14px;
    }

    .dr-aparat-icon {
        font-size: 11px;
    }

    /* ================================
       COPYRIGHT
       ================================ */

    .dr-footer-copyright {
        padding: 10px 0;
    }

    .dr-footer-copyright .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dr-footer-copyright-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }

    .dr-copyright-right,
    .dr-copyright-left {
        width: 100%;
        justify-content: center;
        font-size: 9px;
        line-height: 1.7;
    }

    .dr-copyright-right {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .dr-copyright-left {
        display: flex;
        align-items: center;
        gap: 4px;
    }
}


/* موبایل خیلی کوچک */
@media (max-width: 380px) {

    .dr-footer-top .row {
        gap: 15px 10px;
    }

    .dr-footer-title h5 {
        font-size: 11.5px;
    }

    .dr-footer-menu a {
        font-size: 10px;
    }

    .dr-trust-item {
        width: 52px;
        height: 52px;
    }
}
/* =========================================================
   DR HEADER AJAX SEARCH
   ========================================================= */

.dr-search-wrapper,
.dr-mobile-search-wrapper {
    position: relative;
    z-index: 1000;
}


/* =========================================================
   RESULT CONTAINER
   ========================================================= */

.dr-header-search-result {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;

    width: 100%;
    min-width: 460px;

    background: #fff;

    border: 1px solid #e8eaf0;
    border-radius: 18px;

    box-shadow:
        0 20px 55px rgba(0, 6, 67, .13),
        0 4px 12px rgba(0, 6, 67, .05);

    overflow: hidden;

    display: none;

    z-index: 99999;

    direction: rtl;

    animation: drSearchShow .18s ease-out;
}

.dr-header-search-result.is-open {
    display: block;
}

@keyframes drSearchShow {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   SEARCH RESULT SCROLL
   ========================================================= */

.dr-header-search-result {
    max-height: 620px;
    overflow-y: auto;
}

.dr-header-search-result::-webkit-scrollbar {
    width: 5px;
}

.dr-header-search-result::-webkit-scrollbar-track {
    background: transparent;
}

.dr-header-search-result::-webkit-scrollbar-thumb {
    background: #dfe3eb;
    border-radius: 20px;
}

.dr-header-search-result::-webkit-scrollbar-thumb:hover {
    background: #c7ccd7;
}


/* =========================================================
   SEARCH LOADING
   ========================================================= */

.dr-search-loading {
    min-height: 170px;

    padding: 32px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #667085;
}

.dr-search-loading-spinner {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 3px solid #eef0f5;
    border-top-color: #000643;

    animation: drSearchSpin .7s linear infinite;

    margin-bottom: 14px;
}

@keyframes drSearchSpin {
    to {
        transform: rotate(360deg);
    }
}

.dr-search-loading-text {
    font-size: 12px;
    font-weight: 600;

    color: #667085;
}

.dr-search-loading-subtext {
    margin-top: 4px;

    font-size: 10px;

    color: #98a2b3;
}


/* =========================================================
   COMMON SECTION
   ========================================================= */

.dr-search-section {
    padding: 16px 18px 12px;
}

.dr-search-section + .dr-search-section {
    border-top: 1px solid #f0f1f5;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.dr-search-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 11px;

    font-size: 12px;
    font-weight: 700;

    color: #000643;
}

.dr-search-section-title span {
    display: flex;
    align-items: center;

    gap: 8px;
}

.dr-search-section-title i {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #f4f5ff;

    color: #000643;

    font-size: 14px;
}

.dr-search-section-title small {
    color: #98a2b3;

    font-size: 10px;
    font-weight: 500;
}


/* =========================================================
   CATEGORIES
   ========================================================= */

.dr-search-links {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 8px;
}

.dr-search-link {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 8px;

    padding: 10px 11px;

    border: 1px solid #edf0f5;
    border-radius: 10px;

    background: #fafbfc;

    color: #25324b;

    font-size: 11px;
    font-weight: 500;

    line-height: 1.6;

    text-decoration: none;

    transition:
        background .18s ease,
        border-color .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.dr-search-link:hover {
    background: #f7f8ff;

    border-color: #dfe2f5;

    color: #000643;

    transform: translateY(-1px);

    box-shadow: 0 4px 12px rgba(0, 6, 67, .06);
}

.dr-search-link > span:first-child {
    min-width: 0;

    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
}

.dr-search-link i {
    width: 24px;
    height: 24px;

    flex: 0 0 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #fff;

    color: #ad861c;

    font-size: 12px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, .04);
}


/* =========================================================
   BRANDS
   ========================================================= */

.dr-search-brands {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.dr-search-brand {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 10px;

    border: 1px solid #edf0f5;

    border-radius: 8px;

    background: #fff;

    color: #25324b;

    font-size: 11px;

    text-decoration: none;

    transition: all .18s ease;
}

.dr-search-brand:hover {
    background: #f7f8ff;

    border-color: #dfe2f5;

    color: #000643;
}

.dr-search-brand i {
    color: #ad861c;

    font-size: 12px;
}


/* =========================================================
   PRODUCTS
   ========================================================= */

.dr-search-products {
    display: flex;

    flex-direction: column;
}

.dr-search-product {
    position: relative;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 11px 6px;

    border-bottom: 1px solid #f1f2f5;

    color: inherit;

    text-decoration: none;

    transition:
        background .18s ease,
        padding .18s ease;
}

.dr-search-product:last-child {
    border-bottom: 0;
}

.dr-search-product:hover {
    background: #fafbff;

    padding-right: 10px;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.dr-search-product-image {
    position: relative;

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border: 1px solid #edf0f4;

    border-radius: 11px;

    overflow: hidden;
}

.dr-search-product-image::after {
    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(0, 6, 67, .025),
        transparent
    );

    pointer-events: none;
}

.dr-search-product-image img {
    width: 100%;
    height: 100%;

    padding: 4px;

    object-fit: contain;
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.dr-search-product-info {
    min-width: 0;

    flex: 1;
}

.dr-search-product-title {
    font-size: 12px;

    line-height: 1.8;

    font-weight: 600;

    color: #25324b;

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;
}

.dr-search-product:hover .dr-search-product-title {
    color: #000643;
}


/* =========================================================
   PRICE
   ========================================================= */

.dr-search-product-price {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-top: 4px;

    direction: rtl;
}

.dr-search-product-price-current {
    color: #000643;

    font-size: 12px;

    font-weight: 800;
}

.dr-search-product-price-old {
    color: #98a2b3;

    font-size: 10px;

    text-decoration: line-through;
}


/* =========================================================
   DISCOUNT
   ========================================================= */

.dr-search-product-discount {
    min-width: 30px;
    height: 19px;

    padding: 0 5px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 5px;

    background: #fff1f0;

    color: #dc3545;

    font-size: 9px;

    font-weight: 800;
}


/* =========================================================
   PRODUCT ARROW
   ========================================================= */

.dr-search-product-arrow {
    width: 27px;
    height: 27px;

    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f5f6fa;

    color: #98a2b3;

    transition: all .18s ease;
}

.dr-search-product:hover .dr-search-product-arrow {
    background: #eef0ff;

    color: #000643;

    transform: translateX(-2px);
}


/* =========================================================
   ALL RESULTS
   ========================================================= */

.dr-search-all {
    position: sticky;

    bottom: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 13px 16px;

    border-top: 1px solid #edf0f4;

    background: rgba(250, 251, 254, .96);

    color: #000643;

    font-size: 12px;

    font-weight: 800;

    text-decoration: none;

    backdrop-filter: blur(8px);

    transition: all .18s ease;
}

.dr-search-all:hover {
    background: #f1f3ff;

    color: #000643;
}

.dr-search-all i {
    font-size: 14px;

    transition: transform .18s ease;
}

.dr-search-all:hover i {
    transform: translateX(-3px);
}


/* =========================================================
   EMPTY STATE
   ========================================================= */

.dr-search-empty {
    min-height: 230px;

    padding: 35px 20px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at top,
            rgba(0, 6, 67, .035),
            transparent 55%
        );
}

.dr-search-empty-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #f4f5fa;

    border: 1px solid #eaecf2;

    color: #000643;

    font-size: 25px;

    box-shadow: 0 6px 18px rgba(0, 6, 67, .06);
}

.dr-search-empty-title {
    color: #25324b;

    font-size: 14px;

    font-weight: 800;
}

.dr-search-empty-text {
    max-width: 330px;

    margin: 7px auto 0;

    color: #98a2b3;

    font-size: 11px;

    line-height: 1.9;
}


/* =========================================================
   SEARCH HIGHLIGHT
   ========================================================= */

.dr-search-highlight {
    color: #000643;

    font-weight: 800;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .dr-mobile-search-wrapper {
        position: relative;

        z-index: 1000;
    }

    .dr-mobile-search-wrapper .dr-header-search-result {
        top: calc(100% + 8px);

        right: 0;
        left: 0;

        width: 100%;

        min-width: 0;

        max-height: calc(100vh - 145px);

        border-radius: 14px;

        box-shadow:
            0 18px 45px rgba(0, 6, 67, .15),
            0 4px 12px rgba(0, 6, 67, .05);
    }

    .dr-search-section {
        padding: 13px 13px 9px;
    }

    .dr-search-section-title {
        margin-bottom: 9px;

        font-size: 11px;
    }

    .dr-search-section-title i {
        width: 25px;
        height: 25px;

        font-size: 13px;
    }

    .dr-search-links {
        grid-template-columns: 1fr;

        gap: 6px;
    }

    .dr-search-link {
        padding: 9px 10px;

        font-size: 11px;
    }

    .dr-search-product {
        gap: 9px;

        padding: 9px 3px;
    }

    .dr-search-product:hover {
        padding-right: 6px;
    }

    .dr-search-product-image {
        width: 50px;
        height: 50px;

        flex-basis: 50px;

        border-radius: 9px;
    }

    .dr-search-product-title {
        font-size: 11px;

        line-height: 1.75;
    }

    .dr-search-product-price-current {
        font-size: 11px;
    }

    .dr-search-product-price-old {
        font-size: 9px;
    }

    .dr-search-product-arrow {
        width: 24px;
        height: 24px;

        flex-basis: 24px;
    }

    .dr-search-empty {
        min-height: 200px;

        padding: 28px 16px;
    }

    .dr-search-empty-icon {
        width: 55px;
        height: 55px;

        border-radius: 16px;
 
        font-size: 22px;
    }

    .dr-search-empty-title {
        font-size: 13px;
    }

    .dr-search-empty-text {
        font-size: 10px; 
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .dr-search-section {
        padding-right: 10px;
        padding-left: 10px;
    }

    .dr-search-product-image {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    .dr-search-product-title {
        font-size: 10.5px;
    }

    .dr-search-product-arrow {
        display: none;
    }
}
.dr-search-product-info p {
    font-size: 13px;
    margin-bottom: 6px;
}
/* =========================================================
   DR ALERTS
========================================================= */

.dr-alert {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 12px;

    width: 100%;

    margin-bottom: 14px;
    padding: 13px 14px;

    border: 1px solid transparent;
    border-radius: 12px;

    font-family: 'IRANSansFanum', sans-serif;

    direction: rtl;

    animation: drAlertIn .25s ease both;
}

.dr-alert-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    font-size: 19px;
}

.dr-alert-content {
    flex: 1;
    min-width: 0;
}

.dr-alert-title {
    display: block;

    margin-bottom: 3px;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.6;
}

.dr-alert-message {
    color: inherit;

    font-size: 12px;
    line-height: 1.9;

    word-break: break-word;
}

.dr-alert-list {
    margin: 3px 0 0;
    padding-right: 18px;

    font-size: 12px;
    line-height: 1.9;
}

.dr-alert-list li {
    margin-bottom: 2px;
}

.dr-alert-list li:last-child {
    margin-bottom: 0;
}

.dr-alert-close {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;
    border-radius: 7px;

    background: transparent;

    color: currentColor;

    opacity: .55;

    cursor: pointer;

    transition:
        background-color .2s ease,
        opacity .2s ease;
}

.dr-alert-close:hover {
    background: rgba(0, 0, 0, .06);
    opacity: 1;
}


/* ---------------------------------------------------------
   DANGER
--------------------------------------------------------- */

.dr-alert-danger {
    background: #FFF6F6;
    border-color: #F4D5D8;
    color: #A61B2B;
}

.dr-alert-danger .dr-alert-icon {
    background: rgba(220, 53, 69, .10);
    color: #DC3545;
}


/* ---------------------------------------------------------
   SUCCESS
--------------------------------------------------------- */

.dr-alert-success {
    background: #F4FBF7;
    border-color: #D5EEDF;
    color: #176B45;
}

.dr-alert-success .dr-alert-icon {
    background: rgba(25, 135, 84, .10);
    color: #198754;
}


/* ---------------------------------------------------------
   WARNING
--------------------------------------------------------- */

.dr-alert-warning {
    background: #FFF9ED;
    border-color: #EFE0B6;
    color: #80620F;
}

.dr-alert-warning .dr-alert-icon {
    background: rgba(173, 134, 28, .12);
    color: #AD861C;
}


/* ---------------------------------------------------------
   ANIMATION
--------------------------------------------------------- */

@keyframes drAlertIn {

    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 575.98px) {

    .dr-alert {
        gap: 9px;

        margin-bottom: 10px;
        padding: 10px 11px;

        border-radius: 10px;
    }

    .dr-alert-icon {
        flex-basis: 34px;

        width: 34px;
        height: 34px;

        font-size: 17px;
    }

    .dr-alert-title {
        font-size: 11px;
    }

    .dr-alert-message,
    .dr-alert-list {
        font-size: 11px;
    }

    .dr-alert-close {
        flex-basis: 25px;

        width: 25px;
        height: 25px;
    }

}

/* =========================================================
   CART
========================================================= */

.dr-cart-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}


/* =========================================================
   ITEMS
========================================================= */

.dr-cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dr-cart-item {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e7e8ef;
    border-radius: 16px;
    transition: .2s ease;
}

.dr-cart-item:hover {
    border-color: rgba(0, 6, 67, .16);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}


/* =========================================================
   IMAGE
========================================================= */

.dr-cart-item-image {
    width: 78px;
    min-width: 78px;
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
}

.dr-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* =========================================================
   INFO
========================================================= */

.dr-cart-item-info {
    min-width: 0;
    flex: 1;
    padding: 2px 28px 2px 0;
}

.dr-cart-item-title {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;
    color: #111827;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    margin-bottom: 7px;
}

.dr-cart-item-price {
    font-size: 13px;
    font-weight: 700;
    color: #000643;
}

.dr-cart-item-price span,
.dr-cart-item-subtotal span {
    font-size: 10px;
    font-weight: 500;
    color: #7a8191;
}


/* =========================================================
   BOTTOM
========================================================= */

.dr-cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 11px;
}

.dr-cart-item-subtotal {
    font-size: 13px;
    font-weight: 800;
    color: #111827;
    white-space: nowrap;
}


/* =========================================================
   QUANTITY
========================================================= */

.dr-cart-qty {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 3px;
    background: #f7f8fc;
    border: 1px solid #e7e8ef;
    border-radius: 10px;
}

.dr-cart-qty-btn {
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;
    color: #000643;

    cursor: pointer;
    transition: .18s ease;
}

.dr-cart-qty-btn:hover {
    background: #000643;
    color: #fff;
}

.dr-cart-qty-btn i {
    font-size: 14px;
}

.dr-cart-qty-number {
    min-width: 20px;
    text-align: center;

    font-size: 13px;
    font-weight: 800;
    color: #111827;
}


/* =========================================================
   REMOVE
========================================================= */

.dr-cart-remove {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 8px;

    background: transparent;
    color: #9ca3af;

    cursor: pointer;
    transition: .18s ease;
}

.dr-cart-remove:hover {
    background: #fff1f2;
    color: #dc2626;
}

.dr-cart-remove i {
    font-size: 16px;
}


/* =========================================================
   SUMMARY
========================================================= */

.dr-cart-summary {
    margin-top: auto;
    padding-top: 18px;
}

.dr-cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 0;

    font-size: 13px;
    color: #667085;
}

.dr-cart-summary-row strong {
    font-size: 14px;
    color: #111827;
}

.dr-cart-summary-row strong small {
    font-size: 10px;
    font-weight: 500;
    color: #7a8191;
}

.dr-cart-total-row {
    margin-top: 3px;
    padding-top: 14px;
    border-top: 1px solid #e7e8ef;
}

.dr-cart-total-row span {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.dr-cart-total-row strong {
    font-size: 20px;
    font-weight: 900;
    color: #000643;
}


/* =========================================================
   CHECKOUT
========================================================= */

.dr-cart-checkout {
    width: 100%;
    min-height: 52px;

    margin-top: 14px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-radius: 14px;

    background: #000643;
    color: #fff !important;

    text-decoration: none !important;

    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 10px 24px rgba(0, 6, 67, .16);

    transition: .2s ease;
}

.dr-cart-checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 6, 67, .22);
}

.dr-cart-checkout i {
    font-size: 20px;
}


/* =========================================================
   EMPTY
========================================================= */

.dr-cart-empty {
    min-height: 430px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 30px 20px;
}

.dr-cart-empty-icon {
    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: rgba(0, 6, 67, .06);
    color: #000643;
}

.dr-cart-empty-icon i {
    font-size: 38px;
}

.dr-cart-empty-title {
    font-size: 17px;
    font-weight: 800;
    color: #111827;
}

.dr-cart-empty-text {
    margin-top: 8px;

    font-size: 13px;
    line-height: 1.8;

    color: #7a8191;
    max-width: 280px;
}

.dr-cart-empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 46px;

    margin-top: 20px;
    padding: 0 20px;

    border-radius: 12px;

    background: #000643;
    color: #fff !important;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 700;

    transition: .2s ease;
}

.dr-cart-empty-button:hover {
    transform: translateY(-1px);
}

.dr-cart-empty-button i {
    font-size: 18px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .dr-cart-items {
        gap: 10px;
    }

    .dr-cart-item {
        padding: 10px;
        border-radius: 14px;
    }

    .dr-cart-item-image {
        width: 68px;
        min-width: 68px;
        height: 82px;
    }

    .dr-cart-item-info {
        padding-right: 24px;
    }

    .dr-cart-item-title {
        font-size: 13px;
    }

    .dr-cart-item-bottom {
        flex-wrap: wrap;
    }

    .dr-cart-item-subtotal {
        font-size: 12px;
    }

    .dr-cart-total-row strong {
        font-size: 18px;
    }

    .dr-cart-checkout {
        min-height: 50px;
    }

}