* {
    margin: 0;
    box-sizing: border-box;
    transition: all 250ms;
}

:root {
    --main-light: #7a3d3d;
    --main-pale: #f5eded;
    --border: #e8dede;
    /* --main:#6e3434; */
    /* --main:#91613c; */
    /* --main:#f8f4ec; */
    /* --main: #765B4C;
    --high-main: #765B4C; */
    --main: #3d3d3d;
    --black: #040404;
    --mid-black: #0404048c;
    --mid-main: #2e2e2e86;
    --low-mid-red: #6823231c;
    --high-red: rgb(214, 17, 17);
    --gray: #a7a7a7;
    --low-gray: #f3f3f3;
    --high-low-gray: #ebebeb28;
    --soft-gray: #e2e1e1a4;
    --mid-gray: #ccc8c85d;
    --main-gray: #EEEEEE;
    --white: #fff;
    --margin-b: 35px;
    --border-r: 35px;
    --main-light: #7a3d3d;
    --main-pale: #f5eded;

    --border: #e8dede;

}

img {
    opacity: 1;
    filter: none;
}

img.loading {
    filter: grayscale(100%);
    opacity: 0.5;

}

button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.card.out-of-stock {

    display: none;
}

.page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 0 !important;
}

.cart {
    padding: 3vw 10vw 200px;
    text-align: center;
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 1000;
    transition: all 250ms;
    overflow-y: auto !important;

    & svg {
        color: var(--high-red) !important;
        stroke: var(--high-red) !important;
    }

    &.open {
        display: block;
        animation: cart 550ms forwards;
    }

    & h2 {
        color: var(--main);
        font-size: 32px;
    }
}

@keyframes cart {

    0% {
        bottom: -100%;
    }

    50% {
        bottom: -70px;
    }

    100% {
        bottom: -90px;
    }
}

.close-cart {
    & svg {
        width: 36px;
        height: 36px;
        color: var(--high-red);
        transition: all 250ms;

        &:hover {
            color: var(--main);
        }
    }
}

.cart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

body:has(.cart.open) {
    overflow: hidden;
}

.head-links a {
    position: relative;
    /* &::after{
        position: absolute;
        content: "";
        background-color: var(--main);
        height: 2px;
        width:0;
        bottom: -3px;
right: 0;
transition: all 250ms ease-in;
    }
    &:hover::after{
        width: 100%;
    } */

}

button,
select,
option,
label {
    padding: 0;
    -webkit-tap-highlight-color: transparent !important;
}

svg {
    width: 28px;
    height: 28px;
}

::-webkit-scrollbar {
    width: 12px;
    height: 25px;
}

::-webkit-scrollbar-track {
    background-color: var(--low-mid-red);
}

::-webkit-scrollbar-thumb {
    background-color: var(--mid-main);
    transition: all 250ms;

}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--main);
}

a {
    color: inherit;
    text-decoration: none;
    font-family: inherit;
}

.links {
    transition: all 250ms;

    &:hover {
        color: var(--main);
    }
}

@font-face {
    font-family: "Dana";
    src: url("../fonts/dana-medium.ttf") format("truetype");
}

@font-face {
    font-family: "kalameh";
    src: url("../fonts/k-num.ttf") format("truetype");
}

@font-face {
    font-family: "anjoman";
    src: url("../fonts/anjoman.ttf") format("truetype");
}

@font-face {
    font-family: "IranYekan";
    src: url("../fonts/iranyekan.ttf") format("truetype");
}

@font-face {
    font-family: "bkoodak";
    src: url("../fonts/b-koodak.ttf") format("truetype");
}

html,
body {
    height: 100%;
}

body {
    font-family: "kalameh", "Dana", "anjoman", sans-serif;
    background-color: var(--white);
    position: relative;
    /* overflow: hidden; */
    /* margin-top: 120px; */

    overflow-x: hidden;

    display: flex;
    flex-direction: column;
    margin-top: 110px;
    animation: mb 1s forwards;
}

main {
    flex: 1;
    margin-bottom: var(--margin-b);
}

header.disabled {}

.header {
    position: fixed;
    top: 0;
    /* position: fixed;
    top: 0;
     */
    z-index: 9998;
    width: 100%;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3px);
    background-color: #f5f5f5f3;
    transition: all 250ms;

    &.disabled {
        display: none;
    }

    /* position: relative; */
}

