.site-header__ticker {
    background-color: #e3a6ab;
    color: #ffffff;
    position: relative;
    padding: 6px 35px 6px 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001
}

.site-header__ticker-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center
}

.site-header__ticker-content {
    display: inline-flex;
    white-space: nowrap;
    animation: shTickerScroll 30s linear infinite
}

.site-header__ticker-content:hover {
    animation-play-state: paused
}

.site-header__ticker-content span {
    font-size: 12px;
    padding-right: 50px;
    font-weight: 300
}

@keyframes shTickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.site-header__ticker-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: #cccccc;
    color: #333333;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    transition: background-color 0.2s, color 0.2s
}

.site-header__ticker-close:hover {
    background: #ffffff;
    color: #000000
}

@media (max-width:768px) {
    .site-header__ticker {
        padding: 6px 35px 6px 15px
    }

    .site-header__ticker-content span {
        font-size: 13px;
        padding-right: 30px
    }
}

.site-header__logo img {
    height: 50px
}

body.sh-no-scroll {
    overflow: hidden
}

.site-header {
    background: #ffffff;
    width: 100%;
    position: relative;
    z-index: 1000
}

.site-header__wrap {
    display: flex;
    align-items: center
}

.site-header__top {
    padding: 15px 0 10px;
    border-bottom: 1px solid #f3f4f6
}

.site-header__top .site-header__wrap {
    gap: 65px;
    align-items: flex-start
}

.site-header__logo {
    font-weight: 700;
    font-size: 50px;
    color: #93B4E9;
    text-decoration: none;
    letter-spacing: -1px;
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.15s;
    display: flex
}

.site-header__logo:hover {
    color: #e3a6ab
}

.site-header__search {
    flex: 1;
    min-width: 0;
    position: relative
}

.site-header__search-box {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    overflow: hidden;
    height: 46px;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s
}

.site-header__search-box:hover {
    border-color: #93B4E9;
    box-shadow: 0 0 0 3px rgba(147, 180, 233, 0.15)
}

.site-header__search-placeholder {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-size: 14.5px;
    color: #9ca3af;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    user-select: none
}

.site-header__search-divider {
    width: 1px;
    height: 24px;
    background: #e5e7eb;
    flex-shrink: 0
}

.site-header__search-fake-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    font-size: 14.5px;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
    transition: color 0.15s
}

.site-header__search-box:hover .site-header__search-fake-btn {
    color: #e3a6ab
}

.site-header__search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 15px;
    font-size: 14.5px;
    color: #374151;
    background: transparent;
    min-width: 0
}

.site-header__search-input::placeholder {
    color: #9ca3af
}

.site-header__search-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 20px;
    border: none;
    background: transparent;
    font-size: 14.5px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.15s
}

.site-header__search-btn:hover {
    color: #e3a6ab
}

.site-header__search-btn--icon {
    padding: 0 14px
}

.site-header__search-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 0 16px;
    flex-wrap: wrap
}

.site-header__search-tag {
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s
}

.site-header__search-tag:hover {
    color: #e3a6ab
}

.site-header__search-sep {
    color: #d1d5db;
    font-size: 13px
}

.cp-search-suggest-dropdown {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: all 0.2s ease;
    transform: translateY(10px)
}

.cp-search-suggest-dropdown.is-active {
    display: block;
    opacity: 1;
    transform: translateY(0)
}

.cp-search-suggest-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 12px 0
}

.cp-search-suggest-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.cp-search-suggest-list li a {
    display: block;
    padding: 8px 12px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.15s;
    margin-bottom: 2px
}

.cp-search-suggest-list li a:hover {
    background: #f3f4f6;
    color: #e3a6ab
}

.cp-search-suggest-products {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cp-suggest-product {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.15s
}

.cp-suggest-product:hover {
    background: #f3f4f6
}

.cp-suggest-product img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee
}

.cp-suggest-product-info h4 {
    font-size: 13.5px;
    font-weight: 500;
    color: #374151;
    margin: 0 0 4px 0;
    line-height: 1.3
}

.cp-suggest-product-info .price-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.cp-suggest-product-info .price {
    font-size: 13px;
    font-weight: 700;
    color: #e3a6ab
}

.cp-suggest-product-info .compare-price {
    font-size: 12px;
    font-weight: 400;
    color: #9ca3af;
    text-decoration: line-through
}

.cp-search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 0;
    color: #6b7280;
    font-size: 13.5px;
    font-weight: 500
}

