:root {
    --footer-bg: #f1f2f5;
    --footer-bottom-bg: #ffffff;
    --footer-heading-color: #38383d;
    --footer-text-color: #808089;
    --footer-muted-color: #666666;
    --footer-link-hover: var(--color-blue);
    --color-brown: #808089;
    --color-white: #ffffff;
    --color-white-primary: #FCFCFC;
    --color-white-secondary: #DDDDE3;
    --color-blue: #2A83E9;
    --color-blue-primary: #002981;
    --color-blue-secondary: #0A3161;
    --color-blue-highlight: #003AB8;
    --color-blue-tertiary: #F1F8FE;
    --color-red-primary: #FF424F;
    --color-black: #1D2939;
    --color-gradient: linear-gradient(90, #FFFFFF, #FFB17D, #FFB17D);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--color-blue) var(--color-blue-tertiary);
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-blue-tertiary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-blue);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-blue);
}

body {
    font-family: "Inter", sans-serif;
    background-color: #F4F7FF;
    color: var(--color-black);
    font-size: 1rem;
    top: 0 !important;
}


a {
    color: var(--color-black);
    outline: 0 none;
    text-decoration: none;
    -moz-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    -webkit-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: 0 none;
}

img {
    border-style: none;
    height: auto;
    vertical-align: middle;
}

hr {
    clear: both;
}

section,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
summary {
    display: block;
}

address {
    font-style: italic;
}

table {
    background-color: transparent;
    width: 100%;
    border-spacing: 0;
}

table thead th {
    color: #333;
}


table tr td,
table tr th {
    padding: 10px;
}

table tr td:first-child,
table tr th:first-child {
    padding-left: 0px;
}

table tr td:last-child,
table tr th:last-child {
    padding-right: 0px;
}

@media only screen and (max-width: 360px) {
    table tr td {
        word-break: break-all;
    }
}

p,
address,
pre,
hr,
ul,
ol,
dl,
dd,
table {
    margin: 0 0 15px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.grecaptcha-badge {
    display: none !important;
}

.text_title {
    margin: 0;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-black);
}

.nav__btn {
    flex-shrink: 0;
    width: 2.0625rem;
    height: 3.5rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.nav__btn:hover {
    opacity: 0.85;
}

.nav__btn i {
    font-size: 2rem;
    line-height: 1;
}
/** Line-clamp **/
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

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

/** Maintenance **/
.maintenance {
    width: 100%;
    background-color: #ffcc00;
    color: #000;
    text-align: center;
    padding: 10px 0px;
    z-index: 10000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 0.85rem;
}

/* animation */


.img1 {
    position: relative;
    /* padding-bottom: 60%; */
    overflow: hidden;
    height: auto;
    display: block;
}

/* .img1 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.img1:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out
}

.img1:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out
}

.img1:hover:before {
    right: 50%;
    left: 50%;
    width: 0;
    background: rgba(255,255,255,0.3)
}

.img1:hover:after {
    height: 0;
    top: 50%;
    bottom: 50%;
    background: rgba(255,255,255,0.3)
}



/** Header **/
.header {
    position: relative;
    z-index: 1001;
    background: var(--color-white);
    overflow: visible;
}

.header-main {
    padding: 20px 0;
    background: var(--color-white);
    overflow: visible;
}

.header-main__inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-main__logo {
    flex-shrink: 0;
}

.header-main__logo a {
    display: block;
    line-height: 1;
}

.header-main__logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-main__search {
    flex: 1;
    max-width: 41.8125rem;
    margin: 0 auto;
}

.header-search-group {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.header-search-form {
    margin: 0;
}

.header-search-bar {
    width: 100%;
    min-height: 2.5rem;
    border: 1px solid var(--color-white-secondary);
    border-radius: 0.5rem;
    background: var(--color-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search-group:focus-within .header-search-bar {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 1px var(--color-blue);
}

.header-search-bar__inner {
    display: flex;
    align-items: center;
    min-height: 2.5rem;
    padding: 0;
    gap: 1px;
}

.header-search-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-brown);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.header-search-bar__input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    line-height: 1.21;
    color: var(--color-brown);
    cursor: text;
}

.header-search-bar__input::placeholder {
    color: var(--color-brown);
}

.header-search-bar__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
}

.header-search-bar__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 3.1875rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--color-blue);
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.header-search-bar__action.is-listening {
    color: var(--color-blue);
    background: rgba(0, 41, 129, 0.08);
}

.header-search-bar__action.is-disabled,
.header-search-bar__action[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
}

.header-search-bar__action:focus-visible {
    outline: 2px solid rgba(0, 41, 129, 0.55);
    outline-offset: 2px;
    border-radius: 0.5rem;
}

.header-search-voice-status {
    margin: 0.375rem 0 0;
    font-size: 0.75rem;
    line-height: 1.4;
    color: var(--color-brown);
    min-height: 1.05rem;
}

.header-search-voice-status.is-hidden {
    display: none;
}

.header-search-voice-status.is-listening {
    color: var(--color-blue);
}

.header-search-voice-status.is-error {
    color: #dc2626;
}


.header-search-bar__action--divider {
    border-left: 1px solid var(--color-white-secondary);
}

.header-search-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.125rem);
    z-index: 1001;
    display: none;
    flex-direction: column;
    gap: 0.4375rem;
    padding: 1rem 1.4375rem 1.125rem;
    border-radius: 0.5rem;
    background-color: var(--color-white);
    max-height: min(20rem, 70vh);
    overflow-y: auto;
}