.header-contents {
    padding: 10px 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head-left-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.head-left-section h1 {
    color: var(--main);
    /* text-shadow: 1px 1px 1px var(--black); */
    font-size: 20px;
    min-width: 110px;
}

.head-left-section img {
    width: 140px;
    height: auto;
}

.head-images svg {
    width: 140px;
    height: auto;
    direction: ltr;
}

.head-links {
    display: flex;
    gap: 10px;
    margin-left: 20px;
    position: relative;
}

.indicator {
    position: absolute;
    bottom: -5px;
    height: 2px;
    background: var(--main);
    border-radius: 5px;
    transition: all 0.4s ease;
    opacity: 0;
}

.head-links a {
    color: #000;
    font-size: 15px;
    transition: all 250ms;
    text-decoration: none;
    font-weight: 600;
    /* text-shadow: 1px 1px 1px var(--mid-main); */
}

.head-links a:hover {
    color: var(--main);
}

.brand-title {
    font-size: 16px;
}

.brand-top {
    /* margin: 20px 20px 0 0; */
    padding: 10px;
    background: var(--main-gray);
    color: var(--black);
}

.breadcrumb {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
    color: var(--main);
    display: flex;
    align-items: center;
    gap: 3px;
}

.brand-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.search {
    position: relative;
}

.search svg {
    color: var(--mid-black);
    position: absolute;
    left: 2%;
    top: 20%;
    transition: all 250ms;
}

.search input {
    width: 15vw;
    height: 45px;
    border: 1px solid var(--mid-main);
    outline: none;
    padding: 0 10px;
    font-size: 16px;
    border-radius: 13px;
    transition: all 250ms;

    &:hover {
        border-color: var(--main);
    }
}

.btn-trigger svg {
    width: 24px;
    height: 24px;
    color: var(--black);
    stroke-width: 1.5px;
    transition: all 250ms;

}


.btn-trigger:hover svg {
    color: var(--main);
    stroke-width: 4px;
}

.search input::placeholder {
    font-weight: 200;
    font-size: 15px;
}

.search input:focus {
    height: 70px;
    animation: searchborder 3500ms infinite;
    /* width: 100vw; */

    z-index: 10000;
}

.search:has(input:focus) svg {
    color: var(--main);
    left: 2%;
    top: 30%;
}

@keyframes searchborder {
    0% {
        box-shadow: 0 -1px 0px rgba(165, 60, 60, 0.297);

    }

    25% {
        box-shadow: 1px 0px 0px rgba(165, 60, 60, 0.297);

    }

    50% {
        box-shadow: 0px 1px 0px rgba(165, 60, 60, 0.297);

    }

    75% {
        box-shadow: -1px 0px 0px rgba(165, 60, 60, 0.297);

    }

    100% {
        box-shadow: 0 -1px 0px rgba(165, 60, 60, 0.297);

    }
}

/* body:has(.search input:focus)  .overlay{
    opacity: 1;
    visibility: visible;
} */
input,
button,
input::placeholder,
select,
textarea::placeholder {
    font-family: "Kalameh" !important;
    font-weight: 600;
}

.hidden {
    display: none;
}

.head-right-section {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction: row-reverse;
}

.menu-btn,
.cart-btn,
.btn-trigger {
    padding: 2px !important;
    ;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-search-form {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
}

.menu-search {
    position: relative;
}

.search-dropdown {
    width: 100%;
    max-height: 0;
    /* position: relative;
top: 0; */
    position: fixed;

    z-index: 9999;
    background: #fff;
    border-top: 1px solid var(--soft-gray);
    border-radius: 0 0 12px 12px;
    /* box-shadow: 0 8px 32px rgba(0,0,0,.14); */
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: all 150ms ease-out;
    visibility: hidden;
}

.breadcrumb-bar {
    background-color: var(--main-gray);
    padding: 20PX 10PX !important;
}

.menu-search-dropdown {
    width: 100%;
    max-height: 0;


    z-index: 9999;
    background: #fff;
    border-top: 1px solid var(--soft-gray);
    border-radius: 0 0 12px 12px;
    /* box-shadow: 0 8px 32px rgba(0,0,0,.14); */
    overflow: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: all 150ms ease-out;
    visibility: hidden;
}

.search-dropdown.open {
    max-height: 420px;
    visibility: visible;
}

.menu-search-dropdown.open {
    max-height: fit-content;
    visibility: visible;
}

body:has(.search-dropdown.open) .overlay {
    opacity: 1;
    visibility: visible;
}

.sd-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 10px 45px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f3f3f3;
    transition: background .15s;
}

.sd-item:last-child {
    border-bottom: none;
}

.sd-item:hover {
    background: #f7f9ff;
}

.sd-img {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 8px;
    object-fit: contain;
    background: #f5f5f5;
}

/* .sd-info { flex: 1; min-width: 0; } */
.sd-brand {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sd-model {
    font-size: 13px;
    font-weight: bold;
    color: #1e2a3a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sd-price {
    font-size: 12px;
    color: var(--main);
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
}

.sd-price .sd-off {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    border-radius: 6px;
    padding: 1px 5px;
    font-size: 10px;
    margin-right: 4px;
    font-weight: 600;
}

.sd-empty {
    padding: var(--border-r);
    text-align: center;
    font-size: 13px;
    color: #aaa;
}

.sd-footer {
    display: block;
    padding: 10px;
    text-align: center;
    font-size: 12px;
    color: var(--main);
    border-top: 1px solid #eee;
    text-decoration: none;
    background: #f7f9ff;
}

.sd-footer:hover {
    background: #e8f0fe;
}

.sd-loading {
    padding: var(--border-r);
    text-align: center;
    font-size: 12px;
    color: #aaa;
}

.menu-btn,
.cart-btn,
.close-menu-btn {

    width: auto;
    height: auto;
    background: none;
    outline: none;
    border: none;
}

.search-hero {
    padding: 20px 16px 0;
}

.search-form {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
    border-bottom: 1px solid #eee;
}

.search-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid #ddd;
    border-radius: 24px;
    font-family: Tahoma;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.search-form input:focus {
    border-color: var(--black);
}

.search-form button {
    padding: 10px 20px;
    background: var(--main);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-family: Tahoma;
    font-size: 13px;
    cursor: pointer;
}

.search-meta {
    padding: 10px 16px;
    font-size: 13px;
    color: #888;
}

.search-meta strong {
    color: #1e2a3a;
}

.no-result {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-result h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.no-result p {
    font-size: 13px;
    line-height: 2;
}

.suggest-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
}

.suggest-link {
    padding: 7px 16px;
    border-radius: 20px;
    background: #f0f4ff;
    color: #3a7bd5;
    font-size: 13px;
    text-decoration: none;
}

.suggest-link:hover {
    background: #3a7bd5;
    color: #fff;
}

.close-menu-btn {
    display: flex;
    align-items: center;
}

.close-menu-btn h4 {
    color: var(--high-red);
}

.close-menu-btn>* {
    transition: all 250ms;
}

.close-menu-btn:hover h4,
.close-menu-btn:hover svg {
    color: var(--white) !important;
}

.menu-btn svg,
.cart-btn svg {
    color: var(--black);
    width: 24px;
    height: 24px;
    transition: all 250ms;
}

.menu-btn svg:hover,
.cart-btn svg:hover {
    stroke: var(--main);
    color: var(--main);
    cursor: pointer;
    stroke-width: 3px;
}

.menu-wrapper {
    position: relative;
}

.page-hr-title {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* main menu */
.menu {
    position: fixed;
    top: 50%;
    left: 0;
    width: 350px;
    height: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    transform: translate(-100%, -50%);
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    transition: all 300ms cubic-bezier(.33, .29, 0, .98);
    padding: 22px;
    border-radius: 50px;

}

.menu.open {
    transform: translate(0%, -50%);
    border-radius: 0px;

    opacity: 1;
    visibility: visible;
    width: 600px;
    height: 100%;
    overflow-y: auto;
}

body:has(.menu.open) .header {
    z-index: 5555;
}

.close-menu-btn svg {
    width: 32px;
    height: 32px;
    color: var(--high-red);
}

button {
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.login-btn {
    background: none;
    border: 1px solid var(--mid-main);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 130px;
    height: 45px;
    margin-left: 12px;
    position: relative;
    transition: all 250ms;
    position: relative;
    overflow: hidden;
    font-size: 15px;
    font-weight: normal;

    &::before {
        content: "";
        position: absolute;
        background-color: var(--main);

        left: 50%;
        top: 0;
        transform: translate(-50%, -100%) scale(0);

        height: 150px;
        width: 150px;

        z-index: -1;
        border-radius: 50%;
        opacity: 0;

        transform-origin: center center;
        transition: transform 250ms ease-in, opacity 250ms ease-in;
    }

    &:hover::before {
        top: 50%;
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }

    &:hover,
    &:hover svg {
        color: var(--white);
    }
}

#backToTop {
    width: 50px;
    height: 50px;
    background-color: var(--main);
    border-radius: 100vw;
    position: fixed;
    bottom: 30px;
    left: -30px;
    z-index: 9996;
    transition: all 250ms ease-in;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;

    & svg {
        width: 28px;
        height: 28px;
        color: var(--white);
        stroke-width: 2px;
    }

    &.show {
        opacity: 1;
        visibility: visible;
        left: 30px;
        box-shadow: 0 0px 7px rgba(0, 0, 0, 0.9);

        &::after {
            animation: backtotop 600ms ease-out forwards;
            position: absolute;
            content: "";
            background-color: var(--main);
            border-radius: 100vw;
            width: 100%;
            height: 100%;
            opacity: 1;
            inset: 0;
        }
    }
}

@keyframes backtotop {
    to {
        opacity: 0;
        scale: 1.5;
    }
}


.login-btn::after {
    position: absolute;
    left: 0;
    height: 80%;
    background-color: rgba(0, 0, 0, 0.4);
    width: 1px;
    content: '';
    transform: translateX(-15px);

}

svg {
    width: 24px;
    height: 24px;
}

.login-btn svg {

    width: 24px;
    height: 24px;
    color: var(--black);
}

.bottom-holder {
    width: 90%;
    /* padding: 20px; */
    margin-left: auto;
    margin-right: auto;
    height: 60px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    position: fixed;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    flex-wrap: nowrap;
    border-radius: 30px;
    overflow: hidden;
    transition: all 250ms;
    background: rgba(226, 224, 224, 0.7);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(216, 216, 216, 0.57);

    z-index: 4999;
    transition: all 250ms;

    &.disabled {
        display: none;
    }
}

.none-border {
    border-left: none !important;
    border-right: none !important;
}

.bottom-card:nth-child(2) {

    border-left: 1px solid var(--mid-main);
    border-right: 1px solid var(--mid-main);
}

.bottom-card:nth-child(3) {
    border-left: 1px solid var(--mid-main);

}

.bottom-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1px;
    color: var(--main);
    font-size: 11px;
    transition: all 200ms 40ms;
    padding: 3px 10px;
    color: inherit;
    text-decoration: none;
    font-weight: 600;

}

.bottom-card:last-child {
    border: none;
}

.bottom-card:hover {
    background-color: var(--mid-main);
    cursor: pointer;
}

.bottom-card svg {
    width: 26px;
    height: 26px;
    color: var(--main);
}

.cart-bottom-icon {
    stroke-width: 20px;
}

.overlay {
    background-color: var(--mid-black);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9997;
    visibility: hidden;
    opacity: 0;
    transition: all 400ms ease-out;
}

.menu.open+.overlay {
    visibility: visible;
    opacity: 1;
}

.menu-closemenu {
    display: flex;
    width: 100%;
    justify-content: left;
    position: relative;
}

.menu-closemenu::after {
    position: absolute;
    bottom: -10px;
    content: "";
    background-color: #eeeeeea2;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);

}

.menu-search {
    width: 100%;
    height: 100px;

}

.menu-search input {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    background: none;
    outline: none;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

.menu-search input:focus {
    border: none;
    outline: none;
}

.menu-search::after {
    position: absolute;
    bottom: 2px;
    content: "";
    background-color: #eeeeeea2;
    width: 100%;
    height: 1px;
    left: 50%;
    transform: translateX(-50%);

}

.menu-search {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.menu-search svg {
    transition: all 250ms;
    color: var(--white);
}

.menu-search svg:hover {

    cursor: pointer;
    stroke-width: 4px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-links {
    margin-top: 15px;
    display: flex;
    justify-content: right;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    gap: 10px;
    padding-bottom: 5px;

}

.menu-link-btn {
    height: 32px;
    color: var(--high-red) !important;
    display: block;
    transition: all 250ms 20ms;
    position: relative;
    border: none;
    outline: none;
    font-size: 15px;
    width: 100%;
    font-weight: 600 !important;
    text-align: right;
    background: transparent;

}

.btn-menu-holder {
    display: flex;
    align-items: center;
    justify-content: space-between;

    & h3 {
        font-size: 15px;
        font-weight: 600 !important;
    }

    & svg {
        width: 32px;
        height: 32px;
        color: var(--high-red) !important;
        transition: all 250ms;

        &.active {
            transform: rotate(180deg) !important;
        }
    }

}

.open-side-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px rgba(255, 255, 255, 0.25);
    width: 46px;
    height: 100%;

    &:hover {
        box-shadow: 2px 2px rgba(255, 255, 255, 0.5);


    }

}

.menu-side-btn {
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.menu-side-btn a {
    display: block;
    text-align: center;
    padding: 8px 0;
    color: var(--gray) !important;
    font-weight: 600 !important;

    border-bottom: 1px solid var(--soft-gray);

    &:hover {
        color: var(--white);
    }
}

.menu-side-btn a:hover {
    color: var(--white) !important;
}

.menu-link-btn {
    box-shadow: 2px 2px rgba(255, 255, 255, 0.25);
}

.menu-link-btn:hover {
    box-shadow: 2px 2px rgba(255, 255, 255, 0.5);
}

.menu-link-btn:hover a::after {
    width: 100%;
    background-color: var(--white);
}

/* #user-account-link{
    position: absolute;
    bottom: 30px;menu-link-btn
    color: var(--main);
} */
.menu-btn-holder {
    width: 100%;
    transition: all 250ms;

}

/* #brands{
    height: 100px;
    visibility: visible;
    opacity: 1;
 } */
.login-btn {
    font-family: "Dana" !important;
    font-weight: 100 !important;
    font-size: 13px;
}

.menu-link-btn {
    color: var(--high-red);
}

/* #brands.open  {
    height: 100px;
    visibility: visible;
    opacity: 1;
 } */
.menu-link {
    display: grid;
    grid-template-rows: 0fr;
    transition: all 250ms;
}

.menu-btn-holder:has(.open-side-btn.open) .menu-link {
    grid-template-rows: 1fr;

}

.menu-links button:hover {
    color: var(--main);
}

.cls-1 {}

.cls-1,
.cls-2 {
    font-family: "kalameh";
    font-weight: 1000;
    font-size: 45.38px;
    text-shadow: 1px 1px 1px var(--mid-main);
    transition: all 250ms;

}

.cls-1,
.cls-2,
.cls-3 {
    fill: #633333;
}

.cls-4 {
    fill: #fff;
}

.cls-4,
.cls-3,
.cls-5 {
    stroke: #231f20;
    stroke-miterlimit: 10;

}

body:has(.brand-logo:hover) .cls-5 {
    transform: scale(1.01);
}

.cls-5 {
    fill: #040504;
}


#category-bottom {
    animation: tofill 750ms forwards;
}

@keyframes tofill {
    from {
        fill: none;
    }

    to {
        fill: var(--main);
        color: var(--main);
    }
}

.page-hero {
    background: linear-gradient(135deg, var(--main) 0%, var(--main-light) 100%);
    color: #fff;
    padding: 28px 20px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 20px;
    margin: 0 0 6px;
}

.page-hero p {
    font-size: 13px;
    opacity: .85;
    margin: 0;
}

.discount-badge-hero {
    display: inline-block;
    background: #fff;
    color: var(--main);
    font-size: 13px;
    font-weight: bold;
    padding: 4px 14px;
    border-radius: 20px;
    margin-top: 10px;
}

.filter-bar {
    display: flex;
    /* width: 100%; */
    overflow-x: auto;
    align-items: center;
    padding: 0;
    flex-wrap: nowrap;
    gap: 5px;
    border-bottom: 1px solid var(--soft-gray);
    background-color: var(--main-gray);
    /* justify-content: space-evenly; */
    scrollbar-width: none;

    &::-webkit-scrollbar-thumb {
        display: none;
    }
}

:root {
    --sf-red: var(--main);
    --sf-dark: #040404;
    --sf-white: #fff;
    --sf-gray: #f5f3f3;
    --sf-border: #ece8e8;
    --sf-text: #444;
}

.info-wrap {
    width: 90%;
    margin: var(--margin-b) auto;
    background-color: var(--low-gray);
    border-radius: var(--border-r);
    padding: 40px;
}

.info-title {
    font-size: 26px;
    padding-right: 10px;
    border-right: 4px solid var(--main);
    margin: 15px 0;
    font-weight: 100 !important;
}

.sf-form {
    background-color: var(--main-gray);

    direction: rtl;
    font-family: "Dana", sans-serif;
    width: 100%;
}

/* ── نوار بالا ── */
.sf-bar {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 8px;
    padding: 12px 16px;
    flex-wrap: wrap;
}

.sf-bar__right {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ── dropdown مشترک ── */
.sf-dropdown-wrap {
    position: relative;
}

.sf-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: .83rem;
    cursor: pointer;
    color: #444;
    white-space: nowrap;
    transition: border-color .2s;
}

.sf-dropdown-btn:hover,
.sf-dropdown-wrap.open .sf-dropdown-btn {
    border-color: var(--main);
    color: var(--main);
}

.sf-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    min-width: 150px;
    z-index: 200;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: all .2s;
}

.sf-dropdown-wrap.open .sf-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    max-height: 260px;
    transform: translateY(0);
}

.sf-dd-opt {
    padding: 10px 16px;
    font-size: .83rem;
    cursor: pointer;
    transition: background .15s;
    color: #333;
    white-space: nowrap;
}

.sf-dd-opt:hover {
    background: var(--low-gray);
}

.sf-dd-opt.active {
    background: var(--main);
    color: #fff;
}

/* ── دکمه فیلتر ── */
.sf-filter-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 40px;
    padding: 0 18px;
    border: none;
    border-radius: 10px;
    background: var(--main);
    color: #fff;
    font-family: inherit;
    font-size: .85rem;
    cursor: pointer;
    position: relative;
    transition: background .2s;
}

.sf-filter-btn:hover {
    background: var(--mid-main);
}

.sf-filter-badge {
    position: absolute;
    top: -6px;
    left: -6px;
    background: #040404;
    color: #fff;
    font-size: 10px;
    min-width: var(--border-r);
    height: var(--border-r);
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* ── تگ‌های فعال ── */
.sf-active-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 16px 12px;
    align-items: center;
}

.sf-active-tag {
    height: 28px;
    padding: 0 12px;
    background: #f5eded;
    color: var(--main);
    border-radius: 99px;
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
}

.sf-clear-all {
    height: 28px;
    padding: 0 12px;
    background: none;
    color: var(--main);
    border-radius: 99px;
    font-size: .75rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 1px solid var(--main-gray);
    transition: all .15s;
}

.sf-clear-all:hover {
    color: var(--main);
    border-color: var(--main);
}

/* ── overlay ── */
.sf-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, .5);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
    backdrop-filter: blur(2px);
}

