/* GENERAL */
:root {
    touch-action: pan-x pan-y;
}

* {
    padding: 0;
    margin: 0;
    outline: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

li {
    list-style: none;
}

button {
    padding: 0;
    border: none;
    font: inherit;
    color: inherit;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

button, button:focus {
    outline: none;
}

input, textarea {
    -webkit-appearance: none;
    border: 0;
    border-radius: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #FFFFFF inset;
    -webkit-text-fill-color: #30223B;
}

::-moz-placeholder {
    opacity: 1;
}

input, textarea, select {
    font-family: inherit;
}

strong, b {
    font-weight: 600;
}

svg * {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

img {
    object-fit: cover;
    object-position: center;
}

html, body {
    height: 100%;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -moz-text-size-adjust: none;
}

html.scroll-disable {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    color: #30223B;
    background: #F7F9FC;
}

main {
    flex: 1;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--md {
    max-width: 1400px;
}

.container--lg {
    max-width: 1440px;
}

.title-section {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    font-weight: 500;
    line-height: 60px;
    text-transform: uppercase;
    text-align: center;
    color: #5E57CE;
}

/* BUTTONS */
.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 20px;
    border-radius: 26px;
    background: linear-gradient(92deg, #E883F8 0%, #9BFAFC 50%, #665EF5 100%);
    background-size: 100% 100%;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    text-align: center;
}

.btn:hover {
    background-size: 180% 180%;
    box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25), 0 8px 20px rgba(102, 94, 245, 0.25);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0.35) 50%, rgba(255, 255, 255, 0.18) 55%, transparent 80%);
    transform: translateX(-150%);
    animation: btn-shine 3s ease infinite;
    pointer-events: none;
}

@keyframes btn-shine {
    0% {
        transform: translateX(-150%);
    }

    40% {
        transform: translateX(150%);
    }

    100% {
        transform: translateX(150%);
    }
}

/* FIELDS */
.fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.field {
    position: relative;
    display: flex;
    flex-direction: column;
}

.field__inner {
    position: relative;
    display: flex;
    flex-direction: column;
}

.field__input {
    width: 100%;
    height: 38px;
    padding: 14px 30px 4px 30px;
    border-radius: 50px;
    border: 1px solid #30223B;
    background: #FFF;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.24px;
}

.field--sm .field__input {
    height: 30px;
    padding: 4px 30px 4px 30px;
}

.field--lg .field__input {
    height: 48px;
    padding: 24px 30px 6px 30px;
    border-radius: 10px;
}

.field--textarea .field__input {
    min-height: 48px;
    resize: none;
}

.field--notes .field__input {
    min-height: 65px;
    border-radius: 20px;
}

.field--textarea {
    position: relative;
}

.field--promo {
    flex: auto;
}

.field__label {
    position: absolute;
    top: 9px;
    left: 30px;
    right: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.24px;
    color: rgba(48, 34, 59, 0.60);
    transform: translateY(0);
    pointer-events: none;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.field--lg .field__label {
    top: 14px;
}

.field--sm .field__label {
    top: 5px;
}

.field--file .field__label {
    right: 56px;
}

.field--select.field--sm .field__label {
    color: #30223B;
}

.field--notes .field__label {
    display: block;
    line-height: 16px;
    word-break: unset;
}

.field--promo .field__label {
    top: 7px;
    left: 20px;
    right: 20px;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label,
.field--filled .field__label,
.field--select:not(.field--sm) .select.is-open + .field__label,
.field--file.is-select .field__label {
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0.2px;
    transform: translate(1px, -6px);
}

.field--sm .field__input:focus + .field__label,
.field--sm .field__input:not(:placeholder-shown) + .field__label,
.field--sm.field--filled .field__label,
.field--notes .field__input:focus + .field__label,
.field--notes .field__input:not(:placeholder-shown) + .field__label,
.field--promo .field__input:focus + .field__label,
.field--promo .field__input:not(:placeholder-shown) + .field__label {
    display: none;
}

.field__resize {
    position: absolute;
    right: 3px;
    bottom: 3px;
    width: 13px;
    height: 13px;
    cursor: ns-resize;
    z-index: 2;
}

.field--notes .field__resize {
    right: 4px;
    bottom: 4px;
    width: 15px;
    height: 14px;
}

.field__resize::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/icons/resize.svg') center/contain no-repeat;
}

.field__error {
    display: none;
    margin-top: 5px;
    margin-left: 20px;
    font-size: 11px;
    line-height: 16px;
    color: #FF4D4D;
}

.field--error .field__error {
    display: flex;
}

.field--error .field__input {
    border-color: #FF4D4D;
}

.field--error .field__label {
    color: #FF4D4D;
}

.field--file.field--error .field__inner {
    border-color: #FF4D4D;
}

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

.field-group .field__label {
    width: calc(100% - 60px);
    text-align: center;
}

.field-group .field__input {
    text-align: center;
}

.field-group .field__error {
    position: absolute;
    bottom: -20px;
    left: 0;
}

.field--file .field__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 48px;
    padding: 24px 56px 6px 30px;
    border-radius: 10px;
    border: 1px solid #30223B;
    background: #FFF;
    cursor: pointer;
}

.field__icon {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    z-index: 1;
}

.field__filename {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.24px;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.field--file.is-select .field__filename {
    opacity: 1;
}

.hint {
    font-size: 11px;
    font-style: italic;
    font-weight: 300;
    line-height: 16px;
    color: rgba(48, 34, 59, 0.80);
    margin-top: 5px;
    margin-left: 20px;
}

.color-picker {
    display: flex;
    flex-direction: column;
}

.color-picker__selected {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    width: 100%;
    min-height: 30px;
    padding: 4px 20px;
    border-radius: 50px;
    border: 1px solid #30223B;
    background: #FFF;
    margin-bottom: 7px;
}

.color-picker__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.color-picker__item {
    position: relative;
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(48, 34, 59, 0.50);
    cursor: pointer;
}

.color-picker__item::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    z-index: -1;
    width: 24px;
    height: 24px;
    background: url('../images/icons/color-checked-v2.svg') center/contain no-repeat;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.color-picker__item:hover::before,
.color-picker__item:has(input:checked)::before {
    opacity: 1;
}

.switch {
    padding: 6px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(102, 94, 245, 0.25) 0%, rgba(133, 126, 247, 0.25) 100%);
}

.switch__inner {
    position: relative;
    display: flex;
    border-radius: 50px;
    background: #FFF;
    box-shadow: inset 0 0 0 1px rgba(48, 34, 59, 0.60);
}

.switch__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 30px;
    border-radius: 50px;
    border: 1px solid #30223B;
    background: rgba(102, 94, 245, 0.80);
    transform: translateX(0);
    -webkit-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.switch:has(.switch__item:last-child input:checked) .switch__thumb {
    transform: translateX(100%);
}

.switch__item {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 20px;
    cursor: pointer;
    z-index: 2;
}

.switch__item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.switch__item span {
    font-size: 14px;
    letter-spacing: 0.28px;
    text-transform: capitalize;
    text-align: center;
    user-select: none;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.switch__item input:checked + span {
    color: #FFF;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox__mark {
    position: relative;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 2px;
    border: 1px solid rgba(48, 34, 59, 0.60);
    background: #FFF;
}

.checkbox__mark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: url('../images/icons/check-v2.svg') center/contain no-repeat;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.checkbox input:checked + .checkbox__mark::after {
    opacity: 1;
}

.checkbox__text {
    font-size: 11px;
    line-height: 19px;
}

.checkbox__text--italic {
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.22px;
    color: rgba(48, 34, 59, 0.80);
}

.checkbox__text a {
    display: block;
    width: max-content;
    text-decoration: underline;
}

.checkbox__text span {
    font-weight: 600;
}

.checkbox__text .star {
    color: #E883F8;
}

/* SELECT */
.select {
    position: relative;
}

.select__trigger {
    display: flex;
    align-items: center;
}

.select__value {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    text-align: left;
    opacity: 0;
}

.field--filled .select__value {
    opacity: 1;
}

.select__arrow {
    display: flex;
    position: absolute;
    right: 18px;
    top: 16px;
    z-index: 1;
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    -ms-transition: transform 0.3s ease, opacity 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.field--sm .select__arrow {
    top: 12px;
}

.select.is-open .select__arrow {
    transform: rotate(180deg);
}

.select__trigger:disabled .select__arrow {
    opacity: 0;
}

.select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 8px;
    border-radius: 16px;
    background: #FFF;
    box-shadow: 0 3px 5px 0 rgba(102, 94, 245, 0.25);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.select.is-open .select__dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.select__options {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 222px;
    overflow-y: auto;
}

.select__option {
    width: 100%;
    padding: 3px 10px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
}

.select__option:hover {
    background: rgba(102, 94, 245, 0.15);
}

.select__option.is-active {
    background: #DCFDFE;
}

.select__option--checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 7px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.select__option--checkbox:has(input:checked) {
    background: #DCFDFE;
}

.select__option-checkmark {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #857EF7;
    flex-shrink: 0;
}

.select__option-checkmark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 7px;
    background: url('../images/icons/check.svg') center/contain no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.select__option--checkbox:has(input:checked) .select__option-checkmark::before {
    opacity: 1;
}

/* SLIDERS */
.slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 52px;
}

.slider__dots .slick-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider__dots .slick-dots li {
    line-height: 0;
}

.slider__dots .slick-dots button {
    width: 20px;
    height: 20px;
    border: 2px solid #30223B;
    border-radius: 50%;
    background: #F7F9FC;
    font-size: 0;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.slider__dots .slick-active button {
    border-color: #928DF7;
    background: #928DF7;
}

.slider__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.slider__arrow:hover {
    opacity: 0.7;
}

/* PAGINATION */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 50px;
}

.pagination__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.pagination__btn:hover {
    opacity: 0.7;
}

.pagination__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid #30223B;
    border-radius: 50%;
    background: #F7F9FC;
    font-size: 12px;
    text-align: center;
}

.pagination__link:hover {
    background: #8C86F8;
    border-color: #8C86F8;
    color: #FFFFFF;
}

.pagination__link--active {
    background: #8C86F8;
    border-color: #8C86F8;
    color: #FFFFFF;
    pointer-events: none;
}

/* HEADER */
.header {
    position: relative;
    background: linear-gradient(94deg, #E883F8 0.55%, #9BFAFC 49.41%, #665EF5 98.28%);
}

.header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.00) 38.46%, #F7F9FC 88%);
    pointer-events: none;
}