.header-search-group:focus-within .header-search-panel {
    display: flex;
}

.header-search-panel__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.header-search-chip {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    padding: 0.1875rem 0.5rem;
    border-radius: 1rem;
    background-color: var(--color-white-primary);
    border: 1px solid var(--color-white-secondary);
    font-size: 0.75rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-black);
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.header-search-chip:hover {
    background-color: var(--color-white-secondary);
    color: var(--color-black);
}

.header-main__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-action-account {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    position: relative;
}

.header-action-account__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-action-account__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--color-black);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--color-blue);
}
.avatar-image img {
    border-radius: 50%;
    width: 32px;
    height: 32px;
}
.header-action-account__label {
    font-size: 14px;
    color: var(--color-brown);
    white-space: nowrap;
    line-height: 1.5;
}

.header-action-divider {
    width: 1px;
    height: 20px;
    background-color: var(--color-white-secondary);
}

.header-action-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--color-brown);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.header-action-cart i {
    font-size: 20px;
    color: var(--color-blue);
}

.header-cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background-color: var(--color-red-primary);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* menu */
.mobile-menu,
.mobile-header,
.mobile-menu-overlay,
.mobile-site-top {
    display: none;
}

.menu {
    background-color: var(--color-white);
    position: relative;
    z-index: 2;
}

.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.flex-menu {
    display: grid;
    grid-template-columns: 13.375rem minmax(0, 41.8125rem) 1fr;
    align-items: center;
    column-gap: 4rem;
    width: 100%;
}

.menu-category {
    grid-column: 1;
}

.menu-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    grid-column: 2;
    min-width: 0;
}

.menu-left ul {
    list-style: none;
}

.menu-left .level-1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 26px;
}

.menu-address-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4375rem;
    min-height: 2rem;
    padding: 0.25rem 0.625rem 0.25rem 0.75rem;
    border-radius: 2rem;
    background-color: #edf5ff;
    color: #808089;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.52;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.menu-address-link:hover {
    background-color: #dbeaff;
    color: var(--color-black);
}

.menu-address-link__icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 0.875rem;
    height: 0.875rem;
    color: var(--color-blue);
    font-size: 0.875rem;
}

.menu-address-link__text {
    flex-shrink: 0;
}

.menu-address-link__caret {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-left: 0.125rem;
    color: var(--color-blue);
    font-size: 1rem;
}

.menu-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    grid-column: 3;
    justify-self: end;
}

.level-1>li {
    text-align: left;
    position: relative;
}

.level-1>li>a.menu-item {
    display: block;
    padding: 6px 0;
    color: var(--color-brown);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: capitalize;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.level-1>li:hover>a.menu-item,
.level-1>li.active>a.menu-item {
    color: #0A3161;
}

.submenu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    z-index: 999;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.level-1>li,
.submenu li {
    position: relative;
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: var(--color-black);
    background: var(--color-white);
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease;
    text-align: left;
    font-size: 13px;
}

.submenu li a:hover {
    background: var(--color-white-secondary);
    color: var(--color-blue-primary);
}

.level-3,
.level-4,
.level-5 {
    top: 0;
    left: 100%;
}

.menu__icons {
    display: flex;
    gap: 6px;
    align-items: center;
}

.menu__icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 30px;
    background-color: #f5f5f5;
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.menu__icon:hover {
    background-color: #e0e0e0;
    transform: scale(1.05);
    color: #000;
}

.menu__icon i {
    pointer-events: none;
}

.menu__cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--color-red-primary);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--color-white);
    transition: transform 0.2s ease;
}

.menu__icon--cart:hover .menu__cart-count {
    transform: scale(1.08);
}

.menu-style-one {
    padding: 4px 0;
    border-bottom: 1px solid var(--color-white-secondary);
}

.menu-style-two {
    padding: 4px 0;
    display: none;
    border-bottom: 1px solid #EBEBF0;
}

.menu-style-two .menu-right {
    margin-left: 0px;
}

/** Commitment bar **/
.commitment-bar {
    background-color: #E0EAFF;
}

.commitment-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 0;
}

.commitment-bar__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue-highlight);
    line-height: 1.5;
}

.commitment-bar__items {
    display: flex;
    align-items: center;
    gap: 18px;
}

.commitment-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.commitment-bar__item img {
    object-fit: cover;
}

.commitment-bar__item span {
    font-size: 12px;
    font-weight: 500;
    color: #0A3161;
    white-space: nowrap;
    line-height: 1.15;
}

.commitment-bar__divider {
    width: 1px;
    height: 20px;
    background-color: #E0EAFF;
    border-left: 1px solid #b0c4ff;
}

/** Profile menu **/
.dropdown-user {
    position: relative;
}

.dropdown-user-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    display: none;
    z-index: 9999;
    padding: 0;
}

.dropdown-user-menu li {
    list-style: none;
}

.dropdown-user-menu li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-weight: normal;
}

.dropdown-user-menu li a:hover {
    background-color: #f2f2f2;
}

.dropdown-user:hover .dropdown-user-menu {
    display: block;
}
/* Hero sidebar section */
.hero-sidebar {
    padding: 1rem 0 1.5rem;
    background: var(--color-white);
}

.hero-sidebar__layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0.9375rem;
    position: relative;
}

.hero-sidebar__aside {
    position: relative;
    flex: 0 0 16.0625rem;
    max-width: 16.0625rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-white-secondary);
    border-radius: 0.5rem;
    overflow: visible;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.hero-sidebar__aside.is-mega-open {
    z-index: 5;
}