.sf-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ── پنل ── */
.card {
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: all 400ms !important;
}

.card.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ── پنل ── */
#carthd-badge {
    right: -5px;
}

.sf-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(600px, 100vw);
    height: 100%;
    background: #fff;
    z-index: 55555;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
    padding: 80px 30px 30px;
    font-family: "Kalameh" !important;
    font-weight: 600 !important;
    overflow-y: auto;
}

.sf-pannel__head {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    box-shadow: 3px 0 5px rgba(0, 0, 0, 0.2);
    padding: 15px 30px;
}

.close-sfp {
    padding: 5px;
    border-radius: 8px;
    background-color: var(--low-gray);
}

.sf-range-wrap {
    position: relative;
    height: 36px;
    margin-bottom: 16px;
}

.sf-range-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 99px;
    pointer-events: none;
}

.sd-price h5 {
    font-size: 13px;
}

.sf-range-fill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: var(--main);
    border-radius: 99px;
    pointer-events: none;
}

.sf-range-input {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    outline: none;
}

.sf-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid var(--main);
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .15);
    transition: transform .15s, box-shadow .15s;
}

.sf-panel__foot {
    display: flex;
    gap: 10px;
    padding: 14px 20px;
    border-top: 1.5px solid #f0f0f0;
    flex-shrink: 0;
}

