/* 
 * Name: Style.css
 * Author: NetThemes
 * Author Url: www.netthemes.ir
 * Description: NetShop shop Template
 * Structure:
                #Base
                #Components
                #Layout
                #Utilities 
                #Pages
*/
:root {
    --font-size: 13px;
    --visual-border-radius: 2rem;

    --mobile-nav-height: 4rem;

    --main-height: 75px;
    --sub-height: 55px;
}

/* -------------------------------------------------------------------------- */
/*                                    #Base                                   */
/* -------------------------------------------------------------------------- */
@font-face {
    font-family: Vazirmatn;
    font-stretch: normal;
    font-style: normal;
    font-weight: 100 900;
    src: url('../vendor/fonts/vazir/Vazirmatn-VariableFont_wght.ttf');
}

/* font size */
html,
body {
    font-size: var(--font-size);
}

/* font family */
.tooltip,
body {
    font-family: Vazirmatn, sans-serif !important;
}

@supports (font-variation-settings: normal) {
    body {
        font-family: Vazirmatn, sans-serif !important;
    }
}

/* body background */
body {
    background-color: var(--bs-primary-tint);
}

/* image */
img {
    max-width: 100%;
}

/*
select every a, button or class start with link
*/
a,
button,
[class*=link] {
    text-decoration: none;
}

/*
bootstrap btn class
*/
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* -------------------------------- darkTheme ------------------------------- */
/* [data-bs-theme=dark] */
[data-bs-theme=dark] .btn-light {
    --bs-btn-color: var(--bs-gray-100);
    --bs-btn-hover-color: var(--bs-gray-200);

    --bs-btn-bg: var(--bs-dark);
    --bs-btn-hover-bg: var(--bs-gray-700);

    --bs-btn-border-color: var(--bs-dark);
    --bs-btn-hover-border-color: var(--bs-dark);

    --bs-btn-active-color: var(--bs-gray-100);
    --bs-btn-active-bg: var(--bs-dark);
    --bs-btn-active-border-color: var(--bs-gray-800);

    --bs-btn-disabled-color: var(--bs-gray-300);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-dark);
}

/* -------------------------------------------------------------------------- */
/*                                 #Components                                */
/* -------------------------------------------------------------------------- */
/* --------------------------------- #modal --------------------------------- */
.modal-dialog {
    --bs-modal-padding: 1.5rem;
    --bs-modal-header-padding: 1.5rem;
    --bs-modal-header-border-width: 0;
    --bs-modal-footer-border-width: 0;
}

/* -------------------------------- #collapse ------------------------------- */
.nt-collapse {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem;
}

.nt-collapse[data-nt-collapse-reverse=true]:before {
    order: 1;
}

.nt-collapse.collapsed::after {
    content: "\ea5f";
    font-family: tabler-icons;
}

.nt-collapse::after {
    content: "\ea62";
    font-family: tabler-icons;
    font-size: 1.15rem;
}

.nt-collapse.collapsed::before {
    content: attr(data-textcollapsed);
}

.nt-collapse::before {
    content: attr(data-text);
}

/* --------------------------------- #swiper -------------------------------- */
.swiper {
    /* swiper theme */
    --swiper-theme-color: var(--bs-primary);
}

.swiper:hover .swiper-button-prev:not(.swiper-button-disabled),
.swiper:hover .swiper-button-next:not(.swiper-button-disabled) {
    opacity: 1 !important;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    opacity: 0 !important;
    transition: opacity 0.15s ease-in-out;

    width: 3rem;
    height: 3rem;

    color: var(--bs-dark);
    background-color: var(--bs-light);

    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-pill);

    --swiper-navigation-size: 1.25rem;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    background-color: var(--bs-gray-100);
}

.swiper-slide-thumb-active {
    opacity: 1 !important;
}

/* ------------------------------- #mobileNav ------------------------------- */
.mobileNav {
    width: 100%;
    height: var(--mobile-nav-height);
    padding: 1rem 0;

    background-color: var(--bs-light);
    border-top: 1px solid var(--bs-border-color);

    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1021;

    display: flex;
    justify-content: center;
    align-items: center;
}

[data-bs-theme=dark] .mobileNav {
    background-color: var(--bs-dark);
}

/* ------------------------------- #iconBadge ------------------------------- */
.nt-iconBadge-card {
    height: 100%;
    color: var(--bs-emphasis-color);
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius-xl);
    padding: 1.5rem;

    display: flex;
    gap: 0.5rem;

    transition: border-color 0.15s ease-in-out;
}

a.nt-iconBadge-card:hover {
    border-color: var(--bs-primary);
}