.header__top {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    background: linear-gradient(90deg, #E883F8 -0.98%, #9BFAFC 49.92%, #665EF5 100.83%);
    z-index: 10;
}

.header__top .container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.header__contacts {
    display: flex;
    align-items: center;
}

.header__contact {
    display: inline-flex;
    align-items: center;
}

.header__contact--phone {
    gap: 3px;
}

.header__contact--email {
    gap: 7px;
}

.header__contact:hover {
    opacity: 0.7;
}

.header__contact svg {
    flex-shrink: 0;
}

.header__contact span {
    font-size: 11px;
    font-weight: 600;
    line-height: 20px;
}

.header__divider {
    width: 1px;
    height: 22px;
    margin: 0 20px;
    background: #30223B;
    opacity: 0.5;
    flex-shrink: 0;
}

.header__main {
    position: relative;
    background: #F7F9FC;
    z-index: 10;
}

.header__inner {
    position: relative;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header__logo {
    flex-shrink: 0;
}

.header__logo:hover {
    opacity: 0.7;
}

.header__logo img {
    display: block;
    height: 45px;
}

.header__nav {
    flex: 1;
    height: 100%;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.header__main.is-search-open .header__nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.header__nav-list {
    height: 100%;
    display: flex;
    justify-content: center;
    gap: 35px;
}

.header__nav-item {
    position: relative;
    display: flex;
}

.header__nav-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.header__nav-link:hover {
    opacity: 0.7;
}

.header__dropdown {
    position: absolute;
    top: 100%;
    left: -27px;
    padding: 24px;
    border-radius: 16px;
    background: #FFFFFF;
    filter: drop-shadow(0 3px 4px rgba(102, 94, 245, 0.25));
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    z-index: 3;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header__dropdown--sub {
    top: -24px;
    left: calc(100% + 24px);
    transform: translate(10px, 0);
}

.header__nav-item--has-dropdown:hover > .header__dropdown,
.header__dropdown-item--has-dropdown:hover > .header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header__dropdown-item--has-dropdown:hover > .header__dropdown--sub {
    transform: translate(0, 0);
}

.header__dropdown::before {
    content: '';
    position: absolute;
    left: 33px;
    top: -19px;
    width: 32px;
    height: 23px;
    background: url('../images/icons/triangle.svg') center/contain no-repeat;
}

.header__dropdown--sub::before {
    content: none;
}

.header__dropdown--sub::after {
    content: '';
    position: absolute;
    top: 0;
    left: -24px;
    width: 24px;
    height: 100%;
}

.header__dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.header__dropdown-item {
    position: relative;
}

.header__dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    line-height: 14px;
    color: #19042C;
    white-space: nowrap;
}

.header__dropdown-link:hover {
    color: #5E57CE;
    text-decoration: underline;
}

.header__dropdown-item--has-dropdown > .header__dropdown-link::after {
    content: '';
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-top: 1px solid rgba(48, 34, 59, 0.40);
    border-right: 1px solid rgba(48, 34, 59, 0.40);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.header__dropdown-item--has-dropdown:hover .header__dropdown-link::after {
    border-color: #5E57CE;
}

.header__search {
    position: absolute;
    top: 50%;
    left: 210px;
    right: 0;
    width: calc(100% - 440px);
    height: 36px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) scaleX(0.05);
    transform-origin: right center;
    z-index: 3;
    -webkit-transition: opacity 0.3s ease, transform 0.3s ease-out;
    -ms-transition: opacity 0.3s ease, transform 0.3s ease-out;
    -o-transition: opacity 0.3s ease, transform 0.3s ease-out;
    transition: opacity 0.3s ease, transform 0.3s ease-out;
}

.header__main.is-search-open .header__search {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scaleX(1);
}

.header__search-form {
    position: relative;
    height: 100%;
}

.header__search-input {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: #D2D2FA;
    padding: 0 40px;
    font-size: 14px;
}

.header__search-input::placeholder {
    color: rgba(48, 34, 59, 0.4);
}

.header__search-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
}

.header__search-controls {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    border-radius: 18px;
    background: #EF7F1A;
    font-size: 14px;
    font-weight: 600;
}

.header__search-btn:hover {
    opacity: 0.7;
}

.header__search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.header__search-close:hover {
    opacity: 0.7;
}

.header__main.is-search-open .header__control--cart {
    background: #D2D2FA;
}

.header__main.is-search-open .header__control--search {
    opacity: 0;
}

.search__dropdown {
    margin-top: 18px;
    border-radius: 0 0 10px 10px;
    background: #F7F9FC;
    overflow: hidden;
}

.search__dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 40px;
    padding: 5px 40px;
    background: #E5E5F7;
}

.search__dropdown-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.search__dropdown-body {
    padding: 20px 40px;
}

.search__dropdown-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.search__product {
    display: flex;
    gap: 17px;
}

.search__product:hover {
    opacity: 0.7;
}

.search__product-image {
    display: flex;
}

.search__product-image img {
    width: 69px;
    height: 69px;
    border-radius: 6px;
}

.search__product-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
}

.search__product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 6px;
}

.search__product-price-current {
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
}

.search__product-price-current span {
    font-size: 11px;
}

.search__product-price--sale .search__product-price-current {
    color: #D35102;
}

.search__product-price-old {
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    text-decoration: line-through;
    color: rgba(48, 34, 59, 0.60);
}

.search__dropdown-btn {
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
}

.search__dropdown-btn:hover {
    opacity: 0.7;
}

.search__dropdown-requests {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.search__request {
    display: flex;
    align-items: center;
    gap: 22px;
}

.search__request-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.search__request-submit,
.search__request-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.search__request-remove {
    margin-left: auto;
}

.search__request-submit:hover,
.search__request-remove:hover {
    opacity: 0.7;
}

.header__actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.header__control {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.header__control:hover {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    right: 6px;
    top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 9px;
    height: 9px;
    padding: 0 2px;
    border-radius: 100px;
    background: #665EF5;
    font-size: 7px;
    font-weight: 600;
    color: #FFF;
    z-index: 1;
}

.header__trust {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 35px;
    padding: 2px 10px 0;
    border: 1px solid #04DA8D;
    background: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.header__trust:hover {
    opacity: 0.7;
}

.header__trust img {
    width: 60px;
    height: auto;
    margin-bottom: 2px;
}

.header__cart {
    position: relative;
}

.mini-cart {
    position: absolute;
    top: 54px;
    right: -68px;
    width: 270px;
    padding: 15px 13px;
    border-radius: 16px;
    background: #FFFFFF;
    filter: drop-shadow(0 3px 5px rgba(102, 94, 245, 0.25));
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
    z-index: 10;
    -webkit-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    -ms-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    -o-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

.mini-cart.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    -webkit-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
    -ms-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
    -o-transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}

.mini-cart::before {
    content: '';
    position: absolute;
    right: 68px;
    top: -19px;
    width: 32px;
    height: 23px;
    background: url('../images/icons/triangle.svg') center/contain no-repeat;
}

.mini-cart__header {
    position: relative;
    padding: 0 6px 15px;
}

.mini-cart__header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background: #C9C9EE;
}

.mini-cart__header p {
    font-size: 15px;
    line-height: 16px;
}

.mini-cart__body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-cart_item {
    position: relative;
    display: flex;
    gap: 13px;
    padding: 20px 6px;
}

.mini-cart_item:hover {
    opacity: 0.7;
}

.mini-cart_item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background: #C9C9EE;
}

.mini-cart_item-image {
    display: flex;
}

.mini-cart_item-image img {
    width: 83px;
    height: 83px;
    border-radius: 15px;
}

.mini-cart_item-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
}

