@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;600;700;800;900&display=swap');

:root {
    --navy: #0d2c59;
    --blue: #0f70b7;
    --orange: #f15a24;
    --ink: #17314e;
    --muted: #668096;
    --line: #dce7ee;
    --paper: #f5f8fa;
    --white: #fff;
    --shadow: 0 18px 48px rgba(13, 44, 89, .1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Nunito Sans", "Vazirmatn", sans-serif;
    line-height: 1.6
}

button, input, select, textarea {
    font-family: "Vazirmatn", sans-serif;
}

a {
    text-decoration: none;
    color: inherit
}

button, input, select {
    font: inherit
}

button {
    cursor: pointer
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap
}

.shop-announcement {
    background: var(--navy);
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 8px
}

.shop-announcement span {
    color: var(--orange);
    margin: 0 14px
}

.shop-header {
    height: 88px;
    width: min(1240px, calc(100% - 48px));
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--paper)
}

.shop-brand {
    width: 136px
}

.shop-brand img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply
}

.shop-nav {
    display: flex;
    gap: 30px;
    color: #607891;
    font-size: 13px;
    font-weight: 800
}

.shop-nav a {
    position: relative;
    padding: 10px 0
}

.shop-nav a.active, .shop-nav a:hover {
    color: var(--navy)
}

.shop-nav a.active:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 24px;
    height: 3px;
    border-radius: 4px;
    background: var(--orange)
}

.shop-actions {
    display: flex;
    align-items: center;
    gap: 10px
}

.shop-icon-button, .shop-cart-button {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--navy)
}

.shop-icon-button:hover, .shop-cart-button:hover {
    border-color: var(--blue);
    color: var(--blue)
}

svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.shop-cart-button b {
    position: absolute;
    top: -4px;
    left: -3px;
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 10px
}

.shop-menu {
    display: none;
    gap: 4px;
    flex-direction: column;
    padding: 10px
}

.shop-menu span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--navy)
}

.shop-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(112deg, #0b2c58 0%, #0c4271 47%, #edf4f8 47.2%, #f5f8fa 100%);
    min-height: 330px;
    color: #fff
}

.shop-hero:after {
    content: "";
    position: absolute;
    left: 38%;
    top: -90px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 28px rgba(255, 255, 255, .03), 0 0 0 58px rgba(255, 255, 255, .025);
    pointer-events: none
}

.shop-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 330px;
    direction: rtl
}

.shop-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #a9d8f2;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em
}

.shop-eyebrow i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 6px rgba(241, 90, 36, .2)
}

.shop-hero h1 {
    font-family: Rubik, "Vazirmatn", sans-serif;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.1;
    letter-spacing: -.06em;
    margin: 18px 0;
    color: var(--blue);
}

.shop-hero h1 em {
    font-style: normal;
    color: #ff9a7e
}

.shop-hero p {
    max-width: 470px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
    margin: 0
}

.shop-hero-note {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    direction: rtl;
    margin-top: 75px;
    margin-left: 40px;
    color: var(--navy)
}

.shop-hero-note span {
    font-family: Rubik, "Vazirmatn", sans-serif;
    font-size: 42px;
    color: var(--orange);
    line-height: 1
}

.shop-hero-note p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    text-align: right;
    direction: rtl
}

.shop-content {
    padding: 52px 0 96px
}

.shop-toolbar {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 30px
}

.shop-result {
    color: #607891;
    font-size: 13px;
    margin-left: auto
}

.shop-result strong {
    color: var(--navy);
    font-size: 22px;
    margin-left: 4px
}

.shop-search {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 250px;
    padding: 0 13px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    color: #7c90a2
}

.shop-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--navy);
    font-size: 12px
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #71869a;
    font-size: 12px
}

.shop-sort select {
    border: 1px solid var(--line);
    border-radius: 5px;
    background: #fff;
    color: var(--navy);
    padding: 11px 12px;
    outline: 0
}