.cp-search-loading__spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top-color: #e3a6ab;
    border-radius: 50%;
    animation: cp-search-spin 0.7s linear infinite
}

@keyframes cp-search-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0
}

.site-header__account-wrap {
    position: relative
}

.site-header__account {
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #4b5563;
    transition: color 0.15s;
    padding: 0
}

.site-header__account-text {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2
}

.site-header__account-login {
    font-size: 14px;
    color: #e3a6ab;
    font-weight: 500
}

.site-header__account-label {
    font-size: 14px;
    color: #e3a6ab;
    font-weight: 400
}

.site-header__cart-group {
    display: flex;
    align-items: center;
    gap: 16px
}

.site-header__icon-btn--badge {
    position: relative
}

.site-header__badge {
    position: absolute;
    top: -1px;
    right: -1px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    line-height: 1;
    width: 19px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 19px
}

.site-header__badge--red {
    background-color: #e3a6ab
}

.site-header__badge--yellow {
    background-color: #e3a6ab
}

.site-header__account:hover {
    color: #e3a6ab
}

.site-header__account svg {
    flex-shrink: 0
}

.site-header__account-text {
    display: flex;
    flex-direction: column;
    line-height: 1.45;
    text-align: left;
    gap: 0
}

.site-header__account-login {
    font-size: 14px;
    color: #000
}

.site-header__account-label {
    font-size: 12.5px;
    font-weight: 500;
    color: #e3a6ab
}

.site-header__account:hover .site-header__account-login {
    color: #e3a6ab;
    display: block
}

.site-header__account-dd {
    position: absolute;
    top: calc(100%+14px);
    right: 0;
    width: 230px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 300
}

.site-header__account-dd.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.site-header__account-dd::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: rotate(45deg)
}

.site-header__account-dd-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 18px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.12s, color 0.12s
}

.site-header__account-dd-link:hover {
    background: #f0f5ff;
    color: #e3a6ab
}

.site-header__account-dd-link--primary {
    font-weight: 600;
    color: #e3a6ab
}

.site-header__account-dd-link--primary:hover {
    background: #eff6ff
}

.site-header__account-dd-sep {
    height: 1px;
    background: #f3f4f6;
    margin: 6px 0
}

.site-header__mobile-icons {
    display: none
}

.site-header__icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    color: #4b5563;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0
}

.site-header__top .site-header__hamburger {
    display: none
}

.site-header__icon-btn:hover {
    background: #f3f4f6;
    color: #e3a6ab
}

.site-header__hamburger {
    flex-direction: column;
    gap: 5px;
    padding: 10px 0
}

.site-header__bar {
    display: block;
    width: 26px;
    height: 2px;
    background: #1f2937;
    border-radius: 3px;
    transition: transform 0.22s, opacity 0.22s
}

.site-header__hamburger[aria-expanded="true"] .site-header__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.site-header__hamburger[aria-expanded="true"] .site-header__bar:nth-child(2) {
    opacity: 0
}

.site-header__hamburger[aria-expanded="true"] .site-header__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.site-header__search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s, visibility 0.22s;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.site-header__search-overlay.is-open {
    opacity: 1;
    visibility: visible
}

.site-header__search-overlay-inner {
    width: 100%;
    background: #fff;
    padding: 24px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    transition: transform 0.22s
}

.site-header__search-overlay.is-open .site-header__search-overlay-inner {
    transform: translateY(0)
}

.site-header__search-overlay-form {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #93B4E9;
    border-radius: 9999px;
    padding: 0 8px 0 20px;
    height: 54px;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(147, 180, 233, 0.15)
}

.site-header__search-overlay-form svg {
    color: #93B4E9;
    flex-shrink: 0
}

.site-header__search-overlay-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #1f2937;
    background: transparent;
    min-width: 0
}

.site-header__search-overlay-input::placeholder {
    color: #9ca3af
}

.site-header__search-overlay-btn {
    padding: 10px 22px;
    background: #e3a6ab;
    color: #fff;
    border: none;
    border-radius: 9999px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    flex-shrink: 0
}

.site-header__search-overlay-btn:hover {
    background: #6282be
}

.site-header__search-overlay-close {
    width: 38px;
    height: 38px;
    border: none;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s
}

.site-header__search-overlay-close:hover {
    background: #fee2e2;
    color: #e3a6ab
}

.site-header__search-suggest {
    margin-top: 18px
}