.mini-cart_item-params {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
}

.mini-cart_item-param {
    font-size: 10px;
    line-height: 16px;
}

.mini-cart_item-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 13px;
}

.mini-cart_item-price-current {
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
}

.mini-cart_item-price-old {
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: line-through;
    color: rgba(35, 19, 48, 0.60);
}

.mini-cart__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 6px;
}

.mini-cart__btn {
    width: 100%;
    height: 30px;
    box-shadow: none;
    font-size: 15px;
}

.mini-cart__btn:hover {
    box-shadow: none;
}

.mini-cart__close {
    font-size: 14px;
    line-height: 18px;
    text-decoration: underline;
    text-align: center;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(48, 34, 59, 0.20);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 9;
    -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    -ms-transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    -o-transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: opacity 0.3s ease, visibility 0s linear 0s;
    -ms-transition: opacity 0.3s ease, visibility 0s linear 0s;
    -o-transition: opacity 0.3s ease, visibility 0s linear 0s;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

/* BREADCRUMBS */
.breadcrumbs {
    position: relative;
    padding: 16px 0;
    z-index: 1;
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    line-height: normal;
    color: #1B1918;
}

.breadcrumbs__item:not(:last-child)::after {
    content: '›';
    opacity: 0.8;
    margin-bottom: 1px;
}

.breadcrumbs__link {
    opacity: 0.8;
}

.breadcrumbs__link:hover {
    opacity: 0.6;
}

.breadcrumbs__current {
    opacity: 0.4;
}

/* FOOTER */
.footer {
    position: relative;
    background: url('../images/bg-footer.svg') center/cover no-repeat;
}

.footer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 237px;
    background: url('../images/figure-footer.svg') bottom/contain repeat-x;
}

.footer__top {
    padding-top: 50px;
    padding-bottom: 200px;
}

.footer__top-inner {
    display: flex;
    justify-content: space-between;
}

.footer__column--1 {
    flex: 0 1 300px;
}

.footer__column--2 {
    flex: 0 1 200px;
}

.footer__column--3 {
    flex: 0 1 220px;
}

.footer__logo {
    flex-shrink: 0;
}

.footer__logo:hover {
    opacity: 0.7;
}

.footer__logo img {
    display: block;
    height: 67px;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.footer__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer__contact:hover {
    opacity: 0.7;
}

.footer__contact svg {
    flex-shrink: 0;
}

.footer__contact span {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #FFFFFF;
}

.footer__nav {
    padding-top: 13px;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__nav-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #FFFFFF;
}

.footer__nav-link:hover {
    opacity: 0.7;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
}

.footer__social a {
    display: inline-flex;
}

.footer__social a:hover {
    opacity: 0.7;
}

.footer__payment {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 44px;
}

.footer__bottom {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1C1125;
    z-index: 1;
}

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

.footer__copyright {
    font-size: 15px;
    line-height: 20px;
    color: #FFFFFF;
    text-align: center;
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #160525 20.68%, rgba(115, 115, 115, 0.00) 99.99%);
}

.hero__inner {
    position: relative;
    height: clamp(533px, 37vw, 900px);
    display: flex;
    align-items: center;
    padding-bottom: 70px;
    z-index: 2;
}

.hero__content {
    max-width: 700px;
}

.hero__title {
    font-family: 'BeVietnam', sans-serif;
    font-size: 65px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 4.55px;
    background: linear-gradient(91deg, #E883F8 -12.24%, #9BFAFC 49.85%, #665EF5 94.18%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #FFFFFF;
    margin-bottom: 25px;
}

.hero__text {
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    margin-bottom: 37px;
}

.hero__actions {
    display: flex;
    align-items: flex-end;
    gap: 44px;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero__btn {
    width: 262px;
    background: linear-gradient(92deg, #E883F8 2.56%, #9BFAFC 56.71%, #665EF5 110.85%);
    background-size: 100% 100%;
    box-shadow: none;
    font-size: 16px;
    text-transform: none;
}

.hero__btn:hover {
    background-size: 180% 180%;
    box-shadow: none;
}

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

.hero__rating-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #E883F8 24.52%, #9BFAFC 100%);
    font-family: 'Poppins', sans-serif;
    font-size: 33px;
    font-weight: 700;
    line-height: 22px;
    color: #1C1125;
}

.hero__rating-divider {
    width: 1px;
    height: 60px;
    background: #F7F9FC;
    opacity: 0.5;
}

.hero__rating-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__rating-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #F7F9FC;
}

.hero__rating-stars img {
    display: block;
}

.hero__rating-text {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    line-height: 15px;
    color: #F7F9FC;
}

.hero__features {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background: rgba(247, 249, 252, 0.35);
    z-index: 2;
}

.hero__features-list {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__feature span {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: #FFFFFF;
}

.hero__feature img {
    display: block;
    height: 42px;
    flex-shrink: 0;
}

/* WHY US */
.why-us {
    position: relative;
    padding-top: 26px;
    background: linear-gradient(94deg, #E883F8 0.55%, #9BFAFC 49.41%, #665EF5 98.28%);
    overflow: hidden;
}

.why-us--secondary {
    padding-top: 75px;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(95deg, #E883F8 0%, #9BFAFC 50.2%, #665EF5 100.4%);
    margin: 0 10px;
}

.why-us--tertiary {
    padding: 60px 0;
    background: url('../images/bg-why-us.svg') center/cover no-repeat;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.00) 38.46%, #F7F9FC 89.9%);
    pointer-events: none;
}

.why-us--secondary::before {
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.00) 40.38%, #F7F9FC 93%);
}

.why-us--tertiary::before {
    content: none;
}

.why-us__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.why-us__image {
    margin-bottom: 19px;
}

.why-us__image img {
    display: block;
    width: 139px;
}

.why-us__title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: -0.6px;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 30px;
}

.why-us__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.why-us__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 271px;
    padding: 32px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.60) 0%, rgba(247, 249, 252, 0.30) 100%);
    text-align: center;
}

.why-us--secondary .why-us__item {
    min-height: 329px;
}

.why-us--tertiary .why-us__item {
    min-height: 329px;
    padding-top: 60px;
    background: rgba(247, 249, 252, 0.65);
}

.why-us__item-icon {
    height: 50px;
    margin-bottom: 24px;
}

.why-us__item-icon img {
    display: block;
}

.why-us__item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.why-us__item-text {
    max-width: 190px;
    font-size: 13px;
    font-weight: 300;
    line-height: 17px;
}

.why-us:not(.why-us--secondary, .why-us--tertiary) .why-us__item:first-child .why-us__item-text {
    max-width: 235px;
}

.why-us__item-text a {
    font-weight: 400;
    text-decoration: underline;
}

.why-us__item-text a:hover {
    text-decoration: none;
}

/* BEST SELLING */
.products {
    padding: 40px 0 130px;
}

.products--alt {
    padding: 120px 0;
}

.products__top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 46px;
}

.products__title {
    margin-bottom: 32px;
}

.products__top .products__title {
    margin-bottom: 0;
}

.products__view-all {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    height: 44px;
    padding: 0 22px;
    border-radius: 26px;
    border: 2px solid #5E57CE;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    color: #5E57CE;
}

.products__view-all:hover {
    background: #5E57CE;
    color: #FFFFFF;
}