.sf-reset {
    flex: 1;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f5f5f5;
    color: #444;
    text-decoration: none;
    font-size: .85rem;
    transition: background .15s;
}

.sf-reset:hover {
    background: #e8e8e8;
}

.sf-apply {
    flex: 2;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: var(--main);
    color: #fff;
    font-family: "kalameh", sans-serif;
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
}

.sf-apply:hover {
    filter: brightness(.9);
}

.sf-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.sf-range-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sf-range-val {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.sf-range-val span {
    font-size: .7rem;
    color: #aaa;
}

.sf-range-val strong {
    font-size: .88rem;
    font-weight: 700;
    color: var(--main);
}

.sf-range-sep {
    font-size: .75rem;
    color: #ccc;
}

.sf-panel.open {
    transform: translateX(0);
}

body:has(.sf-panel.open) {
    overflow: hidden;
}

.sf-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 20px 20px;
    display: flex;
    flex-direction: column;
}

.sf-panel__body::-webkit-scrollbar {
    width: 3px;
}

.sf-panel__body::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 99px;
}

/* ── هر بخش ── */
.sf-section {
    border-bottom: 1px solid #f0f0f0;
}

.sf-section__label {
    font-size: .82rem;
    font-weight: 700;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    user-select: none;
}

.sf-section__label small {
    font-weight: 400;
    font-size: .72rem;
    color: #999;
}