.nt-iconBadge-wrapper {
    --size: 4rem;

    width: calc(var(--size) * 1.5);
    text-align: center;

    position: relative;

    flex-shrink: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.nt-iconBadge-icon {
    width: var(--size);
    height: var(--size);

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.nt-iconBadge-icon::before {
    content: '';

    width: 102%;
    height: 102%;
    box-shadow: inset 0 0 0 2px var(--bs-body-bg);
    border-radius: inherit;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.nt-iconBadge-badge {
    border-radius: var(--bs-border-radius-pill);
    border: 2px solid var(--bs-body-bg);

    display: flex;
    align-items: center;
    gap: 0.25rem;

    position: absolute;
    z-index: 2;
}

/* -------------------------------------------------------------------------- */
/*                                   #Layout                                  */
/* -------------------------------------------------------------------------- */
/* -------------------------------- #wrapper -------------------------------- */
.wrapper {
    width: 100%;
    max-width: 400px;
    position: relative;

    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 576px) {
    .wrapper {
        max-width: 600px;
    }
}

@media screen and (min-width: 768px) {
    .wrapper {
        max-width: 800px;
    }
}

@media screen and (min-width: 992px) {
    .wrapper {
        max-width: 1000px;
    }
}

@media screen and (min-width: 1200px) {
    .wrapper {
        max-width: 1400px;
    }
}

@media screen and (min-width: 1600px) {
    .wrapper {
        max-width: 1680px;
    }
}

.wrapper-xs {
    width: 100%;
    max-width: 380px;
    position: relative;

    margin: 1.5rem auto;
}

.wrapper-sm {
    width: 100%;
    max-width: 576px;
    position: relative;

    margin: 1.5rem auto;
}

.wrapper-md {
    width: 100%;
    max-width: 768px;
    position: relative;

    margin: 1.5rem auto;
}

.wrapper-lg {
    width: 100%;
    max-width: 992px;
    position: relative;

    margin: 1.5rem auto;
}

/* --------------------------------- #header -------------------------------- */
.header {
    background-color: var(--bs-primary);
}

/*
    |--- header gif
    |--- header main
    |--- header sub
*/
.header-gif {
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.header-gif img {
    /* max-width: none; */
    /* width: auto; */
    height: auto;
}

/* header main ------------------------------ */
.header-main {
    min-height: var(--main-height);

    display: flex;
    align-items: center;
    gap: 1rem;
}

/* logo */
.header-main-logo {
    margin-bottom: 0;

    font-size: 2.5rem;
    color: var(--bs-light);

    font-weight: bold;
    font-variation-settings: "wght" 700;
}

[data-bs-theme=dark] .header-main-logo {
    color: var(--bs-light);
    color: #fff;
}

/* search */
.header-main-search {
    padding: 0 1.5rem;

    display: flex;
    align-items: center;
}

.header-main-search .input-group {
    flex-wrap: nowrap;

    background-color: var(--bs-light);
    border-radius: var(--bs-border-radius);
}

[data-bs-theme=dark] .header-main-search .input-group {
    background-color: var(--bs-dark);
}

.header-main-search .header-main-searchInput {
    border: 0;
    min-width: 20rem;
    max-width: 30rem;
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    background-color: transparent;
}

.header-main-search .header-main-searchSubmit {
    border: 0;
}

/* button */
.header-main .header-main-buttons {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.header-main .header-main-buttons .btn {
    font-size: 1rem;
}

.header-main .header-main-buttons .btn::after {
    display: none !important;
}

/* header sub ------------------------------- */
.header-sub {
    background-color: var(--bs-primary-tint);
    min-height: var(--sub-height);

    border-top-left-radius: var(--visual-border-radius);
    border-top-right-radius: var(--visual-border-radius);

    display: flex;
    align-items: center;
    gap: 1rem;
}

/* menu */
.header-sub-menuDesktop {
    height: var(--sub-height);
    line-height: 4.5rem;
    overflow: hidden;

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-sub-menuMobile {
    color: var(--bs-light);
    padding: 1rem;

    display: flex;
    align-items: center;
    gap: 1.5rem;

    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

/* megamenu */
.header-sub-categories {
    position: relative;
    z-index: 1021;

    --megamenu-width: 980px;
    --megamenu-height: 500px;
    --megamenu-item-width: 250px;
}

.header-sub-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-sub-categories > div:hover,
.header-sub-categories > .header-nav-cat:hover + div {
    display: block;
}

.header-sub-categories > div {
    border-radius: var(--bs-border-radius);
    display: none;
    overflow-x: hidden;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.15);

    width: var(--megamenu-width);
    height: var(--megamenu-height);

    background-color: var(--bs-primary-tint);
    color: var(--bs-body-color);

    position: absolute;
    top: 100%;
    right: 0;
    z-index: 49;
}

.header-sub-categories > div > ul {
    width: var(--megamenu-item-width);
    height: var(--megamenu-height);

    overflow-y: auto;
}

.header-sub-categories > div > ul > li {
    transition: 100ms background-color;
}

.header-sub-categories > div > ul > li.active {
    background-color: var(--bs-primary);
}

.header-sub-categories > div > ul > li.active > a::after {
    color: var(--bs-primary-tint);
}

.header-sub-categories > div > ul > li > a {
    padding: 1rem 1.5rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-sub-categories > div > ul > li > a::after {
    content: '\ea60';
    font-family: "tabler-icons";
    color: var(--bs-light);
}

.header-sub-categories > div > ul > li.active > ul {
    display: flex;
    flex-wrap: wrap;
}

.header-sub-categories > div > ul > li > ul {
    display: none;

    width: calc(var(--megamenu-width) - var(--megamenu-item-width));
    max-width: calc(var(--megamenu-width) - var(--megamenu-item-width));
    height: var(--megamenu-height);
    background-color: var(--bs-body-bg);
    padding: 1.5rem;

    flex-direction: column;
    flex-wrap: wrap;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid var(--bs-border-color);

    position: absolute;
    top: 0;
    left: 0;
}

.header-sub-categories > div > ul > li > ul h5 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.header-sub-categories > div > ul > li > ul a {
    margin-bottom: 1rem;
}

/* ---------------------------------- #main --------------------------------- */
.main {
    min-height: 80vh;
    background-color: var(--bs-body-bg);
    padding-bottom: 5rem;

    position: relative;

    border-radius: var(--visual-border-radius);
}

/* --------------------------------- #footer -------------------------------- */
/* 
    |--- footer sub
    |--- footer main
    |--- footer bottom
*/
.footer {
    position: relative;
    z-index: 1;
}

/* footer sub ------------------------------- */
.footer-sub {
    padding: 0 1rem;
    min-height: var(--sub-height);
    background-color: var(--bs-primary-tint);

    border-bottom-left-radius: var(--visual-border-radius);
    border-bottom-right-radius: var(--visual-border-radius);
}

/* footer main ------------------------------ */
.footer-main {
    min-height: var(--main-height);
    position: relative;

    border-bottom-left-radius: var(--visual-border-radius);
    border-bottom-right-radius: var(--visual-border-radius);
}

.footer-main::before {
    content: '';

    width: 100%;
    height: 100%;
    background-color: var(--bs-dark);

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* logo */
.footer-main-logo {
    width: 100%;
    margin-bottom: 0;

    font-size: 2.5rem;
    color: var(--bs-light);

    font-weight: bold;
    font-variation-settings: "wght" 700;
}

/* button */
.footer-main .footer-main-buttons {
    display: flex;
    align-items: stretch;
    gap: 1rem;
}

.footer-main .footer-main-buttons .btn {
    font-size: 1rem;
}

.footer-main .footer-main-buttons .footer-goToTop {
    overflow: hidden;
}

.footer-main .footer-main-buttons .footer-goToTop:hover i {
    animation: backOutUp 1.5s ease-in-out infinite;
}

/* footer bottom ----------------------------- */
.footer-bottom {
    background-color: var(--bs-dark);
    color: var(--bs-light);
}

/* [data-bs-theme=dark] */
/* -------------------------------- #offbody -------------------------------- */
/* 
    offbody
        offbody-content
            offbody-menu
                offbody-menu-item
                    offbody-submenu
                        offbody-submenu-backbutton
                        offbody-menu-slidelink
*/
.offbody {
    overflow-x: hidden;
    position: relative;

    width: 100%;
    height: 100%;
    min-height: 50vh;
}

.offbody-content {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease-in-out;

    top: 0;
    right: 0;
}

.offbody-content.active {
    transform: translateX(100%);
}

.offbody-menu {
    padding: 0 1rem !important;
}

.offbody ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offbody a {
    font-size: 1.15rem;
}

/* submenu */
.offbody-submenu {
    width: 100%;
    min-height: 100%;
    background-color: var(--bs-body-bg);

    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);

    display: none;

    flex-direction: column;
    gap: 1.5rem;
}

.offbody-submenu.active {
    z-index: 10;
    display: flex;
}

.offbody-submenu-item {
    width: 100%;

    padding-right: 1rem;
    padding-left: 1rem;
}

.offbody-submenu-item a {
    padding-right: 1.5rem;

    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.offbody-submenu-header {
    position: sticky;
    top: 0;

    border-radius: var(--bs-border-radius-xl);
}

.offbody-submenu-backbutton {
    width: 100%;
    padding: 1rem;
    justify-content: flex-start;
    background-color: var(--bs-body-bg);
}

/* link */
.offbody-menu-slidelink {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.offbody-menu-slidelink {
    justify-content: space-between;
}

.offbody-menu-slidelink::after {
    content: '\ea60';
    font-family: "tabler-icons";
    font-size: 1.25rem;
    color: var(--bs-gray-500);
}

.offbody-menu-slidelink {
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    color: var(--bs-emphasis-color);

    font-weight: 500;
    font-variation-settings: "wght" 500;

    transition: color 0.15s ease-in-out;
}

.offbody-menu-slidelink:hover {
    color: var(--bs-primary);
}

/* -------------------------------------------------------------------------- */
/*                                 #Utilities                                 */
/* -------------------------------------------------------------------------- */
/* ---------------------------------- #bg- ---------------------------------- */
/* social */
.nt-bg-discord {
    background-color: #7289d9;
}

.nt-bg-facebook {
    background-color: #1877F2
}

.nt-bg-instagram {
    background: #f09433;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nt-bg-pinterest {
    background-color: #E60023;
}

.nt-bg-telegram {
    background-color: #0088cc
}

.nt-bg-whatsapp {
    background-color: #25d366
}

.nt-bg-x {
    background-color: #14171a
}

/* --------------------------------- #clamp --------------------------------- */
.nt-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nt-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.nt-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

/* -------------------------------- #rounded -------------------------------- */
.nt-rounded-visual {
    border-radius: var(--visual-border-radius);
}

/* ------------------------------- #fontWeight ------------------------------ */
.nt-fw-100 {
    font-weight: 100;
    font-variation-settings: "wght" 100;
}

.nt-fw-lighter,
.nt-fw-200 {
    font-weight: lighter;
    font-variation-settings: "wght" 200;
}

.nt-fw-light,
.nt-fw-300 {
    font-weight: 300;
    font-variation-settings: "wght" 300;
}

.nt-fw-normal,
.nt-fw-400 {
    font-weight: 400;
    font-variation-settings: "wght" 400;
}

.nt-fw-medium,
.nt-fw-500 {
    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.nt-fw-semibold,
.nt-fw-600 {
    font-weight: 600;
    font-variation-settings: "wght" 600;
}

.nt-fw-bold,
.nt-fw-700 {
    font-weight: bold;
    font-variation-settings: "wght" 700;
}

.nt-fw-800 {
    font-weight: 800;
    font-variation-settings: "wght" 800;
}

.nt-fw-bolder,
.nt-fw-900 {
    font-weight: bolder;
    font-variation-settings: "wght" 900;
}

.nt-fw-1000 {
    font-weight: 1000;
    font-variation-settings: "wght" 1000;
}

/* ---------------------------------- #flex --------------------------------- */
/* flex row */
.nt-flex,
.nt-flex-start-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: start;
}

.nt-flex-start-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: center;
}

.nt-flex-start-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: end;
}

.nt-flex-start-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: stretch;
}

.nt-flex-center-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: start;
}

.nt-flex-center-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: center;
}

.nt-flex-center-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: end;
}

.nt-flex-center-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: center;
    align-items: stretch;
}

.nt-flex-end-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: start;
}

.nt-flex-end-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: center;
}