.site-header__search-suggest-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px
}

.site-header__search-suggest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.site-header__search-suggest-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 13.5px;
    color: #374151;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s
}

.site-header__search-suggest-tag:hover {
    border-color: #93B4E9;
    color: #e3a6ab;
    background: #f0f5ff
}

.site-header__mobile-account {
    position: relative
}

.site-header__mobile-account-dd {
    position: absolute;
    top: calc(100%+8px);
    right: 0;
    width: 190px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 1300
}

.site-header__mobile-account-dd.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.site-header__mobile-account-dd::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid #e5e7eb;
    border-top: 1px solid #e5e7eb;
    transform: rotate(45deg)
}

.site-header__mobile-account-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 14.5px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.12s, color 0.12s
}

.site-header__mobile-account-link:hover {
    background: #f0f5ff;
    color: #e3a6ab
}

.site-header__mobile-account-link--primary {
    color: #e3a6ab;
    font-weight: 600
}

.site-header__mobile-account-link--primary:hover {
    background: #eff6ff
}

.site-header__mobile-search {
    display: none;
    background: #fff;
    border-bottom: 1px solid #f3f4f6
}

.site-header__mobile-search .site-header__wrap {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative
}

.site-header__mobile-search .site-header__search-box {
    height: 40px;
    cursor: default;
    width: 100%;
    background: #f3f8fd;
    border-radius: 3px;
    margin-bottom: 3px
}

.site-header__mobile-search .site-header__search-box:hover {
    box-shadow: none
}

.site-header__nav {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0
}

.site-header__wrap--nav {
    justify-content: center
}

.site-header__catalog-wrap {
    position: relative;
    padding-right: 30px
}

.site-header__catalog {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 17px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s;
    flex-shrink: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-transform: uppercase
}

.site-header__catalog:hover {
    color: #e3a6ab
}

.site-header__catalog-dd {
    position: absolute;
    top: 100%;
    left: 0;
    width: 260px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 2000
}

.site-header__catalog-wrap:hover .site-header__catalog-dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.site-header__catalog-menu {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    position: relative
}

.site-header__catalog-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 14.5px;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.15s, color 0.15s;
    font-weight: 500
}

.site-header__catalog-item:hover>.site-header__catalog-link {
    background-color: #f9fafb;
    color: #e3a6ab
}

.site-header__catalog-arrow {
    color: #9ca3af;
    transition: transform 0.15s
}

.site-header__catalog-item:hover>.site-header__catalog-link .site-header__catalog-arrow {
    color: #e3a6ab
}

.site-header__catalog-sub {
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 100%;
    height: max-content;
    background: #fff;
    border-radius: 0 8px 8px 0;
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    border-left: 1px solid #e5e7eb;
    padding: 24px;
    display: grid;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    width: max-content
}

.site-header__catalog-item:hover .site-header__catalog-sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0)
}

.site-header__catalog-sub-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.site-header__catalog-sub-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f4f6
}

.site-header__catalog-sub-col a {
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.15s
}

.site-header__catalog-sub-col a:hover {
    color: #e3a6ab
}

.site-header__nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    justify-content: space-between;
    width: 100%
}

.site-header__nav-item {
    position: relative;
    text-transform: uppercase;
    color: #000
}

.site-header__nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 13px 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: color 0.15s;
    text-transform: uppercase;
    font-weight: 600
}

.site-header__nav-link:hover,
.site-header__nav-item--dd.is-open .site-header__nav-link {
    color: #e3a6ab
}

.site-header__nav-link--a {
    cursor: pointer
}

.site-header__chevron {
    flex-shrink: 0;
    margin-top: 1px;
    transition: transform 0.22s
}

.site-header__nav-item--dd.is-open .site-header__chevron {
    transform: rotate(180deg)
}

.site-header__dropdown {
    position: absolute;
    top: calc(100%+1px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 0 solid #e5e7eb;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 200
}

.site-header__nav-item--dd.is-open .site-header__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0)
}

@media (min-width:1025px) {
    .site-header__nav-item--dd:hover .site-header__chevron {
        transform: rotate(180deg)
    }

    .site-header__nav-item--dd:hover .site-header__dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0)
    }
}

.site-header__dropdown-list {
    list-style: none
}

.site-header__dropdown-list li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.12s, color 0.12s;
    white-space: nowrap
}

.site-header__dropdown-list li a:hover {
    background: #f0f5ff;
    color: #e3a6ab
}