.products__categories {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.products__category {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 193px;
    height: 44px;
    padding: 0 6px;
    border-radius: 26px;
    border: 1px solid #30223B;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    opacity: 0.6;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.products__category:hover {
    opacity: 1;
}

.products__category::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: linear-gradient(92deg, #E883F8 3.94%, #9BFAFC 60.12%, #665EF5 116.31%);
    opacity: 0;
    z-index: -1;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.products__category.is-active {
    border-color: transparent;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) inset;
    opacity: 1;
}

.products__category.is-active::before {
    opacity: 1;
}

.products__tab {
    display: none;
}

.products__tab.is-active {
    display: block;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 8px;
}

.products__grid--catalog {
    gap: 40px 18px;
}

.product-card {
    position: relative;
    display: block;
    padding: 8px 8px 23px;
    border-radius: 26px;
    background: transparent;
}

.product-card--catalog {
    padding: 6px 6px 20px;
}

.product-card:hover {
    background: rgba(156, 165, 170, 0.20);
}

.product-card__image {
    margin-bottom: 17px;
}

.product-card--catalog .product-card__image {
    margin-bottom: 14px;
}

.product-card__image img {
    display: block;
    width: 100%;
    height: 320px;
    border-radius: 20px;
}

.product-card--catalog .product-card__image img {
    height: 263px;
}

.product-card__badges {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.product-card--catalog .product-card__badges {
    top: 16px;
    left: 16px;
    right: 16px;
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    padding: 0 10px;
    border-radius: 13px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.badge--sale {
    background: #E166F5;
    color: #FFFFFF;
}

.badge--new {
    background: #98E6FC;
    color: #000;
}

.badge--bestseller {
    background: #665EF5;
    color: #FFFFFF;
}

.product-card--catalog .badge {
    height: 21px;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.78px;
}

.product-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    text-align: center;
    margin-bottom: 9px;
}

.product-card--catalog .product-card__title {
    font-size: 14px;
    line-height: 16px;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    height: 20px;
    text-align: center;
}

.product-card--catalog .product-card__price {
    height: 16px;
}

.product-card__price-current {
    font-size: 18px;
    line-height: 20px;
}

.product-card--catalog .product-card__price-current {
    font-size: 19px;
}

.product-card--catalog .product-card__price-current span {
    font-size: 14px;
}

.product-card--catalog .product-card__price-old {
    font-size: 14px;
}

.product-card__price--sale .product-card__price-current {
    color: #D35102;
}

.product-card__price-old {
    font-size: 15px;
    line-height: 20px;
    text-decoration: line-through;
    opacity: 0.6;
}

/* SPLIT SECTION */
.split-banner {
    display: flex;
    min-height: 548px;
    max-height: 720px;
    background: linear-gradient(105deg, #E883F8 5.8%, #9BFAFC 61.56%, #665EF5 95.11%);
}

.split-banner__content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 50%;
    padding: 65px 70px 65px 50px;
}

.split-banner__content-inner {
    width: 100%;
    max-width: 570px;
}

.split-banner__title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 25px;
}

.split-banner__text {
    text-align: justify;
}

.split-banner__text p + p {
    margin-top: 25px;
}

.split-banner__image {
    width: 50%;
}

.split-banner__image img {
    display: block;
    width: 100%;
    height: 100%;
}

.split-banner--alt {
    min-height: 544px;
    background: linear-gradient(93deg, rgba(232, 131, 248, 0.50) 0.68%, rgba(155, 250, 252, 0.50) 50.68%, rgba(102, 94, 245, 0.50) 99.74%);
}

.split-banner--alt .split-banner__content {
    width: 52%;
    padding: 80px 70px 80px 50px;
}

.split-banner--alt .split-banner__content-inner {
    max-width: 611px;
}

.split-banner--alt .split-banner__title {
    line-height: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.split-banner--alt .split-banner__text + .split-banner__title {
    margin-top: 60px;
}

.split-banner--alt .split-banner__image {
    width: 48%;
}

/* FEATURE SECTION */
.features {
    padding: 130px 0;
}

.features__inner {
    display: flex;
    align-items: center;
    gap: 85px;
    max-width: 1200px;
    margin: 0 auto;
}

.features__image {
    flex-shrink: 0;
    width: 442px;
    height: 442px;
}

.features__image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.features__title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 25px;
}

.features__text {
    text-align: justify;
}

.features__text p + p {
    margin-top: 25px;
}

.features__actions {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.features__btn {
    width: 215px;
    height: 44px;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1.26px;
}

/* OUR WORKS */
.works {
    padding-top: 60px;
}

.works--alt {
    padding: 160px 0;
}

.works__slider {
    margin-top: 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    overflow: hidden;
}

.works__slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.works__slider .slick-list {
    margin: 0 -7px;
}

.works__slider-slide {
    margin: 0 7px;
}

.works__slider-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.works__slider-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
}

/* OUR REVIEWS */
.reviews {
    padding: 160px 0;
}

.reviews--alt {
    padding: 120px 0;
}

.reviews .container {
    max-width: 1400px;
}

.reviews__slider {
    margin-top: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    overflow: hidden;
}

.reviews__slider.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.reviews__slider .slick-list {
    margin: 0 -1px;
}

.reviews__slider-slide {
    margin: 0 1px;
    padding: 12px 12px 24px;
    border-radius: 15px;
    -webkit-transition: background 0.3s ease;
    -ms-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
}

.reviews__slider-slide:hover {
    background: #E5E8EC;
}

.reviews__slider-image {
    margin-bottom: 20px;
}

.reviews__slider-image img {
    display: block;
    width: 100%;
    height: 520px;
    border-radius: 13px;
}

.reviews__slider-rating {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.reviews__slider-content {
    padding: 0 16px;
}

.reviews__slider-text {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
}

.reviews__slider-author {
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.reviews__controls .slider__dots .slick-active button {
    border-color: #E883F8;
    background: #E883F8;
}

/* PRODUCT */
.product {
    padding-bottom: 60px;
}

.product__inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.product__column--lg {
    flex: 1;
    max-width: 840px;
    min-width: 0;
    position: sticky;
    top: 20px;
}

.product__column--sm {
    flex: 0 0 400px;
}

.product__gallery {
    position: relative;
}

.product__labels {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.product__label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 25px;
    border-radius: 24px;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 1.38px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.product__label--bestseller {
    background: #665EF5;
}

.product__label--sale {
    background: #E166F5;
}

.product__label--new {
    background: #98E6FC;
    color: #000;
}

.product__pricing {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.product__pricing .product__price-current {
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    color: #F7F9FC;
}

.product__pricing .product__price-old {
    font-size: 18px;
    line-height: 32px;
    color: rgba(247, 249, 252, 0.60);
}

.product__pricing-label {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 15px;
    border-radius: 24px;
    background: #D35102;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.product__gallery-main,
.product__gallery-nav {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
    overflow: hidden;
}

.product__gallery-main.slick-initialized,
.product__gallery-nav.slick-initialized {
    opacity: 1;
    visibility: visible;
}

.product__gallery-main {
    position: relative;
    margin-bottom: 20px;
}

.product__gallery-slide {
    height: 518px;
    border-radius: 25px;
    overflow: hidden;
}

.product__gallery-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.product__gallery-nav {
    overflow: hidden;
}

.product__gallery-nav::before,
.product__gallery-nav::after {
    content: '';
    position: absolute;
    top: 0;
    width: 114px;
    height: 122px;
    pointer-events: none;
    z-index: 1;
}

/*.product__gallery-nav::before {
    left: 0;
    background: linear-gradient(270deg, rgba(196, 196, 196, 0.00) 50.48%, #F7F9FC 100%);
}*/

.product__gallery-nav::after {
    right: 0;
    background: linear-gradient(90deg, rgba(196, 196, 196, 0.00) 50.48%, #F7F9FC 100%);
}

.product__gallery-nav .slick-track {
    margin-left: unset;
}

.product__gallery-nav .slick-list {
    margin: 0 -7px;
}

.product__gallery-nav-slide {
    height: 122px;
    margin: 0 7px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.product__gallery-nav-slide:hover {
    opacity: 0.7;
}

.product__gallery-nav-slide img {
    display: block;
    width: 100%;
    height: 100%;
}

.product__gallery-arrow {
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #D9D9D9;
    transform: translateY(-50%);
    z-index: 1;
}

.product__gallery-arrow:hover {
    background: #FFFFFF;
}

.product__gallery-arrow.slick-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.product__gallery-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 17px;
}

.product__gallery-arrow--prev {
    left: 10px;
}

.product__gallery-arrow--prev::before {
    left: 6px;
    background: url('../images/icons/chevron-left.svg') center/contain no-repeat;
}

.product__gallery-arrow--next {
    right: 10px;
}

.product__gallery-arrow--next::before {
    right: 6px;
    background: url('../images/icons/chevron-right.svg') center/contain no-repeat;
}

.product__description {
    margin-top: 40px;
    text-align: justify;
}

.product__info {
    position: sticky;
    top: 20px;
    background: #F7F9FC;
    z-index: 1;
}

.product__info::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: #F7F9FC;
}

.product__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    margin-bottom: 12px;
}

.product__price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: 'Poppins', sans-serif;
}

.product__price-current {
    font-size: 35px;
    font-weight: 700;
    line-height: 22px;
    color: #D35102;
}

.product__price-old {
    font-size: 20px;
    line-height: 20px;
    text-decoration: line-through;
    color: rgba(35, 19, 48, 0.60);
}

.product__installment {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
}

.product__installment-text {
    font-size: 13px;
    line-height: 20px;
}

.product__installment-text span {
    font-weight: 700;
}

.product__installment-info {
    display: flex;
}

.product__cart-btn {
    margin-top: 20px;
    width: 100%;
    height: 35px;
    background: linear-gradient(92deg, #E883F8 3.94%, #9BFAFC 60.12%, #665EF5 116.31%);
    background-size: 100% 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25) inset;
}

.product__cart-btn:hover {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25) inset, 0 4px 10px rgba(102, 94, 245, 0.25);
}

.product__options {
    display: flex;
    flex-direction: column;
    margin-top: 26px;
}

.product__option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 16px;
    background: #E1DFFD;
}

.product__option--quantity .product__option-header {
    padding: 8px 16px;
}

.product__option-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.product__option-hint {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    text-transform: lowercase;
    color: rgba(48, 34, 59, 0.80);
}

.product__option-body {
    padding: 18px 16px;
    background: #FFFFFF;
}

.product__size,
.product__color,
.product__choice {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product__size input,
.product__color input,
.product__choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
}

.product__size {
    display: flex;
    padding: 3px 12px;
    border-radius: 26px;
    border: 1px solid rgba(48, 34, 59, 0.60);
}

.product__size:hover {
    background: rgba(102, 94, 245, 0.15);
}

.product__size:has(input:checked) {
    background: #DCFDFE;
}

.product__size-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.product__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 12px;
}

.product__color {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.product__color img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.product__color::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    width: 29px;
    height: 29px;
    background: url('../images/icons/color-checked.svg') center/contain no-repeat;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product__color:hover::before,
.product__color:has(input:checked)::before {
    opacity: 1;
}

.product__choices {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product__choice {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    padding: 3px 10px;
    border-radius: 15px;
    border: 1px solid #30223B;
}

.product__choice:hover {
    background: rgba(102, 94, 245, 0.15);
}

.product__choice:has(input:checked) {
    background: #DCFDFE;
}

.product__choice.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.product__choice-label {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.product__choice-view {
    display: flex;
    align-items: center;
    height: 20px;
    margin-left: auto;
}

.product__choice-tooltip {
    position: absolute;
    top: calc(100% + 1px);
    right: -11px;
    padding: 10px;
    border-radius: 16px;
    background: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    filter: drop-shadow(0 3px 5px rgba(102, 94, 245, 0.25));
    z-index: 1;
    -webkit-transition: all 0.1s ease;
    -ms-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.product__choice-tooltip::before {
    content: '';
    position: absolute;
    right: 16px;
    top: -12px;
    width: 32px;
    height: 24px;
    background: url('../images/icons/triangle-2.svg') center/contain no-repeat;
}

.product__choice-tooltip img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 230px;
    border-radius: 10px;
}

.product__choice-view:hover .product__choice-tooltip {
    opacity: 1;
    visibility: visible;
}

.product__choices--cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px;
}

.product__choice--card {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    width: 108px;
    padding: 4px;
    background: #FFF;
}

.product__choice-image img {
    display: block;
    width: 100px;
    height: 90px;
    border-radius: 10px;
}

.product__choice--card .product__choice-label {
    padding: 0 5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    text-align: center;
    color: rgba(48, 34, 59, 0.80);
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.product__choice--card:has(input:checked) .product__choice-label {
    color: #30223B;
}

.product__choice-hint {
    margin-top: -4px;
    font-size: 12px;
    line-height: 16px;
    color: rgba(48, 34, 59, 0.80);
}

.product__choice--checkbox {
    justify-content: flex-start;
    padding-left: 7px;
}

.product__choice-checkmark {
    position: relative;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #857EF7;
    flex-shrink: 0;
}

.product__choice-checkmark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: url('../images/icons/check.svg') center/contain no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.product__choice--checkbox:has(input:checked) .product__choice-checkmark::before {
    opacity: 1;
}

.quantity-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80px;
    padding: 2px 6px;
    border-radius: 26px;
    border: 1px solid rgba(48, 34, 59, 0.60);
    background: #FFFFFF;
}

.quantity-input__btn,
.quantity-input__field {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 20px;
}

.quantity-input__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.quantity-input__btn.is-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.quantity-input__field {
    width: 18px;
    text-align: center;
}

.quantity-input__field::-webkit-outer-spin-button,
.quantity-input__field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* CUSTOM SIGN */
.custom-sign {
    padding: 55px 0;
    background: linear-gradient(95deg, rgba(232, 131, 248, 0.50) 0%, rgba(155, 250, 252, 0.50) 50.2%, rgba(102, 94, 245, 0.50) 100.4%);
}

.custom-sign__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.custom-sign__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.custom-sign__title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.custom-sign__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 40px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.custom-sign__btn {
    width: 360px;
}

/* BOX */
.box {
    padding-top: 80px;
    padding-bottom: 90px;
}

.box__title {
    margin-bottom: 40px;
}

.box__inner {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 60px;
}

.box__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.box__items--row {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
}

.box__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.box__items--row .box__item-image {
    display: flex;
    align-items: center;
    height: 140px;
}

.box__item-image img {
    display: block;
}

.box__item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.box__column--sm {
    padding-bottom: 25px;
}

.box__column--lg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.box__optional {
    padding: 11px 50px 25px;
    border-radius: 20px;
    background: rgba(229, 232, 236, 0.60);
}

.box__optional-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 7px;
}

.box__text {
    display: flex;
    gap: 130px;
    margin-top: 90px;
    text-align: justify;
}

.box__text-column {
    flex: 1;
}

/* BOX */
.media {
    padding-top: 60px;
    padding-bottom: 120px;
}

.media .container {
    max-width: 1360px;
}

.media__title {
    margin-bottom: 40px;
}

.media__inner {
    display: flex;
    gap: 20px;
}

.media__item img,
.media__item video {
    display: block;
    width: 100%;
    height: 520px;
    border-radius: 13px;
}

/* FAQ */
.faq {
    padding-top: 75px;
    padding-bottom: 75px;
    background: linear-gradient(101deg, rgba(155, 250, 252, 0.50) 30.31%, rgba(102, 94, 245, 0.50) 89.04%);
}

.faq__title {
    margin-bottom: 30px;
}

.faq__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    max-width: 850px;
    margin: 0 auto;
}

.faq__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.faq__item {
    border-bottom: 2px solid rgba(48, 34, 59, 0.60);
}

.faq__item.is-hidden {
    display: none;
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    cursor: pointer;
}

.faq__question-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 22px;
}