.shop-layout {
    display: grid;
    grid-template-columns:230px 1fr;
    gap: 36px;
    direction: rtl
}

.shop-filters {
    direction: rtl;
    padding: 22px 19px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    align-self: start
}

.filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
    margin-bottom: 18px
}

.filter-head h2 {
    font-family: Rubik, "Vazirmatn", sans-serif;
    color: var(--navy);
    font-size: 18px;
    margin: 0
}

.filter-head button {
    border: 0;
    background: none;
    color: var(--orange);
    font-size: 11px
}

.shop-filters fieldset {
    border: 0;
    padding: 0;
    margin: 0 0 25px
}

.shop-filters legend {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px
}

.shop-filters label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #667e94;
    font-size: 12px;
    margin: 10px 0
}

.shop-filters label b {
    margin-right: auto;
    color: #9badbc;
    font-size: 10px;
    font-weight: 400
}

.shop-filters input[type=checkbox] {
    accent-color: var(--blue);
    width: 15px;
    height: 15px
}

.range-label {
    justify-content: space-between !important;
    color: #667e94 !important
}

.range-label output {
    color: var(--blue);
    font-weight: 800
}

.shop-filters input[type=range] {
    width: 100%;
    accent-color: var(--orange)
}

.range-minmax {
    display: flex;
    justify-content: space-between;
    color: #9badbc;
    font-size: 9px
}

.filter-help {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    border-top: 1px solid var(--line);
    padding-top: 17px
}

.filter-help > span {
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-weight: 800
}

.filter-help p {
    color: #607891;
    font-size: 11px;
    line-height: 1.55;
    margin: 0
}

.filter-help a {
    color: var(--blue);
    font-weight: 800
}

.shop-products {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap: 34px 22px;
    direction: rtl
}

.shop-product {
    min-width: 0;
    padding: 8px 8px 17px;
    border: 1px solid rgba(13, 44, 89, .08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(13, 44, 89, .06);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease
}

.shop-product:hover {
    border-color: rgba(15, 112, 183, .24);
    box-shadow: 0 18px 38px rgba(13, 44, 89, .14);
    transform: translateY(-5px)
}

.shop-product-visual {
    height: 245px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: #e4edf2;
    isolation: isolate
}

.shop-product-visual:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .58;
    background-image: linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(135deg, #000, transparent 72%)
}

.shop-product-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1
}

.shop-product-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 78% 22%, rgba(255,255,255,.8), transparent 26%), linear-gradient(145deg, rgba(255, 255, 255, .52), transparent 45%, rgba(13, 44, 89, .1))
}