/* ── دکمه باز/بسته ── */
.open-fil-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid transparent;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .2s, background .2s;
}

.open-fil-btn:hover {
    border-color: var(--main);
    background: #fdf5f5;
}

.open-fil-btn svg {
    width: 16px;
    height: 16px;
    stroke: #888;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.open-fil-btn.open svg {
    transform: rotate(-90deg);
}

/* ── انیمیشن chips با grid ── */
.sf-chips-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s cubic-bezier(.4, 0, .2, 1);
}

.sf-chips-wrap.open {
    grid-template-rows: 1fr;
}

.sf-chips-inner {
    overflow: hidden;
}

/* ── chips ── */
.sf-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 4px 0 12px;
}

.srch-meta {
    padding: 10px 16px 4px;
    font-size: .83rem;
    color: #888;
}

.srch-meta strong {
    color: #222;
    font-weight: 700;
}

.srch-empty {
    text-align: center;
    padding: 80px 20px;
}

.srch-empty h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #222;
}

.srch-empty p {
    color: #999;
    margin-bottom: 24px;
    font-size: .9rem;
}

.srch-suggest {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.srch-suggest a {
    padding: 8px 18px;
    border: 1.5px solid #ddd;
    border-radius: 99px;
    color: #444;
    text-decoration: none;
    font-size: .88rem;
    transition: all .15s;
}

.srch-suggest a:hover {
    border-color: var(--main);
    background: var(--main);
    color: #fff;
}

/* sort dropdown — کلاس جدا تا sections.js دستش نگیره */
.srch-sort-wrap {
    position: relative;
}

.srch-sort-wrap .sf-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 40px;
    padding: 0 14px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    font-size: .83rem;
    cursor: pointer;
    color: #444;
    white-space: nowrap;
    transition: border-color .2s;
}