.faq__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.faq__item.is-active .faq__arrow {
    transform: rotate(180deg);
}

.faq__answer {
    display: none;
}

.faq__answer-text {
    padding: 10px 0 30px;
    text-align: justify;
}

.faq__actions {
    display: flex;
    gap: 48px;
}

.faq__btn {
    height: 43px;
    width: 345px;
    font-size: 16px;
}

/* INSTALLATION */
.installation {
    padding-top: 120px;
    overflow: hidden;
}

.installation__title {
    margin-bottom: 40px;
}

.installation__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 84px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 42px 0;
    z-index: 1;
}

.installation__inner::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc((100vw - 1180px) / -2);
    width: 50.8vw;
    height: 100%;
    background: linear-gradient(270deg, rgba(247, 249, 252, 0.00) 0%, rgba(102, 94, 245, 0.50) 100%);
    pointer-events: none;
    z-index: -1;
}

.installation__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 85px;
}

.installation__image {
    flex-shrink: 0;
    width: 405px;
    height: 440px;
}

.installation__image img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.installation__content {
    max-width: 577px;
}

.installation__name {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 50px;
    margin-bottom: 15px;
}

.installation__text {
    text-align: justify;
}

.installation__actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.installation__btn {
    width: 187px;
    height: 40px;
    font-size: 18px;
}

/* CATALOG */
.catalog {
    padding-top: 12px;
    padding-bottom: 160px;
}