.hero-sidebar__main {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.hero-sidebar__category-head {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem 0;
}

.hero-sidebar__category-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-blue-highlight);
    font-size: 1rem;
    line-height: 1;
}

.hero-sidebar__category-title {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
    color: var(--color-blue-highlight);
    margin: 0;
}

.hero-sidebar__nav-block {
    position: static;
    flex: 1;
    min-height: 0;
}

.hero-sidebar__nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0 0.75rem;
}

.hero-sidebar__nav-row {
    position: static;
}

.hero-sidebar__nav-row:not(:last-child) .hero-sidebar__nav-link {
    border-bottom: 1px solid var(--color-white-secondary);
}

.hero-sidebar__nav-link {
    display: block;
    padding: 0.4375rem 1rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.61538462;
    color: var(--color-brown);
    text-decoration: none;
    border-bottom: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.hero-sidebar__nav-link:hover {
    color: var(--color-blue);
    background-color: var(--color-blue-tertiary);
}

.hero-sidebar__nav-row--has-panel.is-active .hero-sidebar__nav-link {
    color: var(--color-black);
    background-color: var(--color-blue-tertiary);
}

.hero-sidebar__subpanel:not(.is-open) {
    position: absolute;
    left: -10000px;
    top: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: none;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-sidebar__subpanel {
    box-sizing: border-box;
    background-color: var(--color-white);
}

.hero-sidebar__subpanel.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: -1px;
    left: calc(100% + 0.9375rem);
    height: calc(100% + 2px);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: none;
    overflow: hidden;
    z-index: 10;
}

.hero-sidebar__subpanel-body {
    flex: 1;
    min-height: 0;
    padding: 2.375rem 2.375rem 1.75rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.hero-sidebar__subpanel-title {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.28571429;
    text-transform: uppercase;
    color: var(--color-black);
    margin: 0 0 1.5rem;
}

.hero-sidebar__subpanel-rows {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hero-sidebar__subpanel-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.9375rem;
}

.hero-sidebar__subpanel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 4.6875rem;
    padding: 0.375rem 0.375rem 0.875rem;
    gap: 0.5625rem;
    text-decoration: none;
    color: inherit;
    border-radius: 0.4375rem;
    transition: background-color 0.15s ease;
}

.hero-sidebar__subpanel-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.3125rem;
    overflow: hidden;
    background-color: var(--color-white);
    box-sizing: border-box;
}

.hero-sidebar__subpanel-card-icon img {
    width: 100%;
    object-fit: cover;
}

.hero-sidebar__subpanel-card-label {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.61538462;
    text-align: center;
    color: var(--color-brown);
    width: 100%;
}

.hero-sidebar__banners {
    position: relative;
    margin-bottom: 0.9375rem;
}

.hero-sidebar__banner {
    display: block;
}

.hero-sidebar__banner img {
    width: 100%;
    border-radius: 0.625rem;
}

.hero-sidebar__quick {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem 2rem;
    padding: 1.25rem 0 1.625rem;
    border-top: 1px solid var(--color-white-secondary);
    justify-content: flex-start;
}

.hero-sidebar__quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 8.0625rem;
    max-width: 8.0625rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease;
}

.hero-sidebar__quick-link:hover {
    transform: translateY(-0.125rem);
}

.hero-sidebar__quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 0.4375rem;
    background-color: var(--color-white-secondary);
}

.hero-sidebar__quick-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-sidebar__quick-label {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.38461538;
    text-align: center;
    color: var(--color-black);
    width: 100%;
}

/** Menu category dropdown **/
.menu-category {
    position: relative;
    z-index: 10;
}

.menu-category .hero-sidebar__aside {
    border: none;
    border-radius: 0;
    flex: unset;
    max-width: unset;
    width: auto;
    background: transparent;
    overflow: visible;
    display: block;
    position: static;
}

.menu-category .hero-sidebar__category-head {
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s ease;
    user-select: none;
}

.menu-category .hero-sidebar__category-head::after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro", "Font Awesome 5 Free";
    font-weight: 400;
    font-size: 0.625rem;
    color: var(--color-blue-highlight);
    margin-left: 0.375rem;
    transition: transform 0.25s ease;
}

.menu-category.is-open .hero-sidebar__category-head::after {
    transform: rotate(180deg);
}

.menu-category .hero-sidebar__category-head:hover {
    background-color: var(--color-blue-tertiary);
}

.menu-category .hero-sidebar__nav-block {
    position: absolute;
    top: 100%;
    left: 0;
    width: 16.0625rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-white-secondary);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.25rem);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 10;
    overflow: visible;
}

.menu-category.is-open .hero-sidebar__nav-block {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-category .hero-sidebar__subpanel {
    border: 1px solid var(--color-white-secondary);
    box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.12);
}

.menu-category .hero-sidebar__subpanel.is-open {
    left: calc(100% + 0.5rem);
    top: 0;
    height: auto;
    min-height: 100%;
}


/** Partner **/
.partner {
    padding: 3.75rem 0;
}

.partner__panel {
    background: var(--color-white);
    border-radius: 0.625rem;
    overflow: hidden;
}

.partner__header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.34rem 0;
    border-bottom: 1px solid var(--color-white-secondary);
}

.partner__body {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    padding: 2.875rem 1rem 2.5rem;
}

.partner__track {
    flex: 1;
    min-width: 0;
}

.partner__rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.partner__row {
    width: 100%;
}

.partner__item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 3.75rem;
    padding: 0.5rem;
    transition: opacity 0.2s ease;
}

.partner__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.partner__link:hover {
    opacity: 0.88;
}