.srch-sort-wrap .sf-dropdown-btn:hover,
.srch-sort-wrap.open .sf-dropdown-btn {
    border-color: var(--main);
    color: var(--main);
}

.srch-sort-wrap .sf-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    min-width: 160px;
    z-index: 300;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: all .2s;
}

.srch-sort-wrap.open .sf-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    max-height: 280px;
    transform: translateY(0);
}

.srch-sort-wrap .sf-dd-opt {
    padding: 10px 16px;
    font-size: .83rem;
    cursor: pointer;
    transition: background .15s;
    color: #333;
    white-space: nowrap;
}

.srch-sort-wrap .sf-dd-opt:hover {
    background: #f5f5f5;
}

.srch-sort-wrap .sf-dd-opt.active {
    background: var(--main);
    color: #fff;
}

/* tag x button */
.sf-active-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sf-tag-x {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #c9a8a8;
    color: #fff;
    font-size: .65rem;
    text-decoration: none;
    line-height: 1;
    transition: background .12s;
}

.sf-tag-x:hover {
    background: var(--main);
}

.sf-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 12px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    font-size: .78rem;
    cursor: pointer;
    transition: all .15s;
    color: #555;
    user-select: none;
    flex-grow: 1;
}

.sf-chip input {
    display: none;
}

.sf-chip:hover {
    border-color: var(--main);
    color: var(--main);
}

.sf-chip--on {
    background: var(--main);
    border-color: var(--main);
    color: #fff;
}

.sf-chip--on:hover {
    color: #fff !important;
}

/* ── قیمت ── */
.sf-price-section {
    padding: 12px 0 16px;
}