.catalog__title {
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.catalog__title.hidden {
    opacity: 0;
    pointer-events: none;
}

.catalog__inner {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.catalog__sidebar {
    flex: 0 0 282px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.catalog__sidebar-inner {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #8C86F8 #FFFFFF;
}

.catalog__sidebar-inner::-webkit-scrollbar {
    width: 6px;
}

.catalog__sidebar-inner::-webkit-scrollbar-track {
    background: #FFFFFF;
}

.catalog__sidebar-inner::-webkit-scrollbar-thumb {
    background: #8C86F8;
}

.catalog__content {
    flex: 1;
}

.catalog__results {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    line-height: 13px;
    text-transform: uppercase;
    padding: 0 6px;
    margin-bottom: 6px;
}

.catalog__controls {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 0 6px;
    margin-bottom: 3px;
}

.catalog__selected {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.catalog__selected-inner {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    max-width: 680px;
    width: fit-content;
    padding-bottom: 12px;
}

.catalog__selected-filters {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.catalog__selected-filters::-webkit-scrollbar {
    display: none;
}

.catalog__selected-scroll {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
}

.catalog__scroll {
    width: 8px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.catalog__scroll:disabled {
    opacity: .3;
    cursor: default;
}

.catalog__scroll-track {
    flex: 1;
    position: relative;
    height: 2px;
}

.catalog__scroll-thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    border-radius: 6px;
    background: rgba(48, 34, 59, 0.60);
    cursor: pointer;
}

.catalog__selected-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    gap: 8px;
    padding: 0 8px;
    border-radius: 14px;
    border: 1px solid rgba(48, 34, 59, 0.25);
    background: #FFF;
    font-size: 11px;
    white-space: nowrap;
}

.catalog__selected-filter:hover {
    border-color: rgba(48, 34, 59, 1);
}

.catalog__selected-filter::after {
    content: '';
    width: 6px;
    height: 6px;
    background: url('../images/icons/close.svg') center/contain no-repeat;
}

.catalog__selected-clear {
    height: 20px;
    background: linear-gradient(92deg, #E883F8 3.94%, #9BFAFC 60.12%, #665EF5 116.31%);
    background-size: 100% 100%;
    box-shadow: none;
    font-size: 10px;
    flex-shrink: 0;
}

.catalog__selected-clear::before {
    content: none;
}

.catalog__selected-clear:hover {
    background-size: 180% 180%;
    box-shadow: none;
}

.catalog__sort {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    margin-bottom: 12px;
}

.catalog__sort-inner {
    position: relative;
}

.catalog__sort-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.catalog__sort-btn:hover {
    opacity: 0.7;
}

.catalog__sort-btn svg {
    -webkit-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.catalog__sort.is-open .catalog__sort-btn svg {
    transform: rotate(180deg);
}

.catalog__sort-value {
    display: none;
    height: 20px;
    padding: 0 12px;
    border-radius: 13px;
    border: 1px solid rgba(48, 34, 59, 0.60);
    font-size: 11px;
    line-height: 18px;
    text-align: center;
}

.catalog__sort-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    right: -13px;
    width: 172px;
    padding: 24px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 3px 5px 0 rgba(102, 94, 245, 0.25);
    z-index: 10;
}

.catalog__sort-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.catalog__sort-item {
    display: flex;
}

.catalog__sort-item button {
    width: 100%;
    font-size: 13px;
    line-height: 14px;
    text-align: left;
}

.catalog__sort-item button:hover {
    opacity: 0.7;
}

.catalog__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 16px 20px;
}

.catalog__badge {
    height: 19px;
    border: 1px solid rgba(48, 34, 59, 0.60);
    background: #FFFFFF;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.66px;
    color: #30223B;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalog__badge.badge--sale:has(input:checked) {
    background: #E166F5;
    color: #FFFFFF;
}

.catalog__badge.badge--new:has(input:checked) {
    background: #98E6FC;
}

.catalog__badge.badge--bestseller:has(input:checked) {
    background: #665EF5;
    color: #FFFFFF;
}

.catalog__filters {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.catalog__filter-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 12px 5px 20px;
    background: #E1DFFD;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalog__filter-header--primary {
    background: #8C86F8;
    color: #FFF;
}

.catalog__filter--accordion .catalog__filter-header,
.catalog__filter--single .catalog__filter-header {
    cursor: pointer;
}

.catalog__filter--accordion .catalog__filter-header:hover,
.catalog__filter--single .catalog__filter-header:hover {
    opacity: 0.7;
}

.catalog__filter-header svg {
    flex-shrink: 0;
    -webkit-transition: transform 0.3s ease;
    -ms-transition: transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.catalog__filter--accordion.is-open .catalog__filter-header svg {
    transform: rotate(180deg);
}

.catalog__filter-header input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.catalog__filter--single:has(input:checked) .catalog__filter-header {
    background: #CDFDFE;
}

.catalog__filter-content {
    display: none;
}

.catalog__filter-options {
    display: flex;
    flex-wrap: wrap;
    padding: 14px 20px;
    gap: 10px 8px;
}

.catalog__filter-option {
    padding: 3px 8px;
    border-radius: 14px;
    border: 1px solid #30223B;
    font-size: 15px;
    line-height: 15px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.catalog__filter-option:hover {
    background: rgba(102, 94, 245, 0.15);
}

.catalog__filter-option:has(input:checked) {
    background: #CDFDFE;
}

.catalog__filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.catalog__filter-price {
    padding: 24px 26px 0;
}

.price-slider__control.noUi-target {
    border: 0;
    box-shadow: none;
    background: transparent;
    height: 2px;
}

.price-slider__control .noUi-base {
    height: 2px;
}

.price-slider__control .noUi-connects {
    height: 2px;
    background: #E1DFFD;
    border-radius: 999px;
}

.price-slider__control .noUi-connect {
    background: #665EF5;
}

.price-slider__control .noUi-handle {
    width: 12px;
    height: 12px;
    right: -6px;
    top: -5px;
    border: 2px solid #665EF5;
    border-radius: 50%;
    background: #FFF;
    box-shadow: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.7px;
}

.price-slider__control .noUi-handle::before,
.price-slider__control .noUi-handle::after {
    display: none;
}

.price-slider__control .noUi-tooltip {
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    font-weight: 500;
    color: #30223B;
    padding: 0;
    top: 18px;
    bottom: auto;
    transform: translate(-50%, 0);
}

.price-slider__control {
    margin-bottom: 34px;
}

.catalog__clear {
    padding: 16px 20px;
}

.clear__btn {
    width: 100%;
    height: 26px;
    background: linear-gradient(92deg, #E883F8 3.94%, #9BFAFC 60.12%, #665EF5 116.31%);
    background-size: 100% 100%;
    box-shadow: none;
    font-size: 14px;
}

.clear__btn::before {
    content: none;
}

.clear__btn:hover {
    background-size: 180% 180%;
    box-shadow: none;
}

/* CART */
.cart {
    padding-top: 12px;
    padding-bottom: 130px;
}

.cart__title {
    margin-bottom: 30px;
}

.cart__inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.cart__column--lg {
    flex: 1;
    max-width: 880px;
    min-width: 0;
}

.cart__column--sm {
    flex: 0 0 360px;
}

.cart__column-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    color: #5E57CE;
    margin-bottom: 26px;
}

.cart__order-header {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 12px 60px 12px 20px;
    border-radius: 3px;
    background: #C9C9EE;
}

.cart__order-heading {
    flex: 0 0 82px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 16px;
    text-align: center;
    color: rgba(48, 34, 59, 0.50);
}

.cart__order-heading--product {
    flex: 1;
    text-align: left;
}

.cart__order-heading--quantity {
    flex: 0 0 88px;
}

.cart__order-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 30px 20px 25px;
}

.cart__order-item:last-child {
    padding-bottom: 0;
}

.cart__order-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 50px;
    background: #C9C9EE;
}

.cart__order-item:last-child::after {
    content: none;
}

.cart__order-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart__order-item-image {
    display: flex;
    flex-shrink: 0;
}

.cart__order-item-image img {
    width: 124px;
    height: 124px;
    border-radius: 15px;
}

.cart__order-item-inner {
    display: flex;
    align-items: flex-start;
}

.cart__order-item-info {
    flex: 1;
    max-width: 290px;
    min-width: 0;
    margin-right: 18px;
}

.cart__order-item-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}

.cart__order-item-title:hover {
    opacity: 0.7;
}

.cart__order-item-params {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
}

.cart__order-item-param {
    font-size: 15px;
    line-height: 24px;
}

.cart__order-item-param strong {
    font-weight: 700;
}

.cart__order-item-price {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    margin-right: 25px;
}

.cart__order-item-price-current {
    font-size: 19px;
    font-weight: 500;
    line-height: 24px;
}

.cart__order-item-price-old {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: line-through;
    color: rgba(35, 19, 48, 0.60);
}

.cart__order-item-quantity {
    flex: 0 0 88px;
    display: flex;
    justify-content: center;
    margin-right: 25px;
}

.cart__order-item-total {
    flex: 0 0 100px;
    display: flex;
    justify-content: center;
    margin-right: 10px;
}

.cart__order-item-total-price {
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
}

.cart__order-item-remove {
    flex: 0 0 20px;
    display: flex;
    justify-content: center;
}

.cart__order-item-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #97909D;
}

.cart__order-item-remove-btn:hover {
    color: #30223B;
}

.cart__order-item-controls {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.cart__order-item-details-btn,
.cart__order-item-edit-btn {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    line-height: 14px;
    color: #5E57CE;
}

.cart__order-item-details-btn:hover,
.cart__order-item-edit-btn:hover {
    opacity: 0.7;
}

.cart__order-item-details-btn {
    text-decoration: underline;
}

.cart__order-item-details-columns {
    display: flex;
    gap: 30px;
}

.cart__order-item-details-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 290px;
}

.cart__order-item-detail {
    font-size: 15px;
    line-height: 24px;
}

.cart__order-item-detail strong {
    font-weight: 700;
}

.cart__summary {
    padding: 24px;
    border-radius: 15px;
    border: 1px solid #C9C9EE;
    background: #FFF;
    box-shadow: -3px 3px 4px 0 rgba(94, 87, 206, 0.25);
}

.cart__summary-info {
    position: relative;
    padding-bottom: 15px;
}

.cart__summary-info::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    right: -5px;
    height: 2px;
    border-radius: 50px;
    background: #C9C9EE;
}

.cart__summary-quantity {
    display: block;
    font-size: 16px;
    line-height: 16px;
    color: rgba(48, 34, 59, 0.60);
    margin-bottom: 28px;
}

.cart__summary-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cart__summary-label {
    font-size: 20px;
    line-height: 16px;
}

.cart__summary-value {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    line-height: 16px;
    text-align: right;
}

.cart__summary-row--saving .cart__summary-value {
    color: #D35102;
}

.cart__summary-row--shipping .cart__summary-value {
    color: #30A11C;
}

.cart__summary-hint {
    font-size: 11px;
    line-height: 16px;
    color: rgba(48, 34, 59, 0.60);
    margin-top: 15px;
}

.cart__summary-total {
    padding-top: 15px;
}

.cart__summary-row--total .cart__summary-label,
.cart__summary-row--total .cart__summary-value {
    font-size: 24px;
    font-weight: 500;
    color: #5E57CE;
}

.cart__summary-row--total .cart__summary-label {
    text-transform: uppercase;
}

.cart__summary-row--total .cart__summary-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    text-align: right;
}