/* Product sale */
.product-sale {
    padding: 3rem 0;
}

.product-sale__panel {
    background-color: var(--color-white);
    border-radius: 0.625rem;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}

.product-sale__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 0 1.625rem;
    box-sizing: border-box;
}

.product-sale__badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    background: transparent;
}

.product-sale__badge-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-red-primary);
}

.product-sale__badge-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-red-primary);
    line-height: 1.2;
}

.product-sale__tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.product-sale__countdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7.5625rem;
    min-height: 4.25rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--color-red-primary);
    border-radius: 0.5rem;
    box-sizing: border-box;
}

.product-sale__countdown-label {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-white);
}

.product-sale__countdown-digits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.125rem;
    margin-top: 0.125rem;
}

.product-sale__digit {
    min-width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 0.375rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-red-primary);
}

.product-sale__digit-sep {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    padding: 0 0.0625rem;
}

.product-sale__upcoming {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.product-sale__upcoming-slot {
    width: 6.875rem;
    min-height: 4.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem;
    background-color: #f2f4f7;
    border-radius: 0.5rem;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.product-sale__upcoming-slot[data-slot-active="true"] {
    background-color: var(--color-blue-tertiary);
    border: 1px solid var(--color-blue);
}

.product-sale__upcoming-slot[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.5;
}

.product-sale__upcoming-slot:hover {
    background-color: #e4e7eb;
}

.product-sale__upcoming-slot:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-sale__upcoming-label {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    color: #344054;
}

.product-sale__upcoming-time {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 2;
    color: #344054;
}

.product-sale__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    box-sizing: border-box;
}

.product-sale__card {
    max-width: 100%;
    border: 1px solid var(--color-white-secondary);
    border-radius: 0.5rem;
    background-color: var(--color-white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}
.product-sale__card:hover {
    transform: translateY(-0.5rem);
    transition: transform 0.2s ease;
}

.product-sale__media {
    position: relative;
    display: block;
    margin: 1.25rem auto 0;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-sale__discount-badge {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    padding: 0.125rem 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1.25;
    color: #e53935;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.25rem;
    box-shadow: 0 0.0625rem 0.125rem rgba(0, 0, 0, 0.06);
    pointer-events: none;
}

.product-sale__img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-sale__body {
    padding: 0.875rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4375rem;
}

.product-sale__title {
    margin: 0;
    min-height: 2.25rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
}

.product-sale__title a {
    color: var(--color-black);
    text-decoration: none;
}

.product-sale__title a:hover {
    color: var(--color-blue);
}

.product-sale__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    min-height: 1.5rem;
}

.product-sale__price-sale {
    display: inline-flex;
    align-items: baseline;
    gap: 0.125rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-red-primary);
}

.product-sale__currency {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 2;
}

.product-sale__currency--sm {
    font-size: 0.46875rem;
    line-height: 2;
}

.product-sale__price-old {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    flex-wrap: wrap;
}

.product-sale__price-was {
    display: inline-flex;
    align-items: baseline;
    gap: 0.0625rem;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-brown);
    text-decoration: line-through;
}

.product-sale__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 1.125rem;
    padding: 0 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-black);
    background-color: #f5f5fa;
    border-radius: 0.5rem;
}

.product-sale__stock {
    margin-top: 0.125rem;
}

.product-sale__stock-wrap {
    display: flex;
    align-items: flex-end;
    gap: 0.125rem;
    width: 100%;
    max-width: 13.125rem;
}

.product-sale__stock-icon {
    flex-shrink: 0;
    width: 1.125rem;
    height: 1.625rem;
    margin-bottom: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.product-sale__stock-icon .product-sale__flame {
    display: block;
    width: 1.125rem;
    height: 1.625rem;
}

.product-sale__stock-track {
    position: relative;
    flex: 1;
    min-width: 0;
    height: 1.125rem;
    border-radius: 1.5625rem;
    background-color: #f5f5f5;
    overflow: hidden;
}

.product-sale__stock-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--product-sale-stock-pct, 70%);
    max-width: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #ffb17d 92%, #ffb17d 100%);
    border-radius: 1.5625rem 0 0 1.5625rem;
}

.product-sale__stock-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.66666667;
    color: #000000;
    text-align: center;
    pointer-events: none;
}

.product-sale__buy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    min-height: 2.125rem;
    padding: 0.3125rem 0.9375rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    color: var(--color-blue);
    background-color: var(--color-blue-tertiary);
    border-radius: 0.3125rem;
    transition: opacity 0.2s ease, background-color 0.2s ease;
}

.product-sale__buy:hover {
    background-color: var(--color-blue-highlight);
    color: var(--color-white);
}

.product-sale__buy.is-disabled,
.product-sale__buy[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}
/* Banner home */
.banner-home {
    margin: 2rem 0;
}

.banner-home__wrapper {
    display: flex;
    flex-direction: column;
}
.banner-home__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* Brands sale */
.brands-sale {
    padding: 1.5rem 0 3rem;
}

.brands-sale__wrapper {
    position: relative;
}

.brands-sale__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.item_nav-btn {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    color: var(--color-black);
}

.item_nav-btn--next {
    right: -1rem;
}

.item_nav-btn--prev {
    left: -1rem;
}

.item_nav-btn i {
    font-size: 1.25rem;
}

.brands-sale__card {
    height: 100%;
}

.brands-sale__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    min-height: 10.5rem;
    padding: 0.4375rem 0.4375rem 0.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #333333;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    box-sizing: border-box;
}