.sf-price-label {
    font-size: .82rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 10px;
}

.sf-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-price-input {
    flex: 1;
    height: 42px;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 0 12px;
    font-family: "Kalameh", "IranYekan", sans-serif;
    font-size: .85rem;
    outline: none;
    transition: border-color .2s;
    direction: ltr;
    text-align: center;
}

.sf-price-input:focus {
    border-color: var(--main);
}

.sf-price-sep {
    color: #ccc;
}

@media (max-width: 500px) {
    .sf-panel {
        width: 100vw;
    }
}

.filter-bar select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: Tahoma;
    font-size: 13px;
    background: #fff;
    appearance: none;
    cursor: pointer;
}

.filter-bar select:focus {
    outline: none;
    border-color: var(--main);
}

.btn-filter {
    padding: 8px var(--border-r);
    background: var(--main);
    color: #fff;
    border: none;
    border-radius: 20px;
    font-family: Tahoma;
    font-size: 13px;
    cursor: pointer;
}

.btn-reset {
    color: #888;
    text-decoration: none;
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 20px;
    border: 1px solid #eee;
}

.result-count {
    padding: 8px 16px;
    font-size: 13px;
    color: #888;
}

.active-tag {
    padding: 5px;
    border-radius: 20px;
    border: 1px solid var(--main);
}

.card {
    position: relative;
    z-index: 1;

    &.out-of-stock {
        order: 99;
    }
}

.outofstock-ovrl {
    color: #cecece;
    position: absolute;
    inset: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);

    & h4 {
        font-size: 45px;
        text-shadow: 0 0 10px rgba(105, 105, 105, 0.5);
        user-select: none;
    }
}

.cart-bottom-svg-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    padding: 3px 10px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cart-bottom-badge {
    width: 15px;
    height: 15px;
    background-color: var(--main);
    border-radius: 100%;
    position: absolute;
    right: 30px;
    top: 0px;
    display: none !important;
    transition: all 200ms;
    animation: lighton 7.2s 1s ease infinite;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Kalameh" !important;
    font-size: 10px;

    &.active {
        display: block !important;
        text-align: center;
    }


}

.cart-sub {
    width: 100%;
    height: 100%;
    z-index: 2;
    flex-direction: column;
}

@keyframes lighton {
    from {
        /* transform: scale(0); */
        opacity: 0;
    }

    to {
        /* transform: scale(1); */
        opacity: 1;
    }

}

body:has(.sf-panel.open) .overlay {
    opacity: 1;
    visibility: visible;
}

body:has(.sf-panel.open) .header {
    z-index: 5554;
}

/* ── Badge روی دکمه سبد ── */
.cart-btn {
    position: relative;
}

.cart-badge-dot {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--main, var(--main));
    color: #fff;
    font-size: 10px;
    font-family: "IranYekan", sans-serif;
    min-width: 17px;
    height: 17px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    transition: transform .2s;
    pointer-events: none;
}

.cart-badge-dot:empty {
    display: none;
}

@keyframes badge-bump {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.4)
    }
}

.badge-bump {
    animation: badge-bump .25s ease;
}

/* ── سر سبد ── */
.cart-head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 1.5px solid #f0f0f0;
    margin-bottom: 12px;
}

.cart-head h2 {
    margin: 0;
    font-size: 1rem;
    font-family: "kalameh", sans-serif;
}

.cart-head__count {
    background: var(--main, var(--main));
    color: #fff;
    font-size: 13px;
    font-family: "Kalameh", "IranYekan", sans-serif;
    min-width: 20px;
    height: 20px;
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.cart-head__count:empty {
    display: none;
}

/* ── بدنه ── */
.cart-body {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-body::-webkit-scrollbar {
    width: 3px;
}

.cart-body::-webkit-scrollbar-thumb {
    background: #e8e8e8;
    border-radius: 99px;
}

/* ── Empty ── */
.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 40px 0;
    color: #ccc;
    font-size: .83rem;
}

.cart-empty p {
    margin: 0;
}

/* ── آیتم ── */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.c-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    background: #fafafa;
    border: 1.5px solid #f0f0f0;
    border-radius: 12px;
    padding: 8px 10px;
    transition: border-color .2s;
}

.c-item:hover {
    border-color: #e0e0e0;
}

.c-item__img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background: #f0f0f0;
}

.c-item__info {
    min-width: 0;
}