.cart__summary-row--total .cart__summary-value small {
    font-size: 16px;
    font-weight: 400;
}

.cart__summary-installment {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
}

.cart__summary-installment-text {
    font-size: 11px;
    line-height: 20px;
}

.cart__summary-installment-text span {
    font-weight: 700;
}

.cart__summary-installment-info {
    display: flex;
}

.cart__summary-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.cart__summary-btn {
    width: 100%;
    height: 42px;
    box-shadow: none;
}

.cart__summary-btn:hover {
    box-shadow: none;
}

.cart__summary-link {
    display: flex;
    justify-content: center;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    text-decoration: underline;
    margin-top: 5px;
}

.cart__summary-link:hover {
    text-decoration: none;
}

.cart__summary-payment {
    margin-top: 20px;
}

.cart__summary-payment p {
    text-align: center;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 15px;
}

.cart__summary-payment-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cart__empty-text {
    margin-top: 8px;
}

.cart__empty-text p {
    font-size: 20px;
    font-weight: 500;
    line-height: 40px;
    text-align: center;
    color: rgba(48, 34, 59, 0.60);
}

.cart__empty-btn {
    width: 293px;
    height: 44px;
    box-shadow: none;
    margin-top: 40px;
}

.cart__empty-btn:hover {
    box-shadow: none;
}

/* UPLOAD DESIGN */
.upload-design {
    padding-top: 12px;
    padding-bottom: 100px;
}

.upload-design__title {
    margin-bottom: 60px;
}

.upload-design__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.upload-design__column--sm {
    flex: 0 0 540px;
}

.upload-design__column--lg {
    flex: 1;
    max-width: 760px;
    min-width: 0;
}

.upload-design__column-title {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 23px;
}

.upload-design__steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.upload-design__step {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.upload-design__step--1 {
    gap: 17px;
}

.upload-design__step--2 {
    gap: 17px;
}

.upload-design__step--3 {
    gap: 55px;
}

.upload-design__step--4 {
    gap: 0;
}

.upload-design__step--1::after,
.upload-design__step--2::after,
.upload-design__step--3::after {
    content: '';
    position: absolute;
    bottom: -70px;
    background: url('../images/step-arrow.png') center/contain no-repeat;
    z-index: 1;
}

.upload-design__step--1::after {
    left: 42%;
    width: 71px;
    height: 71px;
}

.upload-design__step--2::after {
    left: 45%;
    width: 76px;
    height: 76px;
    transform: rotateY(180deg);
}

.upload-design__step--3::after {
    left: 40%;
    bottom: -35px;
    width: 80px;
    height: 80px;
}

.upload-design__step-content {
    flex: 1;
    max-width: 248px;
}

.upload-design__step--2 .upload-design__step-content,
.upload-design__step--4 .upload-design__step-content {
    text-align: right;
}

.upload-design__step--2 .upload-design__step-content {
    margin-top: -15px;
}

.upload-design__step--3 .upload-design__step-content {
    margin-top: -30px;
}

.upload-design__step--4 .upload-design__step-content {
    margin-top: -50px;
}

.upload-design__step-title {
    font-family: 'Cabin Sketch', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: #5E57CE;
    margin-bottom: 7px;
}

.upload-design__step-name {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    text-transform: capitalize;
}

.upload-design__step-description {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
}

.upload-design__step--1 .upload-design__step-image {
    position: relative;
}

.upload-design__step--1 .upload-design__step-image::after {
    content: '';
    position: absolute;
    bottom: 18px;
    right: -5px;
    z-index: 1;
    width: 34px;
    height: 34px;
    background: url('../images/icons/upload-circle.svg') center/contain no-repeat;
}

.upload-design__step--1 .upload-design__step-image img {
    width: 265px;
}

.upload-design__step--2 .upload-design__step-image img {
    width: 268px;
}

.upload-design__step--3 .upload-design__step-image img {
    width: 214px;
}

.upload-design__step--4 .upload-design__step-image img {
    width: 285px;
}

.upload-design__form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.upload-design__blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upload-design__block {
    padding: 15px;
    border-radius: 15px;
    background: rgba(196, 193, 251, 0.60);
}

.upload-design__block-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    margin-left: 40px;
    margin-bottom: 20px;
}

.upload-design__block-fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.upload-design__block-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.upload-design__block-row > * {
    flex: 1;
}

.upload-design__block-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 348px;
}

.upload-design__block-field .product__choices--cards {
    gap: 12px;
}

.upload-design__block-field .product__choice:has(input:checked) {
    background: rgba(102, 94, 245, 0.80);
}

.upload-design__block-field .product__choice--card:has(input:checked) .product__choice-label {
    color: #FFF;
}

.upload-design__block-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-transform: uppercase;
    margin-left: 20px;
}

.upload-design__block-error {
    margin-left: 20px;
    font-size: 11px;
    line-height: 16px;
    color: #FF4D4D;
}

.upload-design__btn {
    height: 35px;
}

/* WORK PROCESS */
.work-process {
    padding-bottom: 150px;
}

.work-process__title {
    margin-bottom: 60px;
}

.work-process__headings {
    padding-left: 100px;
    padding-right: 40px;
    margin-left: 40px;
}

.work-process__headings,
.work-process__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 31px minmax(0, 1fr) 31px minmax(0, 1fr);
    column-gap: 22px;
    align-items: center;
}

.work-process__heading {
    display: flex;
    justify-content: center;
}

.work-process__heading-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 248px;
    height: 45px;
    border-radius: 15px;
    background: #F3DCFB;
}

.work-process__heading-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.work-process__headings-divider,
.work-process__item-divider {
    width: 31px;
    display: flex;
    justify-content: center;
}

.work-process__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 23px;
}

.work-process__item {
    position: relative;
    padding: 30px 40px;
    border-radius: 20px;
    margin-left: 40px;
}

.work-process__item {
    padding-left: 100px;
}

.work-process__item-image {
    display: flex;
    justify-content: center;
}

.work-process__item--1 {
    background: #F3DCFB;
}

.work-process__item--2 {
    background: #D2DFF4;
}

.work-process__item--3 {
    background: #FAE9CA;
}

.work-process__item-icon {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    z-index: 1;
}

.work-process__item-image img {
    display: block;
    width: 100%;
    max-width: 343px;
}

/* CHECKOUT */
.checkout {
    position: relative;
    padding-top: 28px;
    padding-bottom: 60px;
}