.brands-sale__link:hover {
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
    transform: translateY(-0.125rem);
}

.brands-sale__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.5rem;
    height: 6.875rem;
    flex-shrink: 0;
}

.brands-sale__thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.brands-sale__caption {
    font-size: 0.8125rem;
    line-height: 1.5;
    text-align: center;
    white-space: pre-line;
    width: 100%;
    padding: 0 0.25rem;
    box-sizing: border-box;
}

/* Suggested Products section */
.suggested-products {
    padding: 2rem 0;
}

.suggested-products__panel {
    background-color: var(--color-white);
    border-radius: 0.625rem;
    overflow: hidden;
}

.suggested-products__head {
    display: flex;
    align-items: center;
    padding: 2rem 1.8125rem;
}

.suggested-products__body {
    border-top: 1px solid #dddde3;
    padding: 2.625rem 1.75rem 3.125rem;
}

.suggested-products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 1.25rem;
}
/* Product item (carousel / grid card) */
.product__item {
    min-width: 0;
    height: 100%;
}

.product-item__frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.0625rem;
    height: 100%;
    padding: 1rem 0.75rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-white-secondary);
    border-radius: 0.5rem;
    box-sizing: border-box;
}

.product-item__top {
    align-self: flex-start;
    width: 100%;
}

.product-item__installment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 0.1875rem 0.625rem;
    font-size: 0.625rem;
    line-height: 1.2;
    color: var(--color-black);
    background-color: #f1f5ff;
    border-radius: 1.9375rem;
}

.product-item__media {
    display: block;
    flex-shrink: 0;
}

.product-item__img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-item__body {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 0.4375rem;
    flex: 1;
    min-width: 0;
}

.product-item__title {
    margin: 0;
    min-height: 2.25rem;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
}

.product-item__title a {
    color: #27272a;
    text-decoration: none;
}

.product-item__title a:hover {
    color: var(--color-blue);
}

.product-item__prices {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 0.5rem;
    min-height: 1.5rem;
}

.product-item__price-sale {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.125rem;
}

.product-item__price-num {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-red-primary);
}

.product-item__price-currency {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 2;
    color: var(--color-red-primary);
}

.product-item__price-currency--sm {
    font-size: 0.46875rem;
    font-weight: 400;
    line-height: 2;
    color: var(--color-brown);
}

.product-item__price-side {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3125rem;
}

.product-item__price-old {
    display: inline-flex;
    align-items: baseline;
    gap: 0.0625rem;
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-brown);
    text-decoration: line-through;
}

.product-item__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.0625rem 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-black);
    background-color: #f5f5fa;
    border-radius: 0.5rem;
}

.product-item__contact {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-blue);
}

.product-item__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.25rem;
    min-height: 1.25rem;
    font-size: 0.625rem;
    line-height: 1.8;
}

.product-item__sold {
    color: var(--color-brown);
}

.product-item__promo {
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--color-red-primary);
    text-align: right;
}

.product-item__buy {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    width: 100%;
    min-height: 2.125rem;
    padding: 0.3125rem 0.9375rem;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    color: var(--color-blue);
    background-color: #f1f8fe;
    border-radius: 0.3125rem;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.product-item__buy:hover {
    background-color: var(--color-blue-highlight);
    color: var(--color-white);
}

.product-item__buy.is-disabled,
.product-item__buy[aria-disabled="true"] {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}
/* Product Best Seller */
.product__best_seller {
    padding: 2rem 0;
}

.product__best_seller__panel {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem;
    background-color: var(--color-white);
    border-radius: 0.625rem;
    box-sizing: border-box;
}

.product_best_seller_left {
    flex: 0 0 auto;
    width: min(100%, 27.5rem);
    max-width: 27.5rem;
    align-self: center;
}

.product_best_seller_banner {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.product_best_seller_right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product_best_seller_right_header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.product_best_seller_title.text_title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: var(--color-black);
}

.product_best_seller_right_body {
    position: relative;
    flex: 1;
    min-width: 0;
    min-height: 10rem;
}

.product_best_seller__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    padding: 0;
}

.product_best_seller__nav-btn {
    pointer-events: auto;
}

.product__best_seller .owl-product-best-seller {
    padding: 0 2.75rem;
}
/* Image Banner */
.image-banner {
    padding: 1.25rem 0;
}
.image-banner__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
/* Shop Discount */
.shop-discount {
    padding: 2rem 0;
}

.shop-discount__title {
    margin: 0 0 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #000000;
}

.shop-discount__wrapper {
    position: relative;
}

.shop-discount__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.shop-discount__slide {
    height: 100%;
}

.shop-discount__card {
    display: block;
    height: 100%;
    border-radius: 0.375rem;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    padding: 0.25rem 0;
}

.shop-discount__card:hover {
    transform: translateY(-0.125rem);
}

.shop-discount__img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 0.375rem;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 999;
}

.floating-contact a {
    width: 45px;
    height: 45px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 20px;
}

.scroll-circle {
    position: fixed;
    right: 20px;
    bottom: 140px;
    width: 50px;
    height: 50px;
    z-index: 999;
    cursor: pointer;
}

.scroll-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.scroll-circle .bg {
    fill: none;
    stroke: #e6e6e6;
    stroke-width: 5;
}

.scroll-circle .progress {
    fill: none;
    stroke: #007bff;
    stroke-width: 5;
    stroke-dasharray: 163.36;
    stroke-dashoffset: 163.36;
    transition: stroke-dashoffset 0.2s linear;
}

.scroll-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #007bff;
    font-size: 16px;
    pointer-events: none;
}