.c-item__name {
    font-size: .8rem;
    font-weight: 700;
    color: var(--black, #040404);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.c-item__prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.c-item__final {
    font-size: .8rem;
    font-family: "Kalameh", "IranYekan", sans-serif;
    color: var(--main, var(--main));
    font-weight: 700;
}

.c-item__original {
    font-size: .72rem;
    color: #bbb;
    text-decoration: line-through;
    font-family: "Kalameh", "IranYekan", sans-serif;
}

.c-item__disc {
    font-size: .68rem;
    background: var(--main, var(--main));
    color: #fff;
    border-radius: 99px;
    padding: 1px 6px;
    font-family: "IranYekan", sans-serif;

}

.c-item__subtotal {
    font-size: .7rem;
    color: #aaa;
    margin-top: 2px;
}

/* ── سمت راست آیتم: تعداد + حذف ── */
.c-item__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.c-item__qty {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    background: #fff;
    padding: 8px;

}

.c-item__qty button {
    background: none;
    border: none;
    font-size: 15px;
    line-height: 1;
    padding: 0 2px;
    cursor: pointer;
    color: var(--high-red) !important;
    font-size: 28px !important;
    font-weight: 700;
    transition: opacity .15s;
    /* background-color: var(--main); */
    /* padding: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    font-family: "IranYekan";

    & svg {
        width: 38px !important;
        height: 38px !important;
    }
}

.c-item__qty button:disabled {
    opacity: .3;
    cursor: default;
}

.c-item__qty button:not(:disabled):hover {
    opacity: .65;
}

.c-item__qty span {
    min-width: var(--border-r);
    text-align: center;
    font-size: .8rem;
    font-family: "IranYekan", sans-serif;
}

.c-item__del {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--main) !important;
    font-size: 14px;
    padding: 0;
    line-height: 1;
    transition: color .15s;
}

.c-item__del:hover {
    color: var(--mid-main);
}

/* ── پاورقی ── */
.cart-foot {
    border-top: 1.5px solid #f0f0f0;
    padding-top: 14px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-foot__discount,
.cart-foot__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85rem;
}

.cart-foot__discount {
    color: #2e7d32;
}

.cart-foot__discount-val {
    font-family: "Kalameh", "Kalameh", "IranYekan", sans-serif;
    font-weight: 700;
}

.cart-foot__total-val {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

#cart-bottom {
    position: relative;
    transition: all 250ms;

    &.active {
        fill: var(--main) !important;
    }
}

.bottom-card.active svg {
    fill: var(--main) !important;
    color: var(--main) !important;
}

.cart-foot__total-val strong {
    font-family: "Kalameh", "IranYekan", sans-serif;
    font-size: 1.05rem;
    color: var(--main, var(--main));
}

.cart-foot__total-val small {
    font-size: .72rem;
    color: #888;
}

.cart-checkout-btn {
    display: block;
    background: var(--main, var(--main));
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 12px;
    font-family: "kalameh", sans-serif;
    font-size: .92rem;
    text-decoration: none;
    transition: background .2s;
}

.cart-checkout-btn:hover {
    background: var(--black);
}

@media screen and (max-width:1470px) {
    .search {
        display: none;
    }

    footer {
        padding: 30px !important;
        padding-bottom: 90px !important;
    }


    .header-contents {
        padding: 10px 40px;
    }

    .search input {
        width: 25vw;
    }

}

@media screen and (max-width:1020px) {
    .head-links {
        display: none;
    }

    .sd-item {

        padding: 10px;
        gap: 10px;
    }

    .sd-brand {

        white-space: wrap;

    }

    .sd-price {
        white-space: wrap;
    }

    header {
        /* display: none; */
    }

    .head-left-section {
        gap: 20px;
    }

    .search input {
        border-radius: var(--border-r);
        background-color: #EEEEEE;
        border: none;
    }

    .btn-trigger {
        opacity: 1;
        visibility: visible;
    }

    .search input:focus {
        box-shadow: 0 4px 6px rgba(165, 60, 60, 0.3);
    }

    .login-btn {
        display: none;
    }

    .bottom-holder {
        opacity: 1;
        visibility: visible;
    }

    .menu {
        width: 70vw;

        &.open {
            width: 80vw;

        }
    }


}

@media screen and (max-width:920px) {
    #backToTop {
        width: 45px;
        height: 45px;
        bottom: 90px;
        left: -5%;

        &.show {
            left: 5%;
        }
    }

    body {

        margin-top: 95px;

    }

    .btn-filter,
    .filter-bar select {
        /* width: 100% !important; */
        height: 38px;
    }

    .filter-bar {
        padding: 15px 10px;

    }

    .filter-bar {
        display: flex;
        /* flex-direction: column; */
        /* width: 100%; */
        overflow-x: auto;
        align-items: center;
        flex-wrap: nowrap;
        justify-content: right;
        scroll-snap-type: x mandatory;
        gap: 10px;

        &>* {
            flex: 0 0 110px;

        }

        &::-webkit-scrollbar {
            height: 3px;
        }
    }

    .head-right-section {
        gap: 10px;
    }

    .head-left-section h1 {
        font-size: 18px;
    }

    .header-contents {
        padding: 10px 20px;

    }

    .head-left-section h1 {

        min-width: 80px;
    }

    .head-images {
        scale: 0.8;
    }

    .brand-logo {
        gap: 1px;
    }

    .header-contents {
        padding: 2px 10px;
    }
}

@media screen and (max-width:500px) {
    .cart {
        padding: 7vw 15px 200px;
    }

    .head-left-section {
        gap: 0px;
    }


}

@media screen and (max-width:388px) {
    .head-left-section h1 {
        font-size: 12px;
    }

    .bottom-card {
        font-size: 8px !important;
        font-weight: 500;
    }

}