.site-header__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s
}

.site-header__overlay.is-visible {
    opacity: 1;
    pointer-events: auto
}

.site-header__drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 310px;
    height: 100%;
    background: #fff;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain
}

.site-header__drawer.is-open {
    transform: translateX(0)
}

.site-header__drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0
}

.site-header__drawer-logo {
    font-weight: 700;
    font-size: 30px;
    color: #93B4E9;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex
}

.site-header__drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s
}

.site-header__drawer-close:hover {
    background: #fee2e2;
    color: #e3a6ab
}

.site-header__drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0
}

.site-header__drawer-list {
    list-style: none
}

.site-header__drawer-item {
    border-bottom: 1px solid #f9fafb
}

.site-header__drawer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.15s, background 0.15s
}

.site-header__drawer-link:hover {
    background: #f0f5ff;
    color: #e3a6ab
}

.site-header__drawer-link--catalog {
    font-weight: 600
}

.site-header__drawer-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s, background 0.15s
}

.site-header__drawer-toggle:hover {
    background: #f0f5ff;
    color: #e3a6ab
}

.site-header__drawer-chevron {
    flex-shrink: 0;
    transition: transform 0.22s;
    color: #9ca3af
}

.site-header__drawer-item--sub.is-open>.site-header__drawer-toggle {
    color: #e3a6ab;
    background: #f0f5ff
}

.site-header__drawer-item--sub.is-open>.site-header__drawer-toggle .site-header__drawer-chevron {
    transform: rotate(180deg);
    color: #e3a6ab
}

.site-header__drawer-sub {
    list-style: none;
    background: #fafafa;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease
}

.site-header__drawer-item--sub.is-open>.site-header__drawer-sub {
    max-height: 2000px
}

.site-header__drawer-sub li a {
    display: block;
    padding: 11px 20px 11px 36px;
    font-size: 14px;
    color: #4b5563;
    text-decoration: none;
    border-top: 1px solid #f3f4f6;
    transition: color 0.15s, background 0.15s
}

.site-header__drawer-sub li a:hover {
    color: #e3a6ab;
    background: #f0f5ff
}

.site-header__drawer-footer {
    border-top: 1px solid #f3f4f6;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0
}

.site-header__drawer-hotline,
.site-header__drawer-account {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.15s
}

.site-header__drawer-hotline {
    color: #e3a6ab
}

.site-header__drawer-hotline:hover {
    color: #5a79b8
}

.site-header__drawer-account {
    color: #374151
}

.site-header__drawer-account:hover {
    color: #e3a6ab
}

@media (max-width:1024px) {
    .site-header__logo {
        font-size: 40px
    }

    .site-header__top .site-header__wrap {
        gap: 18px
    }

    .site-header__actions {
        gap: 20px
    }

    .site-header__hotline-number {
        font-size: 15px
    }

    .site-header__nav-list {
        gap: 18px
    }

    .site-header__nav-link,
    .site-header__catalog {
        font-size: 12.5px
    }
}

@media(max-width:990px) {
    .site-header__logo img {
        height: 40px
    }
}

@media (max-width:990px) {
    .site-header__search-box {
        border-radius: 2px
    }

    .site-header__top .site-header__hamburger {
        display: flex;
        justify-self: start
    }

    .site-header__mobile-icons {
        display: flex;
        align-items: center;
        gap: 1px;
        justify-self: end
    }

    .site-header__search {
        display: none
    }

    .site-header__actions {
        display: none
    }

    .site-header__nav {
        display: none
    }

    .site-header__mobile-search {
        display: block
    }

    .site-header__mobile-search .site-header__wrap {
        padding-top: 0;
        padding-bottom: 5px
    }

    .site-header__top {
        padding: 13px 0 10px;
        border-bottom: unset
    }

    .site-header__top .site-header__wrap {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        gap: 0
    }

    .site-header__logo {
        font-size: 32px;
        padding-top: 0;
        justify-self: center;
        margin: 0
    }

    .site-header__cart-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e3a6ab;
        text-decoration: none
    }

    .site-header__cart-count {
        position: absolute;
        top: -2px;
        right: -3px;
        background: #e3a6ab;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .site-header__mobile-account .site-header__icon-btn {
        color: #e3a6ab
    }
}