.contact-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px 0px;
    background: #fff;
}

.contact-btn {
    background: #ffd700;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/** Footer **/
.footer {
    background-color: var(--footer-bg);
}

.footer__main {
    padding: 2.25rem 0 1.75rem;
}

.footer__primary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem 1.25rem;
    align-items: start;
}

.footer__col {
    min-width: 0;
}

.footer__heading {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--footer-heading-color);
}

.footer__heading--multiline {
    max-width: 8.5rem;
}

.footer__hotline {
    margin: 0 0 0.0625rem;
    font-size: 0.75rem;
    line-height: 1.33;
    color: var(--footer-text-color);
}

.footer__hotline-label {
    margin-right: 0.125rem;
}

.footer__hotline-value {
    font-weight: 500;
    color: var(--footer-heading-color);
    text-decoration: none;
}

.footer__hotline-value:hover {
    color: var(--footer-link-hover);
}

.footer__hotline-note {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    line-height: 1.33;
    color: var(--footer-text-color);
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__list--about {
    gap: 0.625rem;
}

.footer__list a {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.33;
    color: var(--footer-text-color);
    text-decoration: none;
}

.footer__list a:hover {
    color: var(--footer-link-hover);
}

.footer__block {
    margin-bottom: 1.25rem;
}

.footer__block:last-child {
    margin-bottom: 0;
}

.footer__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.footer__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    border-radius: 0.25rem;
    overflow: hidden;
}

.footer__badge img {
    display: block;
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}

.footer__badge--wide img {
    width: 5.1875rem;
    height: 2rem;
}

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.footer__pay-icon {
    display: flex;
    line-height: 0;
    border-radius: 0.25rem;
    overflow: hidden;
    background-color: #f5f5fa;
}

.footer__pay-icon img {
    display: block;
    width: 3rem;
    height: 2rem;
    object-fit: cover;
}

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

.footer__social--figma {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
    opacity: 0.88;
    transform: translateY(-0.0625rem);
}

.footer__social--figma .footer__social-link img {
    display: block;
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    border-radius: 0.25rem;
}

.footer__apps {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer__qr img {
    display: block;
    width: 7.5rem;
    height: auto;
    border-radius: 0.25rem;
}

.footer__store-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__store-badge {
    display: block;
    line-height: 0;
}

.footer__store-badge img {
    display: block;
    width: 8.4375rem;
    height: auto;
    max-width: 100%;
}

.footer__bottom {
    background-color: var(--footer-bottom-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0 0.875rem;
}

.footer__bottom .container {
    text-align: left;
}
.footer__bottom-inner {
    display: flex;
    gap:0.1rem;
}

.footer__legal {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--footer-muted-color);
}

.footer__credit {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--footer-muted-color);
}

.footer__credit-link {
    font-weight: 700;
    color: var(--color-blue);
    text-decoration: none;
}

.footer__credit-link:hover {
    text-decoration: underline;
}

/* Footer newsletter */
.footer__newsletter {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__newsletter-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--footer-heading-color);
}

.footer__newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__newsletter-form.is-loading {
    pointer-events: none;
    opacity: 0.75;
}

.footer__newsletter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.5rem;
}

.footer__newsletter-input {
    flex: 1 1 8rem;
    min-width: 0;
    margin: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--footer-heading-color);
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 0.25rem;
}

.footer__newsletter-input::placeholder {
    color: var(--footer-text-color);
    opacity: 1;
}

.footer__newsletter-input:focus {
    outline: 2px solid var(--color-blue, #0b5fff);
    outline-offset: 1px;
    border-color: rgba(11, 95, 255, 0.35);
}

.footer__newsletter-submit {
    flex: 0 0 auto;
    margin: 0;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
    cursor: pointer;
    background-color: #000;
    border: none;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease, opacity 0.2s ease;
}

.footer__newsletter-submit:hover:not(:disabled) {
    background-color: #333;
}

.footer__newsletter-submit:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.footer__newsletter-legal {
    margin: 0;
    font-size: 0.625rem;
    line-height: 1.45;
    color: var(--footer-muted-color);
}

.footer__newsletter-legal a {
    color: inherit;
    text-decoration: underline;
}

.footer__newsletter-legal a:hover {
    color: var(--footer-link-hover);
}

.google-iframe {
    position: relative;
    min-height: 15.625rem;
}

.google-iframe iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 74.9375rem) {
    .footer__primary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer__col--trust {
        grid-column: 1 / 2;
    }

    .footer__col--follow {
        grid-column: 2 / -1;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1.5rem;
        align-items: start;
    }

    .footer__col--follow .footer__block {
        margin-bottom: 0;
    }

    .footer__col--follow .footer__block:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 63.9375rem) {
    .footer__primary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer__col--trust {
        grid-column: auto;
    }

    .footer__col--follow {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 47.9375rem) {
    .footer__main {
        padding: 1.75rem 0 1.5rem;
    }

    .footer__primary {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer__col--follow {
        grid-column: auto;
        grid-template-columns: 1fr;
    }
}

.contact-btn i {
    font-size: 16px;
}

/** Button loading **/
.btn-loading {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loading.is-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading span {
    display: none;
}

.btn-loading.is-loading span {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spinLoading 0.75s linear infinite;
}

@keyframes spinLoading {
    100% {
        transform: rotate(360deg);
    }
}

/** Notify **/
.notyf {
    padding: 15px;
    z-index: 9999999999 !important;
}

.notyf__message {
    white-space: nowrap;
}

.notyf__toast {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 12px 20px 12px;
    font-size: 14px;
    font-weight: 500;
    max-width: 100%;
}

.notyf__ripple {
    opacity: 0.12;
}

.notyf__wrapper {
    padding: 4px 8px;
}

.notyf__dismiss-btn {
    background: transparent;
    opacity: 1;
    cursor: pointer;
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}

.notyf__dismiss {
    height: 26px;
    width: 26px;
    border-radius: 4px !important;
}



/** Menu mobile **/
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: block;
}

.mobile-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -82%;
    width: 82%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.mobile-logo {
    max-width: 150px;
}

.mobile-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text-color-black);
    font-size: 18px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.mobile-search {
    width: 200px;
    padding: 15px;
    overflow: hidden;
    position: relative;
}

.mobile-search form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    border: var(--text-color-red) dashed 1px;
    border-radius: 20px;
}