.visual-printer {
    background: linear-gradient(145deg, #dcecf4, #f2f5f7 55%, #c8d9e2)
}

.visual-filament {
    background: linear-gradient(145deg, #fff0e9, #fff8f4 55%, #f4c8b7)
}

.visual-resin {
    background: linear-gradient(145deg, #e5ebf0, #f6f8f9 55%, #cbd5de)
}

.visual-vase {
    background: linear-gradient(145deg, #e4ecf3, #f9fafb 55%, #c8d8e2)
}

.visual-workbench {
    background: linear-gradient(145deg, #e6f0f5, #f8fbfc 55%, #c4d5df)
}

.visual-tool {
    background: linear-gradient(145deg, #fff0e9, #fff8f5 55%, #f2c6b7)
}

.visual-phone {
    background: linear-gradient(145deg, #e6edf4, #f8fafc 55%, #c5d5e1)
}

.visual-engineering {
    background: linear-gradient(145deg, #dfeaf1, #f7fafb 55%, #c1d2dc)
}

.product-tag {
    position: absolute;
    top: 13px;
    right: 13px;
    z-index: 4;
    border-radius: 2px;
    padding: 5px 9px;
    color: #fff;
    font-size: 10px;
    font-weight: 800
}

.tag-orange {
    background: var(--orange)
}

.tag-blue {
    background: var(--blue)
}

.tag-dark {
    background: var(--navy)
}

.product-favorite {
    position: absolute;
    z-index: 5;
    top: 10px;
    left: 12px;
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
    color: var(--navy);
    font-size: 20px
}

.shop-product-info {
    padding: 15px 8px 0;
    text-align: right
}

.product-category {
    color: var(--blue);
    font-size: 10px;
    font-weight: 800
}

.shop-product-info h2 {
    font-family: Rubik, "Vazirmatn", sans-serif;
    color: var(--navy);
    font-size: 17px;
    margin: 5px 0 3px
}

.shop-product-info p {
    color: var(--muted);
    font-size: 11px;
    margin: 0 0 11px
}

.shop-product-info > strong {
    display: block;
    border-top: 1px solid var(--line);
    padding-top: 10px;
    color: var(--blue);
    font-family: Rubik, "Vazirmatn", sans-serif;
    font-size: 16px
}

.shop-product-info > strong small {
    font-family: "Nunito Sans", "Vazirmatn", sans-serif;
    color: #758b9e;
    font-size: 10px;
    font-weight: 500
}

.product-hover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 9px;
    padding: 15px;
    background: linear-gradient(180deg, transparent 26%, rgba(13, 44, 89, .9));
    color: #fff;
    opacity: 0;
    transform: translateY(7px);
    transition: opacity .22s ease, transform .22s ease
}

.shop-product-visual:hover .product-hover, .shop-product-visual:focus-within .product-hover {
    opacity: 1;
    transform: translateY(0)
}

.product-hover > span {
    font-size: 10px
}

.add-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 39px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 3px;
    background: var(--orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800
}

.add-product:hover {
    background: var(--blue)
}

.add-product b {
    font-size: 16px;
    font-weight: 400
}

.empty-state {
    grid-column: 1/-1;
    display: grid;
    place-items: center;
    gap: 5px;
    min-height: 220px;
    color: var(--muted);
    text-align: center
}

.empty-state strong {
    color: var(--navy);
    font-family: Rubik, "Vazirmatn", sans-serif;
    font-size: 20px
}

.empty-state span {
    font-size: 12px
}

.mini-printer {
    width: 130px;
    height: 142px;
    background: var(--navy);
    border-radius: 12px 12px 7px 7px;
    position: relative;
    box-shadow: 12px 16px 0 #b5d2df
}

.mini-printer:before {
    content: "";
    position: absolute;
    inset: 30px 13px 17px;
    border: 7px solid #ddebf0;
    background: #adc6d2
}

.mini-printer:after {
    content: "";
    position: absolute;
    top: 14px;
    left: 15px;
    width: 100px;
    height: 15px;
    background: var(--orange);
    border-radius: 3px
}

.mini-printer i {
    position: absolute;
    top: 52px;
    left: 59px;
    width: 8px;
    height: 44px;
    background: var(--orange)
}

.mini-printer b {
    position: absolute;
    bottom: 13px;
    left: 28px;
    width: 75px;
    height: 7px;
    background: #fff;
    border-radius: 5px
}

.filament-roll {
    width: 135px;
    height: 135px;
    border: 28px solid var(--orange);
    border-radius: 50%;
    box-shadow: 11px 14px 0 #ffcfbb;
    position: relative
}

.filament-roll:before {
    content: "";
    position: absolute;
    inset: -11px;
    border: 5px dashed #fff1e9;
    border-radius: 50%
}

.filament-roll i {
    position: absolute;
    width: 38px;
    height: 38px;
    background: #fff0e9;
    border-radius: 50%;
    left: 21px;
    top: 21px
}

.resin-bottle {
    width: 85px;
    height: 140px;
    background: var(--navy);
    border-radius: 9px 9px 18px 18px;
    position: relative;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 11px;
    letter-spacing: .1em;
    box-shadow: 12px 14px 0 #cbd5dd
}

.resin-bottle:before {
    content: "";
    position: absolute;
    top: -22px;
    width: 47px;
    height: 24px;
    background: var(--orange);
    border-radius: 5px 5px 0 0
}

.resin-bottle i {
    position: absolute;
    inset: 47px 12px 22px;
    background: #fff;
    border-radius: 3px
}

.resin-bottle b {
    position: relative;
    color: var(--navy);
    font-size: 10px
}

.geometric-vase {
    position: absolute;
    width: 112px;
    height: 150px;
    transform: rotate(7deg);
    background: linear-gradient(150deg, #f0f4f6, #8ea8b4 58%, #2b5363);
    clip-path: polygon(22% 0, 78% 0, 93% 18%, 82% 100%, 18% 100%, 7% 18%);
    box-shadow: 18px 19px 0 rgba(13, 44, 89, .16)
}

.geometric-vase:before {
    content: "";
    position: absolute;
    left: 19px;
    right: 19px;
    top: 16px;
    height: 38px;
    border: 4px solid rgba(13, 44, 89, .45);
    transform: skewY(-8deg)
}

.geometric-vase i {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 26px;
    height: 8px;
    background: var(--orange);
    box-shadow: 0 -17px 0 rgba(255, 255, 255, .78)
}

.cable-tray {
    position: relative;
    width: 165px;
    height: 72px;
    border-radius: 10px;
    background: #1a3b58;
    transform: skewY(-8deg);
    box-shadow: 14px 16px 0 rgba(13, 44, 89, .18)
}

.cable-tray:before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    top: 17px;
    height: 10px;
    background: #8fb4c5;
    border-radius: 5px;
    box-shadow: 0 20px 0 #557b90
}

.cable-tray i {
    position: absolute;
    left: 43px;
    top: -32px;
    width: 5px;
    height: 42px;
    background: var(--orange);
    border-radius: 5px
}

.tool-box {
    position: relative;
    width: 145px;
    height: 108px;
    border-radius: 9px;
    background: var(--navy);
    box-shadow: 16px 17px 0 rgba(13, 44, 89, .18)
}

.tool-box:before {
    content: "";
    position: absolute;
    top: -19px;
    left: 35px;
    width: 74px;
    height: 22px;
    border-radius: 5px 5px 0 0;
    background: var(--orange)
}

.tool-box i {
    position: absolute;
    left: 22px;
    right: 22px;
    top: 34px;
    height: 8px;
    background: #9cc1cd;
    box-shadow: 0 20px 0 #668b9d
}

.tool-box b {
    position: absolute;
    right: 23px;
    bottom: 15px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--orange)
}

.phone-stand {
    position: relative;
    width: 105px;
    height: 137px;
    border: 8px solid var(--navy);
    border-radius: 13px 13px 5px 5px;
    transform: skewY(-7deg);
    box-shadow: 14px 16px 0 rgba(13, 44, 89, .15)
}

.phone-stand:before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    top: 15px;
    height: 55px;
    border-radius: 4px;
    background: #c5d9e2
}

.phone-stand i {
    position: absolute;
    bottom: 15px;
    left: 24px;
    width: 42px;
    height: 7px;
    border-radius: 5px;
    background: var(--orange)
}

.engineering-part {
    position: relative;
    width: 170px;
    height: 115px;
    background: var(--navy);
    clip-path: polygon(15% 10%, 72% 0, 100% 23%, 83% 100%, 0 79%);
    box-shadow: 17px 16px 0 rgba(13, 44, 89, .2)
}

.engineering-part:before {
    content: "";
    position: absolute;
    left: 43px;
    top: 30px;
    width: 62px;
    height: 42px;
    border: 7px solid #9dbbc7;
    border-radius: 9px
}

.engineering-part i {
    position: absolute;
    right: 27px;
    top: 28px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--orange)
}

.engineering-part b {
    position: absolute;
    left: 28px;
    bottom: 22px;
    width: 38px;
    height: 7px;
    border-radius: 5px;
    background: #f4f7f8
}

.cart-drawer {
    position: fixed;
    z-index: 40;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(390px, 92vw);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -24px 0 70px rgba(8, 31, 55, .18);
    transform: translateX(105%);
    transition: transform .3s ease
}

.cart-drawer.is-open {
    transform: translateX(0)
}

.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px;
    border-bottom: 1px solid var(--line)
}

.cart-drawer-head h2 {
    font-family: Rubik, "Vazirmatn", sans-serif;
    color: var(--navy);
    font-size: 20px;
    margin: 0
}

.cart-drawer-head button {
    border: 0;
    background: none;
    color: var(--navy);
    font-size: 28px
}

.cart-items {
    flex: 1;
    padding: 20px;
    overflow: auto
}

.cart-empty {
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    margin-top: 80px
}

.cart-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding: 14px 0
}

.cart-line strong {
    color: var(--navy);
    font-size: 13px
}

.cart-line small {
    display: block;
    color: var(--muted);
    font-size: 10px
}

.cart-line button {
    border: 0;
    background: none;
    color: var(--orange);
    font-size: 18px
}

.cart-summary {
    padding: 20px;
    border-top: 1px solid var(--line)
}

.cart-summary > span {
    color: var(--muted);
    font-size: 11px
}

.cart-summary > strong {
    display: block;
    color: var(--navy);
    font-family: Rubik, "Vazirmatn", sans-serif;
    font-size: 22px;
    margin: 4px 0 16px
}

.cart-summary > button {
    width: 100%;
    min-height: 46px;
    border: 0;
    border-radius: 4px;
    background: var(--orange);
    color: #fff;
    font-weight: 800
}

.cart-backdrop {
    position: fixed;
    z-index: 35;
    inset: 0;
    background: rgba(7, 19, 29, .42);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.cart-backdrop.is-open {
    opacity: 1;
    pointer-events: auto
}

.shop-toast {
    position: fixed;
    z-index: 50;
    bottom: 24px;
    left: 50%;
    padding: 12px 17px;
    border-radius: 4px;
    background: var(--navy);
    color: #fff;
    font-size: 12px;
    opacity: 0;
    transform: translate(-50%, 12px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease
}

.shop-toast.show {
    opacity: 1;
    transform: translate(-50%, 0)
}

@media (max-width: 1000px) {
    .shop-products {
        grid-template-columns:repeat(2, minmax(0, 1fr))
    }

    .shop-layout {
        grid-template-columns:210px 1fr
    }

    .shop-hero-note {
        margin-left: 0
    }
}

@media (max-width: 720px) {
    .shop-header {
        height: 72px
    }

    .shop-nav {
        display: none
    }

    .shop-menu {
        display: flex
    }

    .shop-brand {
        width: 112px
    }

    .shop-hero {
        min-height: 420px;
        background: linear-gradient(160deg, #0b2c58 0%, #0f70b7 56%, #edf4f8 56.2%, #f5f8fa 100%)
    }

    .shop-hero-inner {
        min-height: 420px;
        display: block;
        padding-top: 58px
    }

    .shop-hero h1 {
        font-size: 48px
    }

    .shop-hero-note {
        margin-top: 32px
    }

    .shop-toolbar {
        align-items: stretch;
        flex-wrap: wrap
    }

    .shop-result {
        width: 100%;
        margin: 0
    }

    .shop-search {
        flex: 1;
        width: auto
    }

    .shop-sort {
        width: 100%;
        justify-content: space-between
    }

    .shop-sort select {
        flex: 1;
        margin-right: 8px
    }

    .shop-layout {
        display: block
    }

    .shop-filters {
        margin-bottom: 22px
    }

    .shop-products {
        grid-template-columns:1fr;
        gap: 32px
    }

    .shop-product-visual {
        height: 290px
    }

    .shop-content {
        padding-top: 32px
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-product-visual, .product-hover, .cart-drawer, .cart-backdrop, .shop-toast {
        transition: none
    }
}