@media (max-width:480px) {
    .site-header__logo {
        font-size: 28px
    }

    .site-header__drawer {
        width: 290px
    }

    .site-header__search-overlay-inner {
        padding: 18px 0
    }

    .site-header__search-overlay-form {
        height: 48px
    }

    .site-header__search-overlay-btn {
        padding: 8px 16px;
        font-size: 13.5px
    }
}

.site-header__cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s
}

.site-header__cart-overlay.is-open {
    opacity: 1;
    visibility: visible
}

.site-header__cart-drawer {
    position: absolute;
    top: calc(100%+15px);
    right: -10px;
    width: 380px;
    max-width: calc(100vw - 30px);
    background: #fff;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease-in-out;
    font-family: inherit;
    color: #333
}

.site-header__cart-drawer::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.04);
    z-index: -1
}

.site-header__cart-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

@media (max-width:991px) {
    .site-header__cart-drawer {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        transform: translateY(100%);
        max-height: 85vh
    }

    .site-header__cart-drawer.is-open {
        transform: translateY(0)
    }

    .site-header__cart-drawer::before {
        display: none
    }
}

.sh-cart-drawer__header {
    padding: 16px 24px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #f0f0f0
}

.sh-cart-drawer__close {
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    letter-spacing: 0.05em;
    padding: 4px 0
}

.sh-cart-drawer__close:hover {
    color: #000
}

.sh-cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 0 24px 24px;
    max-height: 400px
}

.sh-cart-drawer__items {
    margin-bottom: 32px
}

.sh-cart-drawer__item {
    display: flex;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0
}

.sh-cart-drawer__item-img {
    width: 70px;
    height: 90px;
    object-fit: contain;
    background: #f9f9f9
}

.sh-cart-drawer__item-info {
    flex: 1;
    display: flex;
    flex-direction: column
}

.sh-cart-drawer__item-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: #333
}

.sh-cart-drawer__item-mid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.sh-cart-drawer__qty {
    display: flex;
    align-items: center;
    gap: 12px
}

.sh-cart-drawer__qty button {
    background: none;
    border: none;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    padding: 0
}

.sh-cart-drawer__qty button:hover {
    color: #333
}

.sh-cart-drawer__qty span {
    font-size: 14px;
    min-width: 16px;
    text-align: center
}

.sh-cart-drawer__qty-input {
    width: 36px;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    padding: 2px 0;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    background: #ffffff
}

.sh-cart-drawer__empty {
    text-align: center;
    padding: 40px 15px;
    color: #6b7280
}

.sh-cart-drawer__empty-icon {
    margin: 0 auto 12px;
    display: block
}

.sh-cart-drawer__empty-text {
    margin: 0;
    font-size: 14px;
    font-weight: 500
}

.sh-cart-drawer__item-price {
    font-size: 15px;
    font-weight: 600
}

.sh-cart-drawer__item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.sh-cart-drawer__remove {
    background: none;
    border: none;
    font-size: 13px;
    color: #666;
    padding: 0;
    cursor: pointer
}

.sh-cart-drawer__remove:hover {
    text-decoration: underline;
    color: #000
}

.sh-cart-drawer__item-unit {
    font-size: 12px;
    color: #999
}

.sh-cart-drawer__upsell-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #444
}

.sh-cart-drawer__upsell-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 12px
}

.sh-cart-drawer__upsell-list::-webkit-scrollbar {
    height: 4px
}

.sh-cart-drawer__upsell-list::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 4px
}

.sh-cart-drawer__upsell-item {
    flex: 0 0 120px;
    border: 1px solid #eee;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column
}

.sh-cart-drawer__upsell-img-wrap {
    height: 100px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.sh-cart-drawer__upsell-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.sh-cart-drawer__upsell-name {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.sh-cart-drawer__upsell-bottom {
    margin-top: auto
}

.sh-cart-drawer__upsell-brand {
    display: block;
    font-size: 12px;
    color: #9eb5d8;
    margin-bottom: 4px
}

.sh-cart-drawer__upsell-price {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: #333
}

.sh-cart-drawer__footer {
    padding: 24px;
    border-top: 1px solid #f0f0f0;
    background: #fff
}

.sh-cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px
}

.sh-cart-drawer__subtotal span {
    font-size: 16px;
    font-weight: 600;
    color: #444
}

.sh-cart-drawer__subtotal strong {
    font-size: 18px;
    font-weight: 700;
    color: #333
}

.sh-cart-drawer__checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #9ab4db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s
}

.sh-cart-drawer__checkout:hover {
    background: #84a2ce;
    color: #fff
}