.mobile-search input {
    width: 100px;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
    border: none;
}

.mobile-search button {
    background: var(--background-button);
    border: none;
    outline: none;
    padding: 8px 8px;
    border-radius: 30px;
    cursor: pointer;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--text-color-white);
}

.mobile-search.active button {
    background: var(--main-background);
}

.mobile-search.active button i {
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(7465%) hue-rotate(0deg) brightness(91%) contrast(122%);
    color: var(--text-color-red);
}

.mobile-search input::placeholder {
    color: var(--text-color-red);
    font-weight: 500;
    font-size: 16px;
}

.mobile-header .mobile-search {
    flex: 1;
    padding: 0 10px;
    max-width: 170px;
    margin-right: 10px;
}

.mobile-header .mobile-search form {
    justify-content: flex-end;
}

.mobile-menu .mobile-search {
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid #ebebeb;
}

.mobile-menu .mobile-search form {
    justify-content: space-between;
}

.mobile-menu .mobile-search input {
    width: 100%;
    opacity: 1;
    border: 1px solid #ddd;
    padding: 10px 15px;
}

.mobile-menu .mobile-search button {
    position: absolute;
    right: 5px;
}

.mobile-nav {
    padding-bottom: 10px;
    flex: 1;
    background: #f8f9fa;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item:not(:first-child) {
    border-top: 1px solid #ebebeb;
}

.mobile-menu-item a {
    display: flex;
    align-items: center;
    padding: 15px;
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.mobile-menu-item.active a {
    color: var(--color-blue);
}

.mobile-menu-item i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    font-size: 14px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    border-top: 1px solid #ebebeb;
}

.mobile-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: var(--text-color-black);
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-social-link:hover {
    background-color: var(--background-blue);
    color: #fff;
}

.mobile-header {
    align-items: center;
    justify-content: space-between;
    padding: 0.9375rem 1rem;
    background-color: #fff;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-logo {
    max-width: 140px;
}

.mobile-header-logo img {
    max-width: 100%;
    height: auto;
}

.mobile-header-actions {
    display: flex;
}

.mobile-search-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Language Section */
.mobile-language-section {
    border-top: 1px solid #ddd;
    padding: 15px;
    margin-top: auto;
    background-color: #f8f9fa;
}

.mobile-language-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 550;
    color: var(--text-color-black);
}

.mobile-language-title i {
    margin-right: 6px;
    width: 16px;
    text-align: center;
    color: var(--text-color-blue);
    font-size: 14px;
}

.mobile-language-options {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color-black);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-lang-btn .flag-icon {
    width: 24px;
    height: 16px;
    margin-right: 12px;
    border-radius: 2px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.mobile-lang-btn span {
    flex: 1;
    font-weight: 500;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-menu-footer {
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #ddd;
    font-size: 14px;
}

.mobile-menu-footer .support-info {
    display: flex;
    justify-content: start;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-footer .support-info p {
    margin: 5px 0;
    color: #333;
}

.mobile-menu-footer .support-info a {
    color: #007bff;
    text-decoration: none;
}

/* MenuMobile submenu */
.mobile-has-submenu {
    position: relative;
}

.mobile-submenu-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-menu-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-submenu-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
    color: #888;
}

.mobile-submenu-arrow.rotated {
    transform: rotate(180deg);
}

.mobile-menu-item .active-span {
    font-weight: 600;
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background-color: #fafafa;
    border-radius: 8px;
    padding: 0;
    transition: 0.2s all;
}

.mobile-submenu.active {
    max-height: 800px;
    padding: 4px 0;
}

.mobile-submenu-item {
    list-style: none;
}

.mobile-submenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-submenu-level-3 {
    background-color: #f9f9f9;
    padding-left: 10px;
}

.mobile-submenu-level-3 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-4 {
    background-color: #f9f9f9;
    padding-left: 20px;
}

.mobile-submenu-level-4 .mobile-submenu-item a {
    font-size: 14px;
}

.mobile-submenu-level-5 {
    background-color: #f9f9f9;
    padding-left: 30px;
}

.mobile-submenu-level-5 .mobile-submenu-item a {
    font-size: 14px;
}

/** Static page **/
.static-page {
    background-color: var(--color-white);
}
.static-main {
    padding-top: 10px;
    padding-bottom: 30px;
}

.title-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blue);
    position: relative;
    letter-spacing: 1px;
    text-align: center;
    margin: 16px 0;
}

/** Breadcrumb **/

.breadcrumb-nav {
    margin: 16px 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 8px 0;
    background-color: var(--color-white);
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-black);
}

.breadcrumb-link {
    color: var(--color-black);
    text-decoration: none;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: color 0.2s ease-in-out;
}