.checkout::before {
    content: '';
    position: absolute;
    top: -115px;
    left: 0;
    width: 100%;
    height: 167px;
    background: linear-gradient(94deg, #E883F8 0.55%, #9BFAFC 49.41%, #665EF5 98.28%);
    pointer-events: none;
    z-index: 0;
}

.checkout::after {
    content: '';
    position: absolute;
    top: -115px;
    left: 0;
    width: 100%;
    height: 167px;
    background: linear-gradient(180deg, rgba(247, 249, 252, 0.00) 38.46%, #F7F9FC 89.9%);
    pointer-events: none;
    z-index: 1;
}

.checkout__header {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 50px;
    padding-right: 15px;
    margin-bottom: 45px;
    z-index: 2;
}

.checkout__breadcrumbs {
    flex: 1;
}

.checkout__logo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.checkout__logo a:hover {
    opacity: 0.7;
}

.checkout__logo img {
    display: block;
    height: 60px;
}

.checkout__cart {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.checkout__cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.checkout__cart-btn:hover {
    opacity: 0.7;
}

.checkout__columns {
    display: flex;
    gap: 18px;
}

.checkout__column {
    flex: 1;
}

.checkout__column {
    border-radius: 10px;
    background: rgba(201, 201, 238, 0.25);
}

.checkout__column--shipping {
    max-width: 444px;
}

.checkout__column--payment {
    max-width: 456px;
}

.checkout__column--summary {
    max-width: 424px;
    background: #F7F9FC;
}

.checkout__column--header {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    background: #C9C9EE;
}

.checkout__column--number {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #FFF;
    width: 20px;
    height: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.checkout__column--title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
}

.checkout__column--body {
    padding: 23px 20px;
}

.checkout__column--summary .checkout__column--body {
    padding: 23px 12px 5px;
}

.checkout__form-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout__form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.checkout__form-row .field {
    width: 100%;
}

.checkout__form-fields .hint {
    margin-top: 6px;
    margin-left: 10px;
}

.checkout__form-row > .hint {
    margin-top: 0;
}

.checkout__form-fields .checkbox {
    align-items: flex-start;
    margin-top: 6px;
}

.checkout__form-fields .checkbox__text,
.payment__address .checkbox__text {
    line-height: 16px;
}

.checkout__payment-text {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 10px;
}

.checkout__payment-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.payment-method > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method__label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.payment-method__radio {
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #857EF7;
    background: #FFFFFF;
    flex-shrink: 0;
}

.payment-method__radio::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: url('../images/icons/check-v3.svg') center/contain no-repeat;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.payment-method input:checked + .payment-method__label .payment-method__radio::before {
    opacity: 1;
}

.payment-method__icon img {
    display: flex;
    width: 49px;
}

.payment-method__title {
    display: flex;
    flex-direction: column;
    font-size: 16px;
    line-height: 18px;
}

.payment-method__title span {
    font-size: 11px;
}

.payment-method__content {
    display: none;
    margin-top: 12px;
}

.payment-method.is-active .payment-method__content {
    display: block;
}

.payment__address {
    margin-top: 32px;
}

.payment__address > .checkbox {
    padding-left: 28px;
}

.payment__address-details {
    display: flex;
    flex-direction: column;
    padding-left: 55px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 18px;
}

.payment__address-form {
    /*display: none;*/
    margin-top: 20px;
}

.payment-method__text {
    font-size: 11px;
    line-height: 19px;
}

.payment-method__check {
    margin-top: 12px;
    padding-left: 28px;
}

.payment-method__check .checkbox__mark {
    margin-bottom: 16px;
}

.paypal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    border-radius: 50px;
    border: 1px solid #30223B;
    background: #FFF;
}

.paypal-btn:hover {
    opacity: 0.7;
}

.klarna-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 100%;
    height: 42px;
    padding: 0 20px;
    border-radius: 50px;
    border: 1px solid #30223B;
    background: #FFA8CD;
}

.klarna-btn:hover {
    opacity: 0.7;
}

.klarna-btn span {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 2px;
}

.klarna-btn img {
    padding-bottom: 2px;
}

.payment-method__content .paypal-btn,
.payment-method__content .klarna-btn {
    max-width: 268px;
    margin: 16px auto 0;
}

.order__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order__item {
    display: flex;
    gap: 20px;
}

.order__item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.order__item-image {
    display: flex;
}

.order__item-image img {
    width: 78px;
    height: 78px;
    border-radius: 10px;
}

.order__item-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.order__item-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.order__item-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
}

.order__item-params {
    display: flex;
    flex-direction: column;
}

.order__item-param {
    font-size: 12px;
    line-height: 24px;
}

.order__item-param strong {
    font-weight: 700;
}

.order__item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: 'Poppins', sans-serif;
    margin-left: auto;
}

.order__item-price-current {
    font-size: 20px;
    line-height: 24px;
}

.order__item-price-old {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: line-through;
    color: rgba(35, 19, 48, 0.60);
}

.order__item-details-btn {
    font-size: 14px;
    line-height: 16px;
    text-decoration: underline;
    color: #5E57CE;
}

.order__item-details {
    display: none;
}

.order__item-detail {
    display: block;
    font-size: 12px;
    line-height: 24px;
}

.order__summary {
    margin-top: 16px;
}

.order__summary-rows {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order__summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.order__summary-label {
    font-size: 18px;
    line-height: 16px;
}

.order__summary-value {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 16px;
    text-align: right;
}

.order__summary-row--shipping .order__summary-value {
    color: #30A11C;
}

.order__promo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0 -5px;
}

.order__promo-input {
    height: 34px;
    padding: 6px 20px;
    border: 1px solid #A4A0B0;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.order__promo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 106px;
    height: 34px;
    padding: 0 20px;
    border-radius: 50px;
    background: #E1DFFD;
    font-family: 'Host Grotesk', sans-serif;
    font-size: 16px;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    text-align: center;
}

.order__promo-btn:hover {
    opacity: 0.7;
}

.order__promo-btn:disabled {
    color: rgba(48, 34, 59, 0.60);
    pointer-events: none;
}

.order__summary-row--total {
    position: relative;
    padding-top: 16px;
}

.order__summary-row--total::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    right: -5px;
    height: 2px;
    border-radius: 50px;
    background: rgba(102, 94, 245, 0.60);
}

.order__summary-row--total .order__summary-label,
.order__summary-row--total .order__summary-value {
    font-size: 24px;
    font-weight: 500;
    color: #5E57CE;
}

.order__summary-row--total .order__summary-label {
    text-transform: uppercase;
}

.order__summary-row--total .order__summary-value {
    display: flex;
    align-items: baseline;
    gap: 5px;
    text-align: right;
}

.order__summary-row--total .order__summary-value small {
    font-size: 16px;
    font-weight: 400;
}

.order__actions {
    margin-top: 33px;
}

.order__notes {
    font-size: 11px;
    line-height: 19px;
}

.order__notes a {
    text-decoration: underline;
}

.order__notes a:hover {
    text-decoration: none;
}

.order__actions .checkbox {
    margin-top: 15px;
}

.order__actions .checkbox__mark {
    margin-bottom: 16px;
}

.order-btn {
    width: 100%;
    height: 42px;
    margin-top: 25px;
}

.order__policy {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 13px;
}

.order__policy-item {
    font-size: 13px;
    line-height: 16px;
    color: #5E57CE;
    text-decoration: underline;
}

.order__policy-item:hover {
    text-decoration: none;
}

/* GUIDE */
.guide {
    padding-top: 20px;
    padding-bottom: 75px;
}

.guide__inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.guide__sidebar {
    position: sticky;
    top: 20px;
    flex: 0 0 282px;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
}

.guide__content {
    flex: 1;
}

.guide__section {
    display: flex;
    flex-direction: column;
}

.guide__section-header {
    padding: 4px 20px;
    background: #8C86F8;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
    text-transform: uppercase;
    color: #FFF;
}

.guide__section-body {
    padding: 14px 20px;
}

.guide__section-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide__section-link {
    padding: 3px 10px;
    border-radius: 26px;
    border: 1px solid #000;
    font-size: 15px;
    line-height: 20px;
    text-transform: capitalize;
}

/* TEXT SECTION */
.text-section {
    padding-top: 20px;
    padding-bottom: 75px;
}

.content h1,
.content h2,
.content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    color: #5E57CE;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 46px;
    line-height: 60px;
}

.content h2 {
    font-size: 30px;
    line-height: 40px;
}

.content h3 {
    font-size: 20px;
    line-height: 30px;
}

.content h1:not(:first-child),
.content h2:not(:first-child) {
    margin-top: 34px;
}

.content h3:not(:first-child) {
    margin-top: 20px;
}

.content .heading {
    padding: 8px;
    background: #E1DFFD;
    line-height: 36px;
    color: #30223B;
    margin-bottom: 16px;
}

.content p:not(:last-child) {
    margin-bottom: 16px;
}

.content img {
    display: block;
    width: 100%;
    border-radius: 20px;
}

.content ul:not(:last-child),
.content ol:not(:last-child) {
    margin-bottom: 16px;
}

.content ul li {
    position: relative;
    padding-left: 16px;
}

.content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
}

.content li {
    margin-bottom: 6px;
}

.content a:not(.btn) {
    font-weight: 500;
    text-decoration: underline;
}

.content a:not(.btn):hover {
    text-decoration: none;
}

.columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 16px;
}

.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.fade-scale-animate {
    opacity: 0;
    transform: translateY(24px) scale(.9);
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-scale-animate.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}