:root {
    --primary-color: #B9A48D;
    --hover-primary-color: #C6B29B;
    --secondary-color: #F1F1F1;
    --white-color: #f7f7f6;
    --text-color: #EAEAEA;
    --black-text-color: #111111;
    --background-color: #0E0E0E;
    --sections-background-color: #151515;
    --black-color: #000000;
    --red-color: #ef4444;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: var(--background-color);
}
::-webkit-scrollbar {
    width: 6px;
    background-color: #a7a7a7;
}
@font-face {
    font-family: 'Montserrat';
    src: url('/assets/font/Montserrat/Montserrat-VariableFont_wght.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
body {
    overflow-x: hidden;
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    -webkit-text-size-adjust: 100%;
    margin: 0;
    padding: 0;
    padding-top: 124px;
    min-height: 200vh;
    user-select: none;
    @media (max-width: 768px) {
        padding-top: 120px;
    }
    &.no-scroll {
        overflow: hidden;
    }
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
a {
    text-decoration: none;
}
.primary-btn {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--black-text-color);
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 500;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 50rem;
    &:hover {
        background-color: var(--hover-primary-color);
    }
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--background-color);
    .header-container {
        padding: 1rem 0;
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 1536px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        .start {
            display: flex;
            align-items: center;
            .logo {
                height: 52px;
                align-content: center;
                a {
                    padding-inline-end: .75rem;
                    img {
                        height: 27px;
                        filter: invert(1);
                    }
                }
            }
        }
        nav {
            margin-inline-start: 1rem;
            @media (max-width: 1024px) {
                margin-inline-start: 0;
            }
            ul {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                row-gap: 0.5rem;
                @media (max-width: 1024px) {
                    flex-direction: column;
                    align-items: flex-start;
                    margin-inline-start: 0;
                }
                li {
                    a {
                        margin-inline-start: 0.25rem;
                        padding-inline-end: 0.5rem;
                        position: relative;
                        color: #9ca3af;
                        font-size: 0.875rem;
                        line-height: 1.25rem;
                        font-weight: 400;
                        display: flex;
                        align-items: center;
                        &.on-sale {
                            color: var(--red-color);
                            font-weight: 600;
                            span {
                                margin-inline-start: 5px;
                                margin-block-end: -2px;
                                .slow-spin {
                                    width: 15px;
                                    height: 15px;
                                    animation: spin 2.3s linear infinite;
                                }
                            }
                        }
                        &::after {
                        content: '';
                        position: absolute;
                        bottom: -2px;
                        left: 0;
                        width: 0;
                        height: 1px;
                        background-color: var(--secondary-color);
                        transition: width 0.3s ease;
                        }
                        &:hover {
                            &::after {
                                width: 100%;
                            }
                            color: var(--secondary-color);
                        }
                    }
                }
            }
        }
        .end {
            display: flex;
            align-items: center;
            gap: .75rem;
            @media (max-width: 1024px) {
                gap: .25rem;
            }
            .header-icon {
                .main-icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    a {
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                    svg {
                        width: 24px;
                        height: 24px;
                        color: var(--white-color);
                        stroke-width: 1.5;
                        @media (max-width: 1024px) {
                            width: 30px;
                            height: 30px;
                        }
                    }
                }
                &.search {
                    .search-page {
                        position: fixed;
                        top: -20vw;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        z-index: 999;
                        inset: 0;
                        opacity: 0;
                        visibility: hidden;
                        transition: all 0.3s ease-in-out;
                        padding: 0.5rem;
                        background-color: rgba(0, 0, 0, 0.5);
                        backdrop-filter: blur(5px);
                        &.active {
                            top: 0;
                            opacity: 1;
                            visibility: visible;
                        }
                        .close {
                            display: flex;
                            align-items: center;
                            justify-content: flex-end;
                            cursor: pointer;
                            .icon {
                                background-color: var(--secondary-color);
                                margin-inline-end: 20px;
                                margin-block-start: 10px;
                                width: 36px;
                                height: 36px;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                svg {
                                    width: 20px;
                                    height: 20px;
                                    color: var(--black-color);
                                    stroke-width: 2;
                                }
                            }
                        }
                        .search-box {
                            position: absolute;
                            top: 50%;
                            left: 50%;
                            transform: translate(-50%, -50%);
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            form {
                                display: flex;
                                align-items: center;
                                width: 30vw;
                                max-width: 90vw;
                                min-width: 350px;
                                input {
                                    flex: 1;
                                    padding: 0 1rem;
                                    height: 50px;
                                    background-color: var(--white-color);
                                    color: var(--black-color);
                                    border: none;
                                    font-size: 1.25rem;
                                    line-height: 1.5rem;
                                    font-weight: 500;
                                    text-align: center;
                                    border-radius: 0;
                                    &::placeholder {
                                        scale: 1;
                                        transition: all 0.3s ease;
                                    }
                                    &:focus {
                                        outline: none;
                                        &::placeholder {
                                            scale: 0;
                                        }
                                    }
                                }
                                button {
                                    width: 50px;
                                    height: 50px;
                                    background-color: var(--primary-color);
                                    color: var(--white-color);
                                    border: none;
                                    font-size: 1rem;
                                    line-height: 1.5rem;
                                    font-weight: 500;
                                    cursor: pointer;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    svg {
                                        width: 30px;
                                        height: 30px;
                                        color: var(--white-color);
                                        stroke-width: 1.5;
                                    }
                                }
                            }
                        }
                    }
                }
                &.cart {
                    .main-icon {
                        position: relative;
                        .cart-count {
                            position: absolute;
                            top: -5px;
                            right: -5px;
                            background-color: var(--primary-color);
                            color: #fff;
                            border-radius: 50%;
                            padding: 2px 6px;
                            font-size: 12px;
                            font-weight: 600;
                            @media (max-width: 1024px) {
                                display: none;
                            }
                        }
                    }
                    .cart-page {
                        position: fixed;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        z-index: 999;
                        inset: 0;
                        opacity: 0;
                        visibility: hidden;
                        display: flex;
                        align-items: center;
                        justify-content: flex-end;
                        background-color: rgba(0, 0, 0, 0.5);
                        backdrop-filter: blur(5px);
                        &.active {
                            visibility: visible;
                            opacity: 1;
                        }
                        .side-page {
                            overflow: auto;
                            background-color: var(--white-color);
                            height: 100%;
                            @media (min-width: 768px) {
                                width: 450px;
                            }
                            .cart-page-header {
                                width: 100%;
                                padding: 0.75rem 1rem;
                                margin-block-end: 1rem;
                                display: flex;
                                align-items: center;
                                justify-content: space-between;
                                box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
                                .cart-page-title {
                                    font-size: 1rem;
                                    line-height: 1.75rem;
                                    font-weight: 600;
                                    color: var(--black-color);
                                }
                                .close {
                                    cursor: pointer;
                                    svg {
                                        width: 20px;
                                        height: 20px;
                                        color: var(--black-color);
                                        stroke-width: 2.5;
                                    }
                                }
                            }
                            .cart-page-body {
                                padding: 0.75rem;
                                .cart-cases {
                                    min-height: 90vh;
                                    display: flex;
                                    align-items: center;
                                    .cart-page-empty {
                                        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
                                        padding: 1.5rem;
                                        text-align: center;
                                        .img {
                                            margin: auto;
                                            margin-bottom: .75rem;
                                            svg {
                                                width: 100px;
                                                color: #b3b3b3;
                                            }
                                        }
                                        .cart-page-empty-title {
                                            margin-block-end: 2.5rem;
                                            p {
                                                text-transform: uppercase;
                                                color: var(--black-color);
                                                font-size: 1.125rem;
                                                line-height: 1.75rem;
                                                text-align: center;
                                                @media (min-width: 768px) {
                                                    font-size: 1.25rem;
                                                    line-height: 1.75rem;
                                                }
                                            }
                                        }
                                        .start {
                                            a {
                                                padding: 0.75rem 1.5rem;
                                                background-color: var(--primary-color);
                                                color: var(--text-color);
                                                font-size: 1rem;
                                                line-height: 1.25rem;
                                                font-weight: 500;
                                                display: inline-block;
                                                margin: auto;
                                                transition: all 0.3s ease;
                                                border-radius: 50rem;
                                                &:hover {
                                                    background-color: var(--hover-primary-color);
                                                }
                                            }
                                        }
                                    }
                                }
                                .checkout {
                                    padding: 1rem;
                                    padding-bottom: 10rem;
                                    .checkout-header {
                                        padding: 0 0.75rem;
                                        h3 {
                                            display: flex;
                                            justify-content: space-between;
                                            align-items: center;
                                            font-size: 1.125rem;
                                            line-height: 1.75rem;
                                            font-weight: 600;
                                            color: var(--black-text-color);
                                        }
                                    }
                                    .checkout-btn {
                                        margin-top: 1rem;
                                        a {
                                            width: 100%;
                                            padding: 0.75rem 1.5rem;
                                            background-color: var(--primary-color);
                                            color: var(--text-color);
                                            font-size: 1rem;
                                            line-height: 1.25rem;
                                            font-weight: 600;
                                            text-align: center;
                                            display: inline-block;
                                            transition: all 0.3s ease;
                                            border-radius: 50rem;
                                            &:hover {
                                                background-color: var(--hover-primary-color);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                &.currency-country {
                    .currency-country-page {
                        position: fixed;
                        top: 0;
                        right: 0;
                        bottom: 0;
                        left: 0;
                        z-index: 999;
                        inset: 0;
                        opacity: 0;
                        visibility: hidden;
                        display: flex;
                        align-items: center;
                        justify-content: flex-end;
                        background-color: rgba(0, 0, 0, 0.5);
                        backdrop-filter: blur(5px);
                        &.active {
                            visibility: visible;
                            opacity: 1;
                        }
                        .side-page {
                            overflow: auto;
                            background-color: var(--white-color);
                            height: 100%;
                            width: 100%;
                            @media (min-width: 768px) {
                                width: 450px;
                            }
                            .currency-country-page-header {
                                padding: 0.75rem;
                                display: flex;
                                align-items: center;
                                justify-content: flex-end;
                                .close {
                                    cursor: pointer;
                                    svg {
                                        width: 20px;
                                        height: 20px;
                                        color: var(--black-color);
                                        stroke-width: 2.5;
                                    }
                                }
                            }
                            .currency-country-page-body {
                                padding: 0.75rem;
                                .currency-country-info {
                                    margin-block-end: 2rem;
                                    p.currently {
                                        padding-block-end: 0.5rem;
                                        text-align: center;
                                        font-size: 1rem;
                                        line-height: 1.25rem;
                                        color: var(--black-text-color);
                                        span {
                                            font-weight: 600;
                                        }
                                    }
                                }
                                form {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 1rem;
                                    color: var(--black-text-color);
                                    .selections {
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        gap: 1rem;
                                        .main-label {
                                            cursor: pointer;
                                            margin-block-end: 0.5rem;
                                            font-size: 1rem;
                                            line-height: 1.25rem;
                                            font-weight: 500;
                                            display: flex;
                                            align-items: center;
                                            justify-content: space-between;
                                            padding-inline: 0.75rem;
                                            height: 40px;
                                            border-radius: 0.375rem;
                                            border: 2px solid var(--black-text-color);
                                        }
                                        .selection {
                                            position: relative;
                                            .options {
                                                position: absolute;
                                                visibility: hidden;
                                                opacity: 0;
                                                top: 100%;
                                                left: -50%;
                                                background-color: var(--white-color);
                                                padding: 5px;
                                                max-width: 100vw;
                                                width: 250px;
                                                border: 2px solid var(--black-text-color);
                                                border-radius: 0.375rem;
                                                transition: all 0.3s ease;
                                                @media (max-width: 550px) {
                                                    width: 100%;
                                                }
                                                &.active {
                                                    visibility: visible;
                                                    opacity: 1;
                                                    z-index: 1;
                                                    /* inset: auto; */
                                                    top: 100%;
                                                    left: 50%;
                                                    right: 50%;
                                                    transform: translateX(-50%);
                                                }
                                                &.country-options {
                                                    label {
                                                        .label-content {
                                                            p {
                                                                @media (max-width: 550px) {
                                                                    display: none;
                                                                }
                                                            }
                                                        }
                                                    }
                                                }
                                                label {
                                                    width: 100%;
                                                    display: flex;
                                                    align-items: center;
                                                    gap: 0.5rem;
                                                    cursor: pointer;
                                                    border-block-end: 1px solid #e5e5e5;
                                                    &:last-child {
                                                        border-block-end: none;
                                                    }
                                                    input {
                                                        position: absolute;
                                                        visibility: hidden;
                                                        appearance: none;
                                                        opacity: 0;
                                                        pointer-events: none;
                                                        &:checked + .label-content {
                                                            border: 2px solid;
                                                            border-color: var(--black-text-color);
                                                            p {
                                                                font-weight: 600;
                                                            }
                                                        }
                                                        &:not(:checked) + .label-content {
                                                            border: 2px solid transparent;
                                                        }
                                                    }
                                                    .label-content {
                                                        width: 100%;
                                                        display: flex;
                                                        align-items: center;
                                                        justify-content: space-between;
                                                        gap: 1rem;
                                                        padding-inline: 0.75rem;
                                                        height: 40px;
                                                        border-radius: 0.375rem;
                                                        transition: all 0.3s ease;
                                                        @media (max-width: 550px) {
                                                            justify-content: center;
                                                        }
                                                        p {
                                                            font-size: 0.875rem;
                                                            line-height: 1.25rem;
                                                            font-weight: 500;
                                                            transition: all 0.3s ease;
                                                            @media (max-width: 550px) {
                                                                text-align: center;
                                                            }
                                                            &.mobile-country {
                                                                display: none;
                                                                @media (max-width: 550px) {
                                                                    display: block;
                                                                }
                                                            }
                                                        }
                                                        img {
                                                            width: 30px;
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                    button {
                                        cursor: pointer;
                                        margin-block-start: 2rem;
                                        border: none;
                                        width: 100%;
                                        padding: 0.75rem 1.5rem;
                                        background-color: var(--primary-color);
                                        color: var(--text-color);
                                        font-size: 1rem;
                                        line-height: 1.25rem;
                                        font-weight: 500;
                                        text-align: center;
                                        display: inline-block;
                                        transition: all 0.3s ease;
                                        border-radius: 50rem;
                                        &:hover {
                                            background-color: var(--hover-primary-color);
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .menu.mobile {
                display: none;
                @media (max-width: 1024px) {
                    display: block;
                }
                .main-icon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    .hamburger-icon {
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        gap: 5px;
                        cursor: pointer;
                        position: relative;
                        padding: 15px;
                        span {
                            position: absolute;
                            right: 0;
                            width: 22px;
                            height: 2.5px;
                            border-radius: 12px;
                            transition: 0.5s;
                            background-color: var(--white-color);
                            &.top {
                                top: calc(50% - 7px);
                                &.opened {
                                    transform: rotate(45deg);
                                    top: 50%;
                                }
                            }
                            &.middle {
                                top: 50%;
                                width: 17px;
                                &.opened {
                                    width: 0;
                                }
                            }
                            &.bottom {
                                top: calc(50% + 7px);
                                width: 10px;
                                &.opened {
                                    transform: rotate(-45deg);
                                    width: 22px;
                                    top: 50%;
                                }
                            }
                        }
                    }
                }
                .menu-page {
                    position: fixed;
                    top: 0;
                    right: auto;
                    bottom: 0;
                    left: -100vw;
                    z-index: 999;
                    inset: 0;
                    opacity: 0;
                    visibility: hidden;
                    width: 100vw;
                    transition: all 0.3s ease-in-out;
                    background-color: rgba(0, 0, 0, 0.5);
                    backdrop-filter: blur(5px);
                    &.active {
                        left: 0;
                        right: 0;
                        opacity: 1;
                        visibility: visible;
                    }
                    .side-page {
                        overflow: auto;
                        background-color: var(--white-color);
                        height: 100%;
                        width: 100%;
                        .menu-header {
                            width: 100%;
                            padding: 0.75rem 1rem;
                            height: 84px;
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
                            .logo {
                                a {
                                    img {
                                        height: 27px;
                                    }
                                }
                            }
                            .icons-header {
                                display: flex;
                                align-items: center;
                                justify-content: flex-end;
                                gap: 0.5rem;
                                .icons-header-icon {
                                    display: flex;
                                    align-items: center;
                                    justify-content: flex-start;
                                    gap: 0.5rem;
                                    svg {
                                        color: var(--background-color);
                                    }
                                    .main-icon {
                                        svg {
                                            width: 30px;
                                            height: 30px;
                                        }
                                    }
                                    .close {
                                        svg {
                                            width: 30px;
                                            height: 30px;
                                        }
                                    }
                                }
                                .close {
                                    cursor: pointer;
                                    .icon {
                                        display: flex;
                                        align-items: center;
                                        svg {
                                            width: 30px;
                                            height: 30px;
                                            color: var(--black-color);
                                            stroke-width: 2.5;
                                        }
                                    }
                                }
                            }
                        }
                        .menu-body {
                            padding: 1rem;
                            nav {
                                ul {
                                    li {
                                        width: 100%;
                                        display: flex;
                                        align-items: center;
                                        justify-content: flex-start;
                                        border-block-end: 1px solid #b9b9b9;
                                        &:last-child {
                                            border-block-end: none;
                                        }
                                        a {
                                            padding: 0.5rem 1rem;
                                            color: var(--black-text-color);
                                            font-size: 1rem;
                                            &.on-sale {
                                                color: var(--red-color);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                        .menu-footer {
                            margin-top: 1.5rem;
                            padding: 1rem;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            p {
                                color: var(--black-text-color);
                                font-size: 1.1rem;
                                line-height: 1.6rem;
                                font-weight: 400;
                                text-align: center;
                            }
                        }
                    }
                }
            }
        }
    }
    .login-points {
        background-color: var(--primary-color);
        padding: 0.625rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        a {
            width: 100%;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .5rem;
            color: var(--background-color);
            color: #222222;
            font-size: 0.875rem;
            line-height: 1.25rem;
            font-weight: 500;
            cursor: pointer;
            @media (max-width: 768px) {
                font-size: 0.75rem;
                line-height: 1rem;
                gap: .25rem;
            }
            p {
                &.sign-up {
                    text-decoration: underline;
                    font-weight: 600;
                }
                &.cashback {
                    font-weight: 600; 
                }
            }
        }
    }
}
main {
    padding-block: 0.75rem;
    @media (min-width: 1024px) {
        padding-block: 2.5rem;
    }
    section {
        &.section {
            padding: 0.75rem 1rem;
            overflow: hidden;
            @media (min-width: 1024px) {
                padding: 2.5rem 5rem;
            }
            .product-benefits {
                display: none;
                align-items: center;
                justify-content: flex-start;
                gap: 0.5rem;
                margin-bottom: 0.5rem;
                @media (min-width: 1024px) {
                    margin-bottom: 1.5rem;
                }
                svg {
                    width: 35px;
                    height: 41px;
                @media (min-width: 1024px) {
                    width: 50px;
                    height: 56px;
                }
                }
            }
            .product-category {
                p {
                    font-size: .75rem;
                    line-height: 1rem;
                    font-weight: 600;
                    letter-spacing: 2.5px;
                    text-transform: uppercase;
                    @media (min-width: 768px) {
                        font-size: 1rem;
                        line-height: 1.5rem;
                    }
                }
            }
            .product-name {
                p {
                    font-size: 1.25rem;
                    line-height: 1.75rem;
                    font-weight: 600;
                    @media (min-width: 768px) {
                        padding-block: .25rem;
                        font-size: 1.5rem;
                        line-height: 2rem;
                    }
                    @media (min-width: 1024px) {
                        font-size: 2.25rem;
                        line-height: 2.5rem;
                    }
                }
            }
            .product-content {
                .title {
                    p {
                        font-size: .875rem;
                        line-height: 1.25rem;
                        opacity: 0.7;
                        max-width: 150px;
                        margin-bottom: .25rem;
                        @media (min-width: 768px) {
                            font-size: 1.2rem;
                            line-height: 2rem;
                            max-width: max-content;
                        }
                    }
                }
                .description {
                    display: none;
                    p {
                        font-size: .75rem;
                        line-height: 1rem;
                        opacity: 0.6;
                        max-width: 150px;
                        margin-bottom: .25rem;
                        @media (min-width: 768px) {
                            max-width: 316px;
                        }
                        @media (min-width: 1024px) {
                            font-size: 1rem;
                            line-height: 1.5rem;
                        }
                    }
                }
            }
            .product-price {
                .price {
                    .for-price {
                        font-size: .75rem;
                        line-height: 1rem;
                        font-weight: 600;
                        @media (min-width: 768px) {
                            font-size: 1.5rem;
                            line-height: 2rem;
                            margin-bottom: .25rem;
                        }
                    }
                    .current-price {
                        display: flex;
                        align-items: baseline;
                        gap: 0.25rem;
                        .price-number {
                            color: #e4a862;
                            line-height: 1;
                            font-weight: 500;
                            font-size: 1.5rem;
                            line-height: 2rem;
                            @media (min-width: 768px) {
                                font-size: 3rem;
                                line-height: 1;
                            }
                        }
                        .price-currency {
                            font-size: .75rem;
                            line-height: 1rem;
                            font-weight: 500;
                            text-transform: uppercase;
                            @media (min-width: 768px) {
                                font-size: 1.25rem;
                                line-height: 1.75rem;
                            }
                        }
                    }
                    .old-price {
                        font-size: 0.875rem;
                        line-height: 1.25rem;
                        font-weight: 500;
                        text-decoration: line-through;
                        opacity: 0.6;
                        @media (min-width: 768px) {
                            font-size: 1.5rem;
                            line-height: 1.5rem;
                            margin-top: 0.5rem;
                        }
                    }
                }
            }
        }
    }
}
section.hero-section {
    position: relative;
    img {
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        height: auto;
        vertical-align: middle;
        min-height: 400px;
        &.desktop {
            display: block;
            @media (max-width: 768px) {
                display: none;
            }
        }
        &.mobile {
            display: none;
            min-height: 540px;
            @media (max-width: 768px) {
                display: block;
            }
        }
    }
    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 2rem;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        .text {
            /* margin-top: 3rem; */
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            @media (max-width: 768px) {
                align-items: center;
            }
            .start {
                width: 40%;
                color: var(--text-color);
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                @media (max-width: 768px) {
                    align-items: center;
                }
                .product-info {
                    .product-benefits {
                        display: none;
                        align-items: center;
                        justify-content: flex-start;
                        gap: 0.5rem;
                        margin-bottom: 0.5rem;
                        @media (min-width: 1024px) {
                            margin-bottom: 1.5rem;
                        }
                        svg {
                            width: 35px;
                            height: 41px;
                        @media (min-width: 1024px) {
                            width: 50px;
                            height: 56px;
                        }
                        }
                    }
                    .product-category {
                        p {
                            font-size: .75rem;
                            line-height: 1rem;
                            font-weight: 600;
                            letter-spacing: 2.5px;
                            text-transform: uppercase;
                            @media (min-width: 768px) {
                                font-size: 1rem;
                                line-height: 1.5rem;
                            }
                        }
                    }
                    .product-name {
                        p {
                            font-size: 1.25rem;
                            line-height: 1.75rem;
                            font-weight: 600;
                            @media (min-width: 768px) {
                                padding-block: .25rem;
                                font-size: 1.5rem;
                                line-height: 2rem;
                            }
                            @media (min-width: 1024px) {
                                font-size: 2.25rem;
                                line-height: 2.5rem;
                            }
                        }
                    }
                    .product-content {
                        .title {
                            p {
                                font-size: .875rem;
                                line-height: 1.25rem;
                                opacity: 0.7;
                                max-width: 150px;
                                margin-bottom: .25rem;
                                @media (min-width: 768px) {
                                    font-size: 1.2rem;
                                    line-height: 2rem;
                                    max-width: max-content;
                                }
                            }
                        }
                        .description {
                            display: none;
                            p {
                                font-size: .75rem;
                                line-height: 1rem;
                                opacity: 0.6;
                                max-width: 150px;
                                margin-bottom: .25rem;
                                @media (min-width: 768px) {
                                    max-width: 316px;
                                }
                                @media (min-width: 1024px) {
                                    font-size: 1rem;
                                    line-height: 1.5rem;
                                }
                            }
                        }
                    }
                }
            }
            .end {
                width: 40%;
                color: var(--text-color);
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                @media (max-width: 768px) {
                    align-items: center;
                }
                .product-price {
                    .price {
                        .for-price {
                            font-size: .75rem;
                            line-height: 1rem;
                            font-weight: 600;
                            @media (min-width: 768px) {
                                font-size: 1.5rem;
                                line-height: 2rem;
                                margin-bottom: .25rem;
                            }
                        }
                        .current-price {
                            display: flex;
                            align-items: baseline;
                            gap: 0.25rem;
                            .price-number {
                                color: #e4a862;
                                line-height: 1;
                                font-weight: 500;
                                font-size: 1.5rem;
                                line-height: 2rem;
                                @media (min-width: 768px) {
                                    font-size: 3rem;
                                    line-height: 1;
                                }
                            }
                            .price-currency {
                                font-size: .75rem;
                                line-height: 1rem;
                                font-weight: 500;
                                text-transform: uppercase;
                                @media (min-width: 768px) {
                                    font-size: 1.25rem;
                                    line-height: 1.75rem;
                                }
                            }
                        }
                        .old-price {
                            font-size: 0.875rem;
                            line-height: 1.25rem;
                            font-weight: 500;
                            text-decoration: line-through;
                            opacity: 0.6;
                            @media (min-width: 768px) {
                                font-size: 1.5rem;
                                line-height: 1.5rem;
                                margin-top: 0.5rem;
                            }
                        }
                    }
                }
            }
        }
        .button {
            a {
                margin: auto;
                margin-block-end: 1.5rem;
                @media (min-width: 768px) {
                    margin-block-end: 2.5rem;
                }
            }
        }
    }
}
@keyframes spin {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(1turn);
    }
}