.breadcrumb-link:hover {
    color: var(--color-red-primary);
    background-color: transparent;
}

.breadcrumb-current {
    font-weight: bold;
    color: var(--color-black);
    padding: 0.3rem 0.5rem;
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: var(--color-black);
}

/** Empty data **/
.empty-state {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 24px;
}

.empty-content i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-content h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-content p {
    color: #999;
    margin-bottom: 30px;
}

.empty-content a {
    color: #333;
}

/** Phone fixed (Figma) **/
.fixed-social {
    position: fixed;
    right: 0.75rem;
    bottom: 5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.fixed-social__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 100px;
    background: #ffffff;
    border: 0.5px solid #91caff;
    box-shadow: 0 0 4px rgba(201, 245, 250, 1);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fixed-social__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(145, 202, 255, 0.25);
}

.fixed-social__btn:focus-visible {
    outline: 2px solid #1980ff;
    outline-offset: 2px;
}

.fixed-social__icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    display: block;
}

/** Google translate **/
.skiptranslate {
    display: none;
}

#google_language_translator {
    clear: both;
    width: auto !important;
    text-align: right;
    display: none;
}

/** Go top **/
.go-top {
    position: fixed;
    bottom: 15px;
    right: 12px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 400ms linear;
    background: transparent;
}

.go-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.go-top::after {
    position: absolute;
    font-family: "Font Awesome 5 Pro";
    content: "\f077";
    text-align: center;
    line-height: 46px;
    font-size: 16px;
    font-weight: 900;
    color: var(--color-blue);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 400ms linear;
}

.go-top svg path {
    fill: none;
}

.go-top svg.progress-circle path {
    stroke: var(--color-blue);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 400ms linear;
}

/** CSS Content **/

.content-center-v1 {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1rem;
}

.content-center-v1 img {
    height: auto !important;
    margin-bottom: 1rem;
    max-width: 100% !important;

}

.content-center-v1 p {
    word-spacing: 1.5px;
}

.content-center-v1 p img {
    margin-bottom: 0px;
}

.content-center-v1 a:hover {
    text-decoration: underline;
}

.content-center-v1 ul,
.content-center-v1 ol {
    margin-left: 17px;
    margin-bottom: 1rem;
}

.content-center-v1 ul:last-child,
.content-center-v1 ol:last-child {
    margin-bottom: 0;
}

.coppy_right {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.coppy_right:hover {
    color: #0800e6;
    font-weight: 700;
    text-shadow: 0 0 5px rgba(1, 129, 248, 0.7);
    transform: translateY(-2px);
}


/* Recently viewed (detail) */
.product-viewed--detail {
    margin-top: 3rem;
    padding-bottom: 3rem;
}

.product-viewed__title,
.product__related-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: var(--color-text-primary, #1d2939);
}

.product-viewed__mount {
    min-height: 0;
}

.product-viewed__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 1279px) {
    .product-viewed__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1023px) {
    .product-viewed__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .product-viewed__grid {
        gap: 0.75rem;
    }
    .product-viewed--detail {
        margin-top: 1.5rem;
    }

}

.checkout-success-page{
    background-color: var(--color-white);
}

/* --------------------------------------------------------------------------
   Image search modal (BEM: image-search-modal)
   -------------------------------------------------------------------------- */

.image-search-modal {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.image-search-modal[hidden] {
    display: none !important;
}

.image-search-modal__backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(10, 49, 97, 0.55);
    backdrop-filter: blur(0.125rem);
}

.image-search-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 35rem;
    border-radius: 1rem;
    background-color: var(--color-white);
    box-shadow: 0 1.25rem 2.75rem rgba(15, 23, 42, 0.25);
    border: 1px solid var(--color-white-secondary);
}

.image-search-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--color-white-secondary);
}

.image-search-modal__title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-blue-primary);
}

.image-search-modal__close {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--color-white-secondary);
    border-radius: 0.5rem;
    background: var(--color-white);
    color: var(--color-brown);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.image-search-modal__close:hover,
.image-search-modal__close:focus-visible {
    background: var(--color-blue-tertiary);
    color: var(--color-blue-primary);
    outline: 2px solid rgba(0, 41, 129, 0.35);
    outline-offset: 2px;
}

.image-search-modal__body {
    padding: 1.25rem;
}

.image-search-modal__dropzone {
    display: block;
    cursor: pointer;
    border-radius: 0.75rem;
    padding: 0.5rem;
    background: var(--color-white-primary);
    border: 1px dashed rgba(0, 41, 129, 0.35);
}

.image-search-modal__dropzone:focus-within {
    outline: 2px solid rgba(0, 41, 129, 0.45);
    outline-offset: 2px;
}

.image-search-modal__dropzone-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 18rem;
    padding: 1.25rem 1rem;
    border-radius: 0.625rem;
    background: var(--color-white);
    text-align: center;
    font-size: 1rem;
}

.image-search-modal__dropzone.is-dragover .image-search-modal__dropzone-inner {
    background: var(--color-blue-tertiary);
}

.image-search-modal__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-blue-primary);
    font-size: 3rem;
}
.image-search-modal__hint {
    display: block;
    line-height: 1.45;
    color: var(--color-black);
}

.image-search-modal__hint--muted {
    color: var(--color-brown);
}

.image-search-modal__status {
    margin: 0.75rem 0 0;
    min-height: 1.25rem;
    line-height: 1.4;
    color: var(--color-blue-primary);
}

.image-search-modal__status.is-error {
    color: var(--color-red-primary);
}

.image-search-modal__status.is-loading {
    color: var(--color-blue);
}