/* ===================== CSS Reset (Eric Meyer) ===================== */
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 | Public Domain */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
article h1, aside h1, nav h1, section h1 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
    line-height: 1.2;
    margin: 0 0 1rem 0;
}


/* ===================== Font Faces ================== */
@font-face {
    font-family: 'Expletus Sans';
    src: url('../../fonts/ExpletusSans-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Yekan Bakh';
    src: url('../../fonts/yekan-bakh/YekanBakh-Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Baloo 2';
    src: url('../../fonts/Baloo2-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

/* ===================== Root Variables ================== */
:root {
    --container-border-gray: .15rem solid #EDF0F0;
    --dashed-border-gray: .15rem dashed #EDF0F0;

    --Expletus_Sans: "Expletus Sans", "Yekan Bakh", serif, sans-serif;
    --Baloo_2: "Baloo 2", "Yekan Bakh", serif, sans-serif;

    --gradient: linear-gradient(90deg, rgba(222, 171, 30, 1) 0%, rgba(253, 29, 29, 1) 24%, rgba(75, 69, 252, 1) 100%);
    --gradient-video: linear-gradient(90deg, #121212 0%, #171717 24%, #1b1b1b 100%);

    --primary: #4527a0;
    --primary-hover: #5738dc;
    --primary-bg: #8a87fd;

    --info: #17a2b8;
    --info-hover: #117a8a;
    --info-bg: #63b0bc;

    --success: #2ecc71;
    --success-hover: #127128;
    --success-bg: #abedba;

    --error: #ce3c5c;
    --error-hover: #bc0416;
    --error-bg: #ffd5d9;

    --warning: #f39c12;
    --warning-hover: #887029;
    --warning-bg: #edd792;

    --bg-light: #ffffff;
    --bg-dark: #14161b;
    --bg-cg: #f4f6f7;
    --bg-1: #ffffff;
    --bg-2: #efefef;
    --bg-3: #e3e1e1;

    --text-light: #ffffff;
    --text-dark: #1b1b1b;
    --text-1: #1a1a1a;
    --text-2: #2c3e50;
    --text-3: #434343;
    --text-4: rgb(130, 130, 130);
    --text-5: #c3c3c3;
    --text-6: #ffffff;

    --border-1: #1a1a1a;
    --border-2: #2b2b2e;
    --border-3: rgb(130, 130, 130);
    --border-4: #434343;
    --border-5: #cdcdcd;
    --border-6: #ffffff;

    --select-bg: #fbfbfb;
    --select-border: #e3e3e3;
    --select-hover-bg: #ede7ff;
    --select-border-bottom: #f0f0f0;

    --scrollbar-track-bg: #f5f1ff;
    --scrollbar-thumb-bg: #d8d8d8;
    --scrollbar-thumb-hover-bg: #9e9e9e;

    --shadow-inset-1: #fffdfdb7;
    --shadow-inset-2: rgba(94, 104, 121, 0.288);

    --slider-bg: #fdfdfd;
    --slider-border: #ececec;
    --slider-hover: rgb(124, 141, 241);

    --th-bg: rgb(63, 81, 181);
    --tr-bg-1: #f3f3f3;
    --tr-bg-2: #ffffff;
    --tr-bg-hover: rgb(237, 238, 246);
    --th-border: #564c60;
    --tr-border: #eee8f6;
    --th-text: #dcd6e3;
    --tr-text: #615b65;
}

/* ===================== Global Styles ================== */
*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box;
    font-family: var(--Expletus_Sans), serif;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    width: 100%;
    height: 100%;
    direction: rtl;
    scroll-behavior: smooth;
    line-height: 1.6;
    font-size: 62.5%;
    color: var(--text-1);
}

strong {
    font-weight: bolder;
}

ul {
    list-style-type: none;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

input::placeholder, textarea::placeholder {
    color: var(--text-5);
    font-size: 1.2rem;
}

input:focus {
    transition: 200ms;
}

*::-webkit-scrollbar {
    width: 7px;
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-track-bg);
    border-radius: 25px;
}

*::-webkit-scrollbar-thumb {
    background: var(--scrollbar-thumb-bg);
    border-radius: 25px;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--scrollbar-thumb-hover-bg);
}

textarea {
    resize: none;
}

img, svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    fill: var(--text-3);
}

.title-h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-1);
    margin: 2rem 0 1rem;
    line-height: 1.4;
    text-align: center;
    letter-spacing: -0.5px;
    word-spacing: 1px;
    direction: rtl;
}