.nt-flex-end-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: end;
}

.nt-flex-end-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: stretch;
}

.nt-flex-around-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: start;
}

.nt-flex-around-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: center;
}

.nt-flex-around-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: end;
}

.nt-flex-around-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: stretch;
}

.nt-flex-between-start {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: start;
}

.nt-flex-between-center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: center;
}

.nt-flex-between-end {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

.nt-flex-between-stretch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

/* flex column */
.nt-flex-column,
.nt-flex-column-start-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: start;
}

.nt-flex-column-start-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: center;
}

.nt-flex-column-start-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: end;
}

.nt-flex-column-start-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-start;
    align-items: stretch;
}

.nt-flex-column-center-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: start;
}

.nt-flex-column-center-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: center;
}

.nt-flex-colum-center-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: end;
}

.nt-flex-column-center-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: center;
    align-items: stretch;
}

.nt-flex-column-end-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: start;
}

.nt-flex-column-end-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: center;
}

.nt-flex-column-end-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: end;
}

.nt-flex-column-end-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: flex-end;
    align-items: stretch;
}

.nt-flex-column-around-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: start;
}

.nt-flex-column-around-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: center;
}

.nt-flex-column-around-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: end;
}

.nt-flex-column-around-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-around;
    align-items: stretch;
}

.nt-flex-column-between-start {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: start;
}