.site-header__nav-item a {
    color: #333;
    font-weight: 500
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap
}

.justify-content-center {
    justify-content: center
}

.mb-0 {
    margin-bottom: 0
}

.page-item .page-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    color: #475569;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out
}

.page-item:not(.disabled):not(.active) .page-link:hover {
    z-index: 2;
    color: #fff;
    background-color: #e3a6ab;
    border-color: #e3a6ab
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #e3a6ab;
    border-color: #e3a6ab
}

.page-item.disabled .page-link {
    color: #cbd5e1;
    pointer-events: none;
    background-color: #f8fafc;
    border-color: #e2e8f0
}

.kho-voucher img {
    height: 38px
}

.site-header__nav-item a:hover {
    color: #e3a6ab
}

@media(max-width:990px) {
    .site-header__drawer-head a img {
        height: 27px
    }

    a.site-header__icon-btn.site-header__wishlist-btn {
        display: none
    }

    .site-header__top .site-header__account-wrap {
        display: none
    }

    .site-header__actions {
        display: block;
        position: absolute
    }

    .site-header__cart-group button.site-header__icon-btn.site-header__cart-btn.js-cart-open {
        display: none
    }

    .site-header__cart-drawer.is-open {
        top: 0;
        max-height: 100%;
        height: 100%
    }

    .sh-cart-drawer__body {
        max-height: 74vh
    }
}

.kho-voucher {
    display: flex;
    align-items: center
}

.kho-voucher a {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 4px
}

.kho-voucher a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: kho-voucher-shine 3s infinite;
    z-index: 2;
    pointer-events: none
}

@keyframes kho-voucher-shine {
    0% {
        left: -100%
    }

    20% {
        left: 200%
    }

    100% {
        left: 200%
    }
}

@media (max-width:991px) {
    .site-header__drawer-item.kho-voucher {
        border: unset
    }

    .kho-voucher img {
        height: 60px
    }

    .site-header {
        position: sticky;
        top: 0;
        box-shadow: 0 0 25px rgb(0 0 0 / 10%)
    }
}

.site-header__nav-item--dd-sub {
    position: relative
}

.site-header__nav-item--dd-sub>a {
    display: flex !important;
    justify-content: space-between;
    align-items: center
}

.site-header__dropdown-sub {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
    transform: translateX(10px);
    z-index: 201
}

@media (min-width:1025px) {
    .site-header__nav-item--dd-sub:hover>.site-header__dropdown-sub {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0)
    }
}

.site-header__drawer-item--sub.is-open>.site-header__drawer-sub {
    max-height: 2500px
}

.site-header__drawer-toggle--sub {
    padding: 11px 20px 11px 36px;
    border-top: 1px solid #f3f4f6;
    font-size: 14px;
    color: #4b5563
}

.site-header__drawer-item--sub.is-open>.site-header__drawer-toggle--sub {
    color: #e3a6ab;
    background: #f0f5ff
}

.site-header__drawer-sub .site-header__drawer-sub li a {
    padding-left: 52px
}

.site-header__wrap--nav {
    position: relative
}

.site-header__nav-item--static {
    position: static !important
}

.site-header__dropdown--mega {
    width: 100%;
    padding: 30px 40px;
    display: flex;
    gap: 80px;
    left: 0;
    transform: translateY(6px)
}

.site-header__nav-item--dd.is-open .site-header__dropdown--mega,
.site-header__nav-item--dd:hover .site-header__dropdown--mega {
    transform: translateY(0)
}

.site-header__mega-col {
    min-width: 160px
}

.site-header__mega-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4b5563;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    transition: color 0.15s
}

.site-header__mega-title:hover {
    color: #e3a6ab
}

.site-header__mega-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.site-header__mega-list li a {
    font-size: 14.5px;
    color: #6b7280;
    text-decoration: none;
    text-transform: none;
    font-weight: 300;
    transition: color 0.15s;
    display: block
}

.site-header__mega-list li a:hover {
    color: #e3a6ab
}

image-element {
    display: flex
}

@media(min-width:1900px) {
    .site-header__nav-list {
        gap: 0 30px
    }
}

.ws-quickview-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    font-family: inherit;
    color: #333;
    width: 100%
}

@media (min-width:768px) {
    .ws-quickview-container {
        flex-direction: row
    }
}

.ws-quickview-container * {
    box-sizing: border-box
}