/*--------------------------success error message*/
.success-message {
    width: 100%;
    padding: 0.6rem 1rem;
    color: var(--success);
    font-size: 1.2rem;
    border-radius: 3px;
    margin-bottom: 0.2rem;
}
.error-message {
    width: 100%;
    padding: 0.6rem 1rem;
    color: var(--error);
    font-size: 1.2rem;
    border-radius: 3px;
    margin-bottom: 0.2rem;
    background-color: var(--error-bg);
}
.callback-btn-container{
    margin-top: 2rem;
}
.callback-btn{
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    border: 2px solid #69a6ce;
    color: #69a6ce;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}
.callback-btn:hover{
    background: #69a6ce;
    color: #fff;
}
/* ===================== Container ================== */
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1420px;
}
body{
    background-color: var(--bg-cg);
    min-height: 100vh;
}
#main {
    margin-top: 11rem;
    min-height: 60vh;
}
#svg-sprite{
    display: none;
}
#preloader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-cg);
    z-index: 999999999999;
    transition: all 400ms;
}
#preloader .loader {
    width: 5rem;
    height: 5rem;
    border: 8px solid var(--border-6);
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    margin-bottom: 5rem;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* ===================== navbar ================== */

.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    border-bottom: 1px solid #ededed;
    background-color: var(--bg-1);
    z-index: 9999;
}
.nav-content {
    width: 100%;
    height: 100%;
    position: relative;
}
.nav-list-container{
    height: 100%;
    margin-left: 2rem;
}
/*-----logo-----*/
.appLogo-cover {
    width: auto;
    height: 4rem;
    direction: ltr;
    aspect-ratio: 2.48;
}
.appLogo-cover img{
    object-fit: cover;
}
/*-----list-----*/
.nav-menu {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-item {
    height: 100%;
    margin-right: 2rem;
    cursor: pointer;
}
.nav-item-title,.nav-item a{
    color: var(--text-2);
    font-size: 1.6rem;
    font-weight: 400;
    transition: all .3s;
    align-items: center;
    text-wrap: nowrap;
}
.nav-item-arrow{
    fill: var(--text-3);
    width: 1rem;
    height: 1rem;
    margin-right: .8rem;
    margin-top: 0.8rem;
    transition: all 400ms;
    transform: rotate(180deg);
}
#navArrow.arrow-rotate{
    transform: rotate(0deg);
}
.nav-item:hover .nav-item-title {
    color: var(--primary);
}
/*-----menu modal-----*/
.nav-menu-list {
    width: 100%;
    position: absolute;
    top: 101%;
    right: 0;
    left: 0;
    transition: all 0.3s ease 1s;
    border-top: 1px solid #e6e6e6;
    align-items: flex-start;
    justify-content: space-between;
    overflow: hidden;
    border-bottom-right-radius: 0.5rem;
    border-bottom-left-radius: 0.5rem;
    display: none;
    z-index: 9999999;
    background-color: #f6f9ff;
    box-shadow: 3px 3px 5px rgba(94, 104, 121, 0.288);
}
.nav-menu-list.show {
    display: flex;
}
.nav_category-modal-rgt{
    height: 100%;
    background-color: #f6f9ff;
    border-left: 1px solid #dfdfdf;
    min-width: 30rem;
    padding: 2rem 0 0;
}
.nav_category-modal-lft{
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-color: #fff;

}
.nav-menu-list-item {
    width: 100%;
    padding: 1rem 2rem 1rem 4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-left: 3px solid #f6f9ff;
}
.nav-menu-list-item:last-child {
    padding-bottom: 2rem;
}
.nav-menu-list-item,
.nav-modal-category-icon{
    transition: all 300ms;
}
.nav-menu-list-item:hover,.nav-menu-list-item.activeBtn {
    background-color: var(--bg-1);
    border-left: 3px solid var(--primary);
}
.nav-modal-category-title{
    color: var(--text-3);
    font-size: 1.4rem;
    font-weight: 400;
    align-items: center;
    text-wrap: nowrap;
    transition: color 300ms;

}
.nav-modal-category-icon{
    fill: var(--text-4);
    width: 1.8rem;
    height: 1.8rem;
    margin-left: 0.8rem;
    margin-top: 0.8rem;
}
.nav-menu-list-item:hover .nav-modal-category-title{
    font-weight: 600;
    color:  var(--primary);
}
.nav-menu-list-item:hover .nav-modal-category-icon{
    fill:  var(--primary);
}
.nav_category-modal-lft .nav-menu-list-item {
    border-left: none;
}
.nav_category-modal-lft .nav-menu-list-item:hover {
    border-left: none;
}
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 9998;
    display: none;
    transition: all 300ms;
}
.menu-overlay.show{
    display: block;
}
.category-list{
    width: 100%;
    height: 100%;
    display: none;
}
.nav-menu-list-item.activeBtn .nav-modal-category-title{
    font-weight: 600;
    color:  var(--primary);
}
.nav-menu-list-item.activeBtn .nav-modal-category-icon{
    fill:  var(--primary);
}
.nav-item.activeMenu{
    display: block;
}
.category-list.activeContent{
    display: block;
}
/*-----search-----*/
.nav-search-box {
    height: 4rem;
    border-radius: 0.5rem;
    border: 0.1rem solid var(--border-5);
    background-color: var(--bg-1);
    overflow: hidden;
    flex-grow: 1;
    padding: 0 0 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-search-input {
    width: 100%;
    height: 100%;
    padding: 1rem;
    font-size: 1.6rem;
    border: 0;
    outline: 0;
    color: var(--text-2);
    background-color: var(--bg-1);
    font-weight: 400;
    text-align: start;
    vertical-align: middle;
}
.nav-search-input:focus ~ .nav-search-box{
    border-color: var(--primary);
}
.nav-search-input::placeholder {
    color: var(--text-4) !important;
    font-weight: 400;
}
.nav-search-box .nav-icon-cover{
    width: 3rem;
    height: 3rem;
    background-color: transparent;
}
.nav-search-box .nav-icon-cover svg{
    width: 70%;
    height: 70%;
    fill: var(--primary-bg);
    transition: all 200ms;
}
.nav-search-box .nav-icon-cover:hover svg{
    fill: var(--primary);
}
/*-----icons-----*/
.nav-icons .nav-icon{
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 1rem;
    cursor: pointer;
    fill: var(--text-3);
    transition: color 300ms;
}
.nav-icons .nav-icon:hover{
    fill: var(--text-4);
}
.cart-icon{
    position: relative;
    margin-left: 1rem;
}

/*-----profile-----*/
.nav-profile-container{
    display: flex;
    align-items: center;
    cursor: pointer;
}
.user-picture-wrapper{
    width: 5rem;
    height: 5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--bg-1);
    overflow: hidden;
    padding: 0.2rem;
    border: 2px solid #dbdbdb;
}
.user-picture-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}
.nav-username{
    width: 10rem ;
    max-width: 12rem ;
    font-size: 1.4rem;
    color: var(--text-3);
    font-weight: 500;
    margin-right: 0.5rem;
}
.username{
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-4);
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 2rem;
}
.profile-icon{
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.6rem;
    fill: var(--text-4);
    transform: rotate(180deg);
}
.nav-login{
    padding: 0.8rem 1.5rem;
    border: 1px solid #dcebf9;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-right: 1rem;
    transition: all 400ms;
    background-color: #dcebf9;
}
.nav-login:hover{
    border-color: var(--primary);
    flex-wrap: nowrap;
}
.nav-login span{
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary);
    text-wrap: nowrap;
}
.nav-login span:nth-child(2){
    font-weight: 600;
    color: var(--primary);
    padding: 0 0.3rem;
}
.profile-menu{
    min-width: 25rem;
    width: 30rem;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: var(--bg-1);
    position: absolute;
    top: 7.2rem;
    left: 0;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    display: none;
    margin-left: 0.2rem;
    z-index: 9999;
    border: 1px solid #d7dfe3;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.profile-menu.active{
    display: flex;
}
.nav-profile-ul {
    width: 100%;
    height: 100%;
}
.dash-sidebar-li {
    width: 100%;
    cursor: pointer;
    border-top: 0.1rem solid var(--slider-border);
    padding: 1.5rem 1rem;
    border-left: 3px solid transparent;
    transition: border-left-color 400ms;
}
.dash-sidebar-item{
    width: 100%;
    user-select: none;
    font-size: 1.8rem;
    font-weight: 600;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
}
.dash-sidebar-icon{
    width: 2rem;
    height: 2rem;
    fill: var(--text-4);
    margin-left: 1rem;
}
.dash-sidebar-title {
    font-size: 1.4rem;
    text-wrap: nowrap;
    color: var(--text-2);
    font-weight: 500;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    transition: color 400ms;
}
.dash-sidebar-li:hover .dash-sidebar-title{
    color: var(--primary);
}
.dash-sidebar-li.activeBtn .dash-sidebar-title{
    color: var(--primary);
}
.dash-sidebar-li.activeBtn{
    background-color: var(--bg-1);
    border-left: 3px solid var(--primary);
}
.dash-sidebar-li.logout .dash-sidebar-title{
    color: var(--error);
}
.dash-sidebar-li.logout .dash-sidebar-icon{
    fill: var(--error);
}
#menuShowIcon{
    z-index: 99;
}
.nav-menu-icon,.mobile-list  {
    display: none;
}
/*-------bread crumb-------*/
.breadcrumb {
    width: 100%;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: fixed;
    top: 7rem;
    right: 0;
    left: 0;
    z-index: 9996;
    background-color: var(--bg-cg);
}
.breadcrumb-list{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.breadcrumb-option {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 4rem;
    height: 100%;
    position: relative;
}

.breadcrumb-option:first-child {
    margin-right: 0;
}

.breadcrumb-option a span,.breadcrumb-option div span {
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
    color: var(--text-2);
    transition: color 300ms;
}
.breadcrumb-option:hover a span{
    color: var(--text-2);
}

.breadcrumb-option:last-child div span {
    color: var(--text-2);
}

.breadcrumb-option .breadcrumb-icon {
    width: 1rem;
    height: 1rem;
    margin: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: var(--text-5);
    transform: rotate(-90deg);
}
.breadcrumb-hidden{
    display: none !important;
}
/*------------------------------footer--------------------------------------*/
.footer {
    width: 100%;
    background: #1a1a1a;
    padding: 70px 0 25px;
    font-size: 1rem;
    border-top: 1px solid #ededed;
    margin-top: 5rem;
    color: #d9d9d9;
}
.foot-content {
    width: 100%;
}
.foot-grid {
    display: grid;
    grid-template-columns:auto repeat(2, 1fr) auto; /* ستون آخر عرضش به اندازه محتوا */
    gap: 5rem;
    align-items: stretch;
}
.foot-col {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%; /* پر کردن ارتفاع ستون */
}


.foot-appLogo-cover {
    display: block;
    height: 6rem;
    margin-bottom: 1rem;
}

.foot-appLogo-cover img {
    max-height: 100%;
    object-fit: contain;
}
.footer .admin-form{
    width: 100%;
}
/* متن */
.footer-para {
    font-size: 1.2rem;
    text-align: start;
    color: #d9d9d9;
    margin-bottom: 1rem;
}

.foot-col .icon-cover {
    background-color: #313131;
    padding: 0.7rem;
    border-radius: 50%;
}

/* شبکه‌های اجتماعی */
.foot-social {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.foot-social .icon-cover svg {
    fill: #d9d9d9;
    width: 15px;
    height: 15px;
    transition: fill 0.3s ease;
}

.foot-social .icon-cover svg:hover {
    fill: var(--text-4);
}



/* اطمینان از اینکه ورودی‌ها عرض کامل بگیرند */
.div-second form,
.div-second .foot-input-container {
    width: 100%;
}

/* فیلد ورودی خبرنامه */
.foot-input-container{
    width: 100%;
}
.foot-input {
    width: 100%;
    font-size: 1.2rem;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 0.6rem 1rem;
    margin-bottom: 1rem;
    color: var(--text-1);
    background-color: #fff;
}

.foot-input:focus {
    border-color: var(--primary);
}

/* دکمه ارسال خبرنامه */
.foot-submit {
    width: 100%;
    padding: 0.6rem 1rem;
    cursor: pointer;
    background-color: var(--primary);
    color: var(--text-6);
    font-size: 1.2rem;
    border-radius: 3px;
    border: none;
}

/* ستون ترکیبی (پشتیبانی + لینک‌ها) */
.div-third-combined {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* عنوان‌ها */
.foot-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 550;
    text-align: start;
    color: #fff;
}

/* لینک‌ها */
.foot-link-container{
    width: 100%;
    gap: 2rem;
    text-align: start;
}
.foot-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foot-links li {
    margin-bottom: 0.5rem;
}

.foot-links li a {
    font-size: 1.2rem;
    color: #d9d9d9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.foot-links li a:hover {
    color: var(--text-4);
}
/* enamad*/
.foot-images a{
    width: 10rem
}
/* ستون پرکننده (سمت راست) */
.div-filler {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.filler-box {
    display: block;
    width: 80px;
    height: 80px;
    background: transparent;
}

.foot-copyright {
    margin: 2rem 0 1rem 0;
    text-align: end;
    font-size: 1rem;
    color: var(--text-4);
}

.foot-divider {
    width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, rgba(222, 171, 30, 1) 0%, rgba(253, 29, 29, 1) 24%, rgba(75, 69, 252, 1) 100%);
}

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 20px 0;
    font-family: sans-serif;
    direction: rtl;
}

.custom-pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 2px;;
    background-color: white;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #ddd;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.custom-pagination .page-item:hover:not(.active):not(.disabled) {
    background-color: #f2f2f2;
}