.nt-flex-column-between-center {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: center;
}

.nt-flex-column-between-end {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: end;
}

.nt-flex-column-between-stretch {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0.5rem;

    justify-content: space-between;
    align-items: stretch;
}

/* -------------------------------------------------------------------------- */
/*                                   #Pages                                   */
/* -------------------------------------------------------------------------- */
/* #index */
.index-club {
    align-items: center;
    padding-bottom: 0.5rem;

    border-radius: var(--bs-border-radius-xl);
}

.index-club-link {
    flex-grow: 1;
    justify-content: flex-start;
    --bs-btn-hover-bg: var(--bs-light);
    border-width: 2px;

    border-radius: var(--bs-border-radius-xl);

    padding-top: 2rem;
    padding-bottom: 2rem;

    background-repeat: no-repeat;
    background-position: left top;
    background-size: 70%;
}

/* #product */
/* selectColor */
.product-selectColor {
    padding: 0.5rem 0;
    margin-bottom: 1rem;
}

.product-selectColor-toolbar {
    list-style: none;
    padding: 0;
    width: 100%;

    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;

    white-space: nowrap;
    overflow-x: auto;
}

.product-selectColor .form-check {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.product-selectColor .form-check label {
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 2px solid var(--bs-gray-200);
    border-radius: var(--bs-border-radius-pill);
    --nt-selectColor: var(--bs-light);

    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;

    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

[data-bs-theme=dark] .product-selectColor .form-check label {
    border-color: var(--bs-gray-800);
}

.product-selectColor .form-check input:checked + label {
    border-color: var(--nt-selectColor);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.product-selectColor .form-check input[type="radio"] {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.product-selectColor .form-check i {
    color: var(--nt-selectColor);
}

/* shopTooltip */
.product-sellers-shopTooltip {
    --bs-tooltip-max-width: 20rem;
    --bs-tooltip-padding-x: 1rem;
    --bs-tooltip-padding-y: 1rem;
    --bs-tooltip-margin: 1rem;
    --bs-tooltip-border-radius: var(--bs-border-radius);
    --bs-tooltip-opacity: 1;
    --bs-tooltip-bg: var(--bs-body-bg);
    --bs-tooltip-color: var(--bs-dark);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

[data-bs-theme=dark] .product-sellers-shopTooltip {
    --bs-tooltip-color: var(--bs-light);
}

/* ---------------------------------- #404 ---------------------------------- */
.error404-bubble {
    background-color: var(--bs-primary);
    color: var(--bs-body-color);

    position: relative;
    margin-bottom: -8%;
    border-radius: var(--bs-border-radius);
    padding: 1.5rem;
    text-align: center;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.error404-bubble::after {
    content: '';

    position: absolute;
    top: 99%;
    left: 51%;
    transform: translateX(-50%);

    width: 0;
    height: 0;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-top: 2.5rem solid var(--bs-primary);
}

/* -------------------------------- #shipping ------------------------------- */
/* time tabs */
.shipping-time-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--bs-light);

    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

.shipping-time-tabs .nav-item .nav-link {
    min-width: 6rem;
    color: var(--bs-emphasis-color);
    font-size: 1.15rem;
    border-bottom: 2px solid transparent;
    opacity: 0.6;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
}

.shipping-time-tabs.nav-pills .nav-link.active,
.shipping-time-tabs.nav-pills .show > .nav-link {
    opacity: 1;
    background-color: transparent !important;
    background-color: var(--bs-light-bg-subtle) !important;
    border-bottom: 3px solid var(--bs-secondary);

}

/* -------------------------------- #Contact -------------------------------- */
/* holiday */
.contact-holiday-title {
    min-width: 7rem;
    width: 7rem;
}

.contact-holiday-content {
    flex-grow: 1;
    display: flex;
    flex-wrap: nowrap;

    overflow-x: auto;
    white-space: nowrap;
}

.contact-holiday-item {
    width: 10rem;
    white-space: normal;
    margin-left: 1rem;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 0.375rem;
}

.contact-holiday {
    display: flex;
    flex-wrap: nowrap;
    min-height: 6rem;
}

/* -------------------------------- #profile -------------------------------- */
.profile-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.profile-sidebar-link {
    font-size: 1rem;
    justify-content: start;
    color: var(--bs-emphasis-color);
    opacity: 0.8;
    padding: 0.75rem 1rem;
}

.profile-sidebar-link:hover {
    background-color: var(--bs-body-bg);
}

.profile-sidebar-link.active {
    opacity: 1;
    background-color: var(--bs-body-bg);
    border-color: var(--bs-border-color);
}

.profile-sidebar-link.active i {
    color: var(--bs-primary);
}

/* ------------------------------ #user-profile ----------------------------- */
/* content */
.profile-badge {
    width: 100%;
    text-align: right;
    justify-content: flex-start;
    gap: 1.5rem;
}

@media screen and (min-width: 580px) {
    .profile-badge-wrapper .profile-badge {
        border-left: 1px solid var(--bs-light) !important;
    }

    .profile-badge-wrapper:last-child .profile-badge {
        border-left: 0 !important;
    }
}

/* --------------------------------- #Lists --------------------------------- */
.lists-title {
    background-color: var(--bs-light-bg-subtle);
    color: var(--bs-emphasis-color);
    border-radius: var(--bs-border-radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.lists-filter {
    padding: 0.375rem 1.5rem;
    margin-bottom: 1.5rem;

    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.lists-filter-link {
    color: var(--bs-gray-500);
}

.lists-filter-link.active {
    color: var(--bs-danger) !important;
}

/* -------------------------------- #Payment -------------------------------- */
/* collapse */
.payment-collapse {
    color: var(--bs-emphasis-color);
    background-color: var(--bs-light-bg-subtle);

    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);

    padding: 1.5rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

/* form */
.payment-form {
    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.payment-form input {
    border: 0;
}

/* ----------------------------- #User-Comments ----------------------------- */
.lists-nav {
    padding: 0 1.5rem;

    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

.lists-link {
    margin-bottom: 0 !important;
    font-weight: 500;
    font-variation-settings: "wght" 500;
    padding: 1rem 1.5rem;
    color: var(--bs-gray-500);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.lists-link.active,
.lists-link.active:hover {
    color: var(--bs-danger) !important;
}

.lists-link:hover {
    color: var(--zinc-800) !important
}

/* ------------------------------ #Transactions ----------------------------- */
.transactions-heading {
    font-size: 1.25rem;
    font-weight: bold;
    font-variation-settings: "wght" 700;

    background-color: var(--bs-body-bg);
    color: var(--bs-gray-500);

    border-bottom: 1px solid var(--bs-border-color);

    padding: 1rem 0;
    margin-bottom: 1rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;

    position: sticky;
    top: 0;
}

.transactions-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    font-weight: 500;
    font-variation-settings: "wght" 500;

    color: var(--bs-gray-500);

    margin-bottom: 0.5rem;
}

.transactions-panel {
    background-color: var(--bs-body-bg);

    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);

    padding: 1.5rem;
    padding-top: 0;
    margin-bottom: 1rem;

    height: 100%;
    max-height: 40rem;
    overflow-y: auto;
}

.transactions-col {
    background-color: var(--bs-body-bg);

    border: 1px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);

    padding: 1rem 1rem;
    margin-bottom: 1rem;

    height: 100%;
    max-height: 40rem;
    overflow-y: auto;
}

.transactions-col:last-child {
    margin-bottom: 0;
}

.transactions-row {
    margin-bottom: 1.5rem;
}

.transactions-item {
    border-bottom: 1px solid var(--bs-border-color);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.transactions-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.transactions-text {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;

    font-size: 1.25rem;
    font-weight: 500;
    font-variation-settings: "wght" 500;
}

/* --------------------------------- #Wallet -------------------------------- */
.wallet-container {
    padding: 1.5rem 0 8rem 0;
    position: relative;
    border-radius: var(--visual-border-radius);
    background-color: var(--bs-light-bg-subtle);
}

.wallet-container .main {
    background-color: var(--bs-light-bg-subtle);
}

/* wallet nav */
.wallet-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
}

.wallet-nav .btn {
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-width: 2px;
    background-color: var(--bs-body-bg);
    border-color: var(--bs-gray-100);
    justify-content: start;
}

.wallet-nav .btn:hover {
    border-color: var(--bs-gray-300);
}

[data-bs-theme=dark] .wallet-nav .btn {
    border-color: var(--bs-gray-900);
}

[data-bs-theme=dark] .wallet-nav .btn:hover {
    border-color: var(--bs-gray-700);
}

.wallet-nav .btn.active {
    border-color: var(--bs-primary);
}

/* wallet pills */
.wallet-pills {
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wallet-pills.nav-pills .nav-link {
    background-color: transparent;
    color: var(--bs-emphasis-color) !important;
    border: 2px solid transparent;
    opacity: 0.5;

    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.wallet-pills.nav-pills .nav-link.active,
.wallet-pills.nav-pills .show > .nav-link {
    opacity: 1;
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

/* wallet panels */
.wallet-panels .wallet-divider {
    position: relative;
    text-align: center;
    padding: 1rem 0;
    z-index: 1;
}

.wallet-panels .wallet-divider span {
    background-color: var(--bs-light-bg-subtle);
    color: var(--bs-dark);
    padding: 0 1rem;
}

[data-bs-theme=dark] .wallet-panels .wallet-divider span {
    color: var(--bs-light);
}

.wallet-panels .wallet-divider::before {
    content: '';
    width: 100%;
    height: 1px;
    background-color: var(--bs-gray-200);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

[data-bs-theme=dark] .wallet-panels .wallet-divider::before {
    background-color: var(--bs-gray-700);
}

.wallet-panels .tab-pane {
    background-color: var(--bs-light-bg-subtle);
    padding: 1.5rem;
    padding: 3rem;
    border-radius: var(--bs-border-radius);
}

.wallet-panels input.btn-check[type="radio"] + label {
    background-color: var(--bs-light);
    border: 1px solid var(--bs-gray-200);
}

[data-bs-theme=dark] .wallet-panels input.btn-check[type="radio"] + label {
    background-color: var(--bs-dark);
    border-color: var(--bs-gray-700);
}

.wallet-panels input.btn-check[type="radio"]:checked + label {
    background-color: var(--bs-secondary);
    /* border-color: var(--bs-danger); */
    color: var(--bs-light);
}

/* wallet bill tabs */
.wallet-billTab {
    width: 100%;
    max-width: 100%;

    gap: 1.5rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;

    overflow-x: scroll;
    flex-wrap: nowrap;
}

.wallet-billTab.nav-pills .nav-link {
    width: 6rem;
    white-space: nowrap;
    color: var(--bs-emphasis-color) !important;

    opacity: 0.75;
    filter: grayscale(1);

    font-weight: 500;
    font-variation-settings: "wght" 500;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 1rem;
}

.wallet-billTab.nav-pills .nav-link:hover {
    background-color: var(--bs-light-bg-subtle);
}

.wallet-billTab.nav-pills .nav-link.active,
.wallet-billTab.nav-pills .show > .nav-link {
    background-color: transparent !important;

    opacity: 1;
    filter: grayscale(0);
}

/* wallet bill pane */
.wallet-billContent {
    width: 100%;
}

.wallet-billContent > .tab-pane {
    width: 100%;
    background-color: var(--bs-light-bg-subtle);
    padding: 1.5rem;
}

/* wallet internet */
.wallet-panels.wallet-panels-internet .tab-pane {
    background-color: transparent;
    padding: 0;
}

.wallet-panels-internet .wallet-category-nav {
    margin-bottom: 1.5rem;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;

    flex-wrap: nowrap;
    overflow-x: auto;
}

.wallet-panels-internet .wallet-category-link {
    border-width: 2px;
}

.wallet-panels-internet .wallet-category-link.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
}

.wallet-panels-internet .wallet-category {
    margin-bottom: 1.5rem;
}

.wallet-panels-internet .wallet-category-box {
    width: 100%;
    height: 100%;
    color: var(--bs-emphasis-color);

    display: flex;
    flex-direction: column;

    border: 2px solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);

    transition: border-color 0.15s ease-in-out;
}

.wallet-panels-internet .wallet-category-box:hover {
    border-color: var(--bs-primary);
}

.wallet-panels-internet .wallet-category-boxContent {
    width: 100%;
    flex-grow: 1;
    padding: 1rem;
}

.wallet-panels-internet .wallet-category-boxHeader {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;

    margin-bottom: 1rem;
}

.wallet-panels-internet .wallet-category-boxLogo img {
    max-width: 50px;
}

.wallet-panels-internet .wallet-category-boxTime {
    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.wallet-panels-internet .wallet-category-boxTitle {
    font-weight: 500;
    font-variation-settings: "wght" 500;

    margin-top: 3rem;
}

.wallet-panels-internet .wallet-category-boxFooter {
    width: 100%;
    min-height: 3rem;
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.wallet-panels-internet .wallet-category-boxFooter:after {
    content: "";

    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;

    background-color: var(--bs-light-bg-subtle);
    background: repeating-linear-gradient(-45deg, var(--bs-light-bg-subtle), var(--bs-light-bg-subtle) 3px, transparent 3px, transparent 6px);
}

.wallet-panels-internet .wallet-category-boxPrice {
    flex-grow: 1;

    font-weight: 500;
    font-variation-settings: "wght" 500;
}

.text-decoyab-home {
    color: #FF3903 !important;
}

.bg-decoyab-home {
    background-color: #FF3903 !important;
}

.bg-green-00b536 {
    background-color: #00b536 !important;
}

.bg-footer-gradient-primary {
    background-image: linear-gradient(90deg, #0079b1, #1b3570);
}

a {
    color: #0a6aa1;
}

a.nav-link {
    color: #ff5537 !important;
}

a.nav-link.active {
    color: white !important;
    background-color: #ff5537 !important;
}

.icon-link.link-light:hover {
    color: #FF3903 !important;
    /*border-bottom: 1px solid #FF3903 !important;*/
    text-decoration: none;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}

a.link-light:hover {
    color: #FF3903 !important;
    /*border-bottom: 1px solid #FF3903 !important;*/
    text-decoration: none;
    transition: color 0.3s ease-in-out, text-decoration 0.3s ease-in-out;
}


.btn-outline-primary {
    color: #FF3903 !important;
    border-color: #FF3903 !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: #FF3903 !important;
}

button.btn.btn-lg.btn-primary.footer-goToTop:hover {
    color: #fff !important;
    background-color: #FF3903 !important;
}

.border-color-decoyab-home {
    border-color: #FF3903 !important;
}

.font-size-45 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.icon-link-img {
    width: 16.25px;
    height: 16.25px;
    object-fit: cover;
}

.bg-service-button {
    background-color: #f3f4f6 !important;
}

.fs-service-title {
    font-size: 20px !important;
}

.fs-service-description {
    font-size: 15px !important;
}

.fs-service-icon {
    font-size: 50px !important;
}

.text-color-service-title {
    color: #444444 !important;
}

.text-color-service-description {
    color: #616161 !important;
}

.bg-dervice-section-decoyab {
    background-color: #FAF6F4 !important;
}

.link-clube-dynamic:hover {
    border: 1px solid #444444 !important;
}

.footer-gradient {
    background: linear-gradient(to bottom, #D9D9D9, #FFFFFF);
}

.text-color-zoghali {
    color: #444444 !important;
}

.bg-color-zoghali {
    background-color: #444444 !important;
}

.bg-color-fcfcfc {
    background-color: #fcfcfc !important;
}

.nav-bar-border-bfbfbf {
    border-top: 1px solid #bfbfbf !important;
}

.offbody-menu-slidelink:hover {
    color: #FF3903 !important;
}

.btn-primary-blue {
    --bs-btn-color: #fff !important;
    --bs-btn-bg: #0d6efd !important;
    --bs-btn-border-color: #0d6efd !important;
    --bs-btn-hover-color: #fff !important;
    --bs-btn-hover-bg: #0b5ed7 !important;
    --bs-btn-hover-border-color: #0a58ca !important;
    --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
    --bs-btn-active-color: #fff !important;
    --bs-btn-active-bg: #0a58ca !important;
    --bs-btn-active-border-color: #0a53be !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
    --bs-btn-disabled-color: #fff !important;
    --bs-btn-disabled-bg: #0d6efd !important;
    --bs-btn-disabled-border-color: #0d6efd !important;
}

.btn-light-white {
    --bs-btn-color: #000;
    --bs-btn-bg: #f8f9fa;
    --bs-btn-border-color: #f8f9fa;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #d3d4d5;
    --bs-btn-hover-border-color: #c6c7c8;
    --bs-btn-focus-shadow-rgb: 211, 212, 213;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #c6c7c8;
    --bs-btn-active-border-color: #babbbc;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000;
    --bs-btn-disabled-bg: #f8f9fa;
    --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-warning-yellow {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning-yellow:hover {
    color: #fff;
    background-color: #e0a800;
    border-color: #d39e00;
}

.bg-warning-yellow {
    background-color: #ffc107 !important;
}

.text-warning-yellow {
    color: #ffc107 !important;
}

.btn-outline-warning-yellow {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning-yellow:hover {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107;
}


/*.ti-circle-filled.border.rounded-pill {*/
/*    color: #FF3903 !important;*/
/*}*/

/* به طور پیش‌فرض نمایش گیف بزرگ */
.gif-small {
    display: none; /* مخفی کردن گیف کوچک */
}

.gif-large {
    display: block; /* نمایش گیف بزرگ */
}

/* نمایش گیف کوچک فقط در موبایل */
@media (max-width: 767px) {
    .gif-large {
        display: none; /* مخفی کردن گیف بزرگ در موبایل */
    }

    .gif-small {
        display: block; /* نمایش گیف کوچک در موبایل */
    }

    .category-image {
        width: 100% !important;
        height: 100px !important; /* برای ارتفاع خودکار، یا می‌توانید مقدار ثابت مثل height: 150px استفاده کنید */
        border-radius: 15px !important; /* گوشه‌های خمیده */
        object-fit: cover !important; /* حفظ تناسب تصویر */
    }
}

/* نمایش گیف بزرگ فقط در تبلت و دسکتاپ */
@media (min-width: 768px) {
    .gif-small {
        display: none; /* مخفی کردن گیف کوچک در تبلت و دسکتاپ */
    }

    .gif-large {
        display: block; /* نمایش گیف بزرگ در تبلت و دسکتاپ */
    }

    .category-image {
        width: 100% !important;
        height: 138px !important; /* برای ارتفاع خودکار، یا می‌توانید مقدار ثابت مثل height: 150px استفاده کنید */
        border-radius: 15px !important; /* گوشه‌های خمیده */
        object-fit: cover !important; /* حفظ تناسب تصویر */
    }
}

.img-blog-decoyab {
    height: 192px !important;
    object-fit: cover !important;
    width: 100% !important;
}