.ws-quickview-container .ws-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.ws-quickview-container .ws-product-info {
    display: flex;
    gap: 15px;
    align-items: flex-start
}

.ws-quickview-container .ws-product-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 1px solid #eee;
    border-radius: 8px
}

.ws-quickview-container .ws-product-details {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.ws-quickview-container .ws-brand {
    font-size: 13px;
    color: #666
}

.ws-quickview-container .ws-brand a {
    color: #e3a6ab;
    text-decoration: none;
    text-transform: uppercase
}

.ws-quickview-container .ws-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4
}

.ws-quickview-container .ws-promotions {
    border: 1px solid #f97316;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    position: relative
}

.ws-quickview-container .ws-promotions-title {
    font-size: 15px;
    font-weight: 600;
    color: #9cbeec;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px
}

.ws-quickview-container .ws-promotions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ws-quickview-container .ws-promo-item {
    display: flex;
    gap: 10px;
    font-size: 14px
}

.ws-quickview-container .ws-promo-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #60a5fa;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0
}

.ws-quickview-container .ws-promo-text {
    display: flex;
    flex-direction: column
}

.ws-quickview-container .ws-promo-date {
    font-size: 12px;
    color: #e3a6ab;
    margin-top: 2px
}

.ws-quickview-container .ws-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.ws-quickview-container .ws-price-section {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ws-quickview-container .ws-main-price {
    display: flex;
    align-items: baseline;
    gap: 6px
}

.ws-quickview-container .ws-main-price .js-ws-current-price {
    font-size: 26px;
    font-weight: 700;
    color: #ea580c
}

.ws-quickview-container .ws-main-price .js-ws-current-price u {
    text-decoration: underline
}

.ws-quickview-container .ws-main-price .ws-unit {
    font-size: 17px;
    font-weight: 400;
    color: #374151
}

.ws-quickview-container .ws-compare-price {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400
}

.ws-quickview-container .ws-compare-price u {
    text-decoration: underline
}

.ws-quickview-container .ws-tiers-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px
}

.ws-quickview-container .ws-tier-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ws-quickview-container .ws-tier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s
}

.ws-quickview-container .ws-tier-item.active {
    border-color: #9cbeec;
    background-color: #f0f9ff;
    position: relative
}

.ws-quickview-container .ws-tier-item.active::before {
    content: "✓";
    position: absolute;
    top: -10px;
    left: -10px;
    background: #9cbeec;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px
}

.site-header-top {
    background-color: #e3a6ab
}

.ws-quickview-container .ws-tier-name {
    display: flex;
    align-items: center;
    gap: 8px
}

.ws-quickview-container .ws-tier-badge svg {
    height: 12px;
    margin-bottom: 6px
}

.ws-quickview-container .ws-tier-badge {
    font-size: 12px;
    color: #9cbeec;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700
}

.ws-quickview-container .ws-tier-price {
    font-weight: 500
}

.ws-quickview-container .ws-cart-section {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.ws-quickview-container .ws-subtotal-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-size: 14px
}

.ws-quickview-container .ws-subtotal-val {
    font-size: 18px;
    font-weight: bold
}

.ws-quickview-container .ws-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px
}

@media (max-width:480px) {
    .ws-quickview-container .ws-cart-actions {
        flex-wrap: wrap
    }

    .ws-quickview-container .ws-cart-actions>* {
        width: 100%
    }
}

.ws-quickview-container .ws-qty-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
    height: 40px
}

.ws-quickview-container .ws-qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 18px;
    color: #e3a6ab;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.ws-quickview-container .ws-qty-input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    -moz-appearance: textfield
}

.ws-quickview-container .ws-qty-input::-webkit-outer-spin-button,
.ws-quickview-container .ws-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

.ws-quickview-container .ws-add-btn {
    flex: 1;
    background: #e3a6ab;
    color: #fff;
    border: none;
    border-radius: 20px;
    height: 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center
}

.ws-quickview-container .ws-add-btn:hover {
    background: #0056b3
}

.ws-quickview-container .ws-add-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #cbd5e1
}

nav.site-header__nav .site-header__cart-group {
    display: none
}

nav.site-header__nav.site-header__nav-active .site-header__cart-group {
    display: flex
}

@media(max-width:991px) {
    .ws-quickview-container .ws-add-btn {
        flex: unset;
        width: max-content;
        padding: 0 20px
    }

    .ws-quickview-container .ws-qty-wrap {
        width: max-content
    }
}