.custom-pagination .page-item.active {
    background-color: #333;
    color: #fff;
    border: none;
}

.custom-pagination .page-item.disabled {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
}

.custom-pagination .page-item.prev,
.custom-pagination .page-item.next {
    border-radius: 2px;
    width: auto;
    padding: 0 14px;
    height: 36px;
    font-weight: bold;
    border: 1px solid #ddd;
}
.pageActive{
    background-color: #ededed !important;
}

/*-------------------*/
.download-container{
    width: 100%;
    min-width: 15rem;
    max-width: 25rem;
    position: relative;
    cursor: pointer;
    user-select: none;
}
.download-menu {
    width: 100%;
    background: #ffffff;
    border-radius: 5px;
    padding: 2rem 1rem;
    margin: 1rem auto 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 400ms;
    display: none;
    position: absolute;
    top: 5.5rem;
    right: 0;
    left: 0;
    z-index: 99;
}
.download-menu-scroll {
    width: 100%;
    max-height: 30rem;
    overflow-x: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.filter-dropdown.active .download-menu{
    display: block;
}
.filter-dropdown.active .download-title svg{
    transform: rotate(180deg);
}

.download-btn,.download-menu .download-btn {
    width: 100%;
    min-width: 15rem;
    max-width: 25rem;
    height: 5rem;
    background: #2ecc71; /* سبز مات */
    color: #fff;
    font-size: 1.4rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease-in-out;
    text-align: center;
    overflow: hidden;
}
.download-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0.5rem 3rem;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
}

.download-menu .download-btn{
    max-height: 4rem;
    margin-bottom: 1rem;
    /*box-shadow: 0 4px 12px rgba(0,0,0,0.4);*/
}
.download-btn:hover,.download-menu .download-btn:hover {
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(2px);
}
.download-title {
    width: 100%;
    height: 5rem;
    background: #ffffff;
    border-radius: 5px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.download-title h3{
    color: #2ecc71;
    font-size: 1.4rem;
}
.download-title svg{
    width: 1rem;
    height: 1rem;
    fill: #2ecc71;
    transition: all 400ms;
}

/*-----------------notification*/
.nav-notification{
}
#notif-list{
    padding: 2rem 1rem;
}
.not-found-text{
    width: 100%;
    font-size: 1.8rem;
    padding: 1rem;
}
#notif-list .title{
    width: 100%;
    font-size: 1.8rem;
    padding: 0 1rem 2rem 1rem;
}
.notif-ul{
    width: 100%;
    max-height: 50rem;
    overflow-x: auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
.nav-notification-menu.show{
    display: flex;
}
#notif-btn{
    background-color: transparent;
    position: relative;
    width: fit-content;
}

#notif-count,.shopping-count{
    margin: 0;
    font-size: 0.1rem;
    color: var(--text-6);
    background-color: var(--error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 0.5s;
}
#notif-count,.shopping-count{
    width: 0.7rem;
    height: 0.7rem;
    top: -0.2rem;
    left: 0;
}
.shopping-count{
    width: 1.3rem;
    height: 1.3rem;
    font-size: 1rem;
    transform: translate(50%,-50%);
    top: 0;
    right: 55%;
}
#notif-list .user-picture-wrapper{
    margin-right: 0;
    margin-left: 1rem;
}
.notif-li{
    width: 100%;
    cursor: pointer;
    border-top: 0.1rem solid var(--slider-border);
    padding: 1.5rem 0;
    transition: border-left-color 400ms;
}
.notif-name,.text-sm{
    font-size: 1.2rem;
    color: var(--text-3);
}
.notif-name{
    color: var(--primary);
}
.notif-new .notif-name, .notif-new .text-sm{
    font-weight: 600;
}
.notif-mark{
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: var(--primary);
    color: var(--text-6);
    margin-top: 2rem;
}
.notif-mark:hover{
    background-color: var(--primary-hover);
}
.notif-date{
    font-size: 1rem;
    color: var(--text-4);
    padding: 0 1rem;
    margin-top: 1rem;
}
.notif-success-icon{
    fill: var(--success);
}
/*-------------------------------stars*/
.profile-img-cover{
    background-color: var(--bg-1);
    width: 6.5rem;
    height: 6.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    padding: 0.2rem;
    border: 2px solid #dbdbdb;
}
.profile-img-cover img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    overflow: hidden;
}
.start-container{
    margin-right: 1rem;
}
.profile-rates{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3px;
    cursor: default;
    margin: 0.6rem 0;
}
.star-svg{
    width: 1.5rem;
    height: 1.5rem;
    fill: #ff8108;
    stroke: #ff8108;
}
.star-svg-rtl{
    transform: rotateY(180deg);
}
.profile-name{
    font-size: 1.4rem;
    color: var(--text-3);
}

.profile-rate-text{
    font-size: 1.2rem;
    color: var(--text-3);
}
.profile-name.modal{
    color: var(--text-6);
}
.profile-rate-text.modal{
    color: var(--text-5);
}
.show-detail {
    display: flex;
    opacity: 1;
    visibility: visible;
}
