
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
/* medium */

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
/* llarge */

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
.container {
    width: 100%;
    padding: 1%;
}
@media only screen and (max-width: 768px) {
    .container {
        padding: 1% 5%;
    }
}
/* Start Global Rules */
* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: 0.3s all ease-in-out;
}
html {
    scroll-behavior: smooth;
}
body::-webkit-scrollbar {
    width: 3px;
    position: relative;
    right: 5px;
}
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    width: 2px;
}
body::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    width: 2px;
    border-radius: 2px;
    transition: 2s all ease-in-out;
}
body::-webkit-scrollbar-thumb:hover {
    background-color: rgb(198, 198, 198);
}
body::-webkit-scrollbar-thumb:active {
    background-color: rgb(226, 226, 226);
}
div::-webkit-scrollbar {
    width: 3px;
    position: relative;
    right: 5px;
}
div::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    width: 2px;
}
div::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
    width: 2px;
    border-radius: 2px;
    transition: 2s all ease-in-out;
}
div::-webkit-scrollbar-thumb:hover {
    background-color: rgb(198, 198, 198);
}
div::-webkit-scrollbar-thumb:active {
    background-color: rgb(226, 226, 226);
}

body {
    /* font-family: "Open Sans", sans-serif; */
    font-family: 'Jost', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
}
::selection {
    color: #000;
    background-color: #fff;
}
a {
    text-decoration: none;
    cursor: pointer;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    user-select: none;
}
/* Product */
.boxes {
    display: flex;
    flex-wrap: wrap;
    &.no-wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        .box {
            flex-basis: auto;
            max-width: 500px;
            margin: 20px;
            padding: 0;
            gap: 0;
            display: inline-block;
            background-color: #fff;
            border-radius: 7px;
            &:hover {
                background-color: #fff;
            }
            a {
                text-decoration: none;
                color: #000;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 10px;
                .details {
                    gap: 10px;
                }
            }
            .product-img {
                width: 20%;
                border-radius: 7px;
                padding: 0;
                img {
                    border-radius: 7px;
                }
            }
            .favourite {
                display: none;
            }
        }
    }
    .box {
        flex-basis: 25%;
        margin-bottom: 3.75rem;
        display: flex;
        flex-direction: column;
        gap: 20px;
        background-color: #f2f2f2;
        &:hover {
            background-color: #ebebeb;
        }
        @media (max-width: 1025px) {
            flex-basis: 50%;
            margin-bottom: 3.75rem;
            padding-bottom: 20px;
        }
        .favourite {
            display: flex;
            justify-content: flex-end;
            padding: 10px;
            padding-bottom: 0;
            .active-icon {
                display: none;
            }
            &.favourite.active {
                .inactive-icon {
                    display: none;
                }
                .active-icon {
                    display: inline;
                }
            }
        }
        a {
            text-decoration: none;
            color: #000;
            display: flex;
            flex-direction: column;
            gap: 25px;
            .product-img {
                padding: 0 10px;
                img {
                    max-width: 100%;
                }
                .default-img {
                    display: block;
                }
                .update-img {
                    display: none;
                }
            }
            .details {
                padding: 0 10px;
                display: flex;
                flex-direction: column;
                gap: 25px;
                .new span {
                    background-color: #e1e1e1;
                    color: #000;
                    font-size: 11px;
                    font-weight: 600;
                    padding: 2px 5px;
                    margin-bottom: 10px;
                }
                .product-name p {
                    color: #000;
                    font-size: 14px;
                    font-weight: 400;
                }
                .product-price p span {
                    color: #000;
                    font-size: 14px;
                    font-weight: 600;
                }
            }
        }
        &.hoverd-box a .product-img {
            .default-img {
                display: none;
            }
            .update-img {
                display: block;
            }
        }
        .tip {
            padding: 0 10px;
            p {
                color: #555;
                font-size: 12px;
                font-weight: 400;
            }
        }
        .add-to-bag {
            margin: 0 10px;
            padding-top: 30px;
            padding-bottom: 20px;
            opacity: 0;
            @media (max-width: 1025px) {
                display: none;
            }
            button {
                background-color: transparent;
                border: 0;
                display: flex;
                align-items: center;
                gap: 10px;
                width: 100%;
                cursor: pointer;
                img {
                    width: 15px;
                }
                span {
                    font-size: 14px;
                    font-weight: 400;
                }
            }
        }
        &:hover .add-to-bag {
            opacity: 1;
        }
    }
    .more-products {
        padding: 20px 0;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 50px;
        p {
            font-size: 14px;
            font-weight: 400;
            color: #000;
        }
        .button {
            text-align: center;
            button {
                text-align: center;
                padding: 15px;
                width: 300px;
                cursor: pointer;
                background-color: #f2f2f2;
                border: 1px solid #000;
                color: #000;
                font-size: 14px;
                transition: 0.5s;
                &:hover {
                    background-color: #000;
                    color: #fff;
                }
            }
        }
    }
}

/* Header */
.header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    background-color: transparent;
    @media only screen and (max-width: 768px) {
        height: 70px;
    }
    .container {
        width: 100%;
        padding: 1%;
        padding-bottom: 0;
        padding-top: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media only screen and (max-width: 768px) {
            padding: 1% 5%;
        }
        .logo {
            padding: 0;
            @media only screen and (max-width: 768px) {
                width: 92%;
                text-align: center;
            }
            img {
                width: 230px;
                max-width: 100%;
                @media only screen and (max-width: 768px) {
                    width: 200px;
                    transform: translate(-7%, 0);
                }
            }
        }
        .menu {
            .hamburger {
                display: flex;
                gap: 15px;
                align-items: center;
                .icon {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    color: #fff;
                    user-select: none;
                    cursor: pointer;
                }
                .menu-word {
                    @media only screen and (max-width: 991px) {
                        display: none;
                    }
                }
                span.space {
                    color: #fff;
                    display: none;
                }
                .hover {
                    position: absolute;
                    left: -100vw;
                    top: 0;
                    padding: 10px;
                    background-color: #000000;
                    color: #000;
                    width: 22vw;
                    width: 350px;
                    min-width: 350px;
                    height: 110vh;
                    padding-left: 4.5vh;
                    z-index: 1;
                    padding-top: 130px;
                    padding-right: 2vh;
                    transition: 0.5s all ease-in-out;
                    @media only screen and (max-width: 768px) {
                        margin-top: 70px;
                        padding-top: 30px;
                    }
                    .cancel {
                        position: absolute;
                        right: 10px;
                        top: 90px;
                        cursor: pointer;
                        @media only screen and (max-width: 768px) {
                            top: 20px;
                        }
                        svg {
                            color: #ffffff;
                            cursor: pointer;
                            width: 25px;
                        }
                    }
                    .categories {
                        padding: 2vh 0;
                        text-align: left;
                        gap: 20px;
                        .main-li {
                            .main-a {
                                color: #fff;
                                font-size: 14px;
                                font-weight: 400;
                                letter-spacing: 2px;
                                display: inline-block;
                                width: 100%;
                                position: relative;
                                padding: 1.5vh 0;
                                &::after {
                                    content: "";
                                    background-color: transparent;
                                    width: 60px;
                                    position: absolute;
                                    right: -3vw;
                                    top: 0;
                                    height: 100%;
                                }
                            }
                            .sub-menu {
                                position: absolute;
                                top: -100px;
                                width: calc(100vw - 22vw);
                                right: calc(-100vw + 22vw);
                                width: calc(100vw - 350px);
                                right: calc(-100vw + 350px);
                                height: 100vh;
                                padding: 5%;
                                background-color: #000;
                                overflow: auto;
                                transition-delay: 2s;
                                display: none;
                                @media only screen and (max-width: 991px) {
                                    opacity: 0;
                                    display: none;
                                }
                                h2 {
                                    font-size: 20px;
                                    font-weight: 600;
                                    margin-top: 20px;
                                    color: #fff;
                                    letter-spacing: 3px;
                                }
                                .types {
                                    padding: 10px 0;
                                    margin-top: 35px;
                                    display: flex;
                                    gap: 20px;
                                    ul {
                                        width: max-content;
                                        flex-basis: 20%;
                                        h3 {
                                            color: #fff;
                                            font-size: 16px;
                                            font-weight: 500;
                                            padding-bottom: 15px;
                                        }
                                        li a {
                                            color: #eee;
                                            font-size: 14px;
                                            font-weight: 400;
                                            padding: 10px 0;
                                            display: inline-block;
                                            width: 100%;
                                            transition: .3s;
                                            &:hover {
                                                color: #fff;
                                            }
                                        }
                                    }
                                }
                                .collections {
                                    h2 {
                                        padding: 20px 0;
                                        margin-top: 1%;
                                        font-size: 20px;
                                        font-weight: 600;
                                    }
                                    .parent {
                                        display: flex;
                                        justify-content: flex-start;
                                        margin-top: 20px;
                                        overflow-x: auto;
                                        .child {
                                            display: flex;
                                            flex-direction: column;
                                            justify-content: space-between;
                                            align-items: center;
                                            background-color: #000;
                                            gap: 5px;
                                            padding: 10px;
                                            transition: .5s;
                                            text-align: center;
                                            overflow: hidden;
                                            img {
                                                width: 200px;
                                                max-width: 100%;
                                            }
                                            h4 {
                                                color: #fff;
                                                padding: 0;
                                                font-weight: 500;
                                                font-size: 14px;
                                                line-height: 26px;
                                            }
                                        }
                                    }
                                }
                            }
                            &:hover .sub-menu {
                                display: block;
                            }
                            a:hover .sub-menu {
                                display: block;
                            }
                        }
                    }
                    .services {
                        padding: 1vh 0;
                        padding-right: 0;
                        text-align: left;
                        gap: 20px;
                        border-top: 1px solid #8e8e8e;
                        border-bottom: 1px solid #8e8e8e;
                        .child {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            padding: 1vh 0;
                            a {
                                color: #fff;
                                font-size: 12px;
                                font-weight: 400;
                                letter-spacing: 2px;
                            }
                        }
                    }
                    .contact {
                        padding: 1vh 0;
                        padding-right: 0px;
                        text-align: left;
                        gap: 10px;
                        @media only screen and (max-width: 991px) {
                            display: none;
                        }
                        .child {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            gap: 5px;
                            padding: 0.5vh 0;
                            .country {
                                display: flex;
                                align-items: center;
                                gap: 5px;
                                span {
                                    color: #fff;
                                    font-size: 12px;
                                    font-weight: 400;
                                    letter-spacing: 2px;
                                }
                            }
                        }
                    }
                    .bottom {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        gap: 30px;
                        padding-right: 0;
                    }
                    .following {
                        padding: 2vh 0;
                        text-align: left;
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        a svg {
                            width: 15px;
                        }
                    }
                    .language {
                        padding: 2vh 0;
                        margin-left: .1vw;
                        text-align: left;
                        gap: 20px;
                        a {
                            padding: 0 .2vw;
                            color: #eee;
                            font-size: 14px;
                            font-weight: 300;
                            transition: .3s;
                            &:hover {
                                color: #fff;
                            }
                            &.active {
                                color: #fff;
                            }
                        }
                    }
                    .mobile-icons {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 30%;
                        gap: 10px;
                        display: none;
                        @media only screen and (max-width: 768px) {
                            display: flex;
                        }
                        svg {
                            width: 20px;
                        }
                    }
                    &.open {
                        left: 0;
                    }
                }
                .world {
                    display: none;
                    .world-hover {
                        position: absolute;
                        left: 0;
                        top: 0;
                        padding: 10px;
                        background-color: #000;
                        width: 22vw;
                        min-width: 350px;
                        height: 110vh;
                        padding-left: 45px;
                        padding-right: 45px;
                        z-index: 1;
                        padding-top: 30px;
                        margin-top: 100px;
                        display: none;
                        overflow: auto;
                        @media only screen and (max-width: 768px) {
                            margin-top: 70px;
                        }
                        .languages {
                            padding: 2vh 0;
                            li {
                                margin: 1vh 0;
                                a {
                                    display: flex;
                                    justify-content: space-between;
                                    align-items: center;
                                    span {
                                        font-size: 16px;
                                        font-weight: 300;
                                        letter-spacing: 0;
                                        color: #fff;
                                        transition: .3s;
                                    }
                                    img {
                                        width: 28px;
                                        max-width: 100%;
                                    }
                                }
                            }
                        }
                        .shipping {
                            padding: 3vh 0;
                            h3 {
                                font-size: 18px;
                                font-weight: 300;
                                letter-spacing: 2px;
                                padding-bottom: 2vh;
                                color: #fff;
                            }
                            li {
                                margin: 1vh 0;
                                a {
                                    font-size: 16px;
                                    font-weight: 300;
                                    letter-spacing: 0;
                                    color: #fff;
                                    transition: .3s;
                                }
                            }
                        }
                        .location {
                            padding: 3vh 0;
                            h3 {
                                font-size: 18px;
                                font-weight: 300;
                                letter-spacing: 2px;
                                padding-bottom: 10px;
                                color: #fff;
                            }
                            li {
                                margin: 1vh 0;
                                a {
                                    font-size: 16px;
                                    font-weight: 300;
                                    letter-spacing: 0;
                                    color: #fff;
                                    transition: .3s;
                                }
                            }
                        }
                        .alert {
                            padding-top: 30px;
                            p {
                                color: #fff;
                                font-size: 20px;
                                font-weight: 300;
                            }
                        }
                    }
                    .cancel {
                        position: absolute;
                        right: 10px;
                        top: 10px;
                        cursor: pointer;
                        padding: 2px;
                    }
                    .cancel img {
                        cursor: pointer;
                        width: 30px;
                    }
                }
            }
        }
        .icons {
            display: flex;
            align-items: center;
            gap: 20px;
            @media only screen and (max-width: 768px) {
                display: none;
            }
            .svg {
                a {
                    color: #fff;
                    cursor: pointer;
                    padding: 20px 0;
                }
                svg {
                    width: 20px;
                }
            }
            .search {
                .svg {
                    color: #fff;
                    cursor: pointer;
                    padding: 20px 0;
                }
                .search-page {
                    position: fixed;
                    top: -100vh;
                    left: 0;
                    right: 0;
                    background-color: #f2f2f2;
                    overflow-y: auto;
                    padding-top: 50px;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0,0,0,0.8);
                    z-index: 1000;
                    opacity: 0;
                    transition: all 0.5s ease-in-out;
                    .container {
                        display: flex;
                        flex-direction: column;
                        justify-content: flex-start;
                        align-items: flex-start;
                        position: relative;
                        height: 100%;
                        padding: 5px 3%;
                        @media only screen and (max-width: 768px) {
                            padding: 5px 5%;
                        }
                        .close {
                            position: absolute;
                            right: 10px;
                            top: -20px;
                            cursor: pointer;
                            img {
                                width: 30px;
                                filter: invert(1);
                            }
                        }
                        .search-bar {
                            width: 100%;
                            display: flex;
                            justify-content: center;
                            gap: 0;
                            margin: 0 auto;
                            margin-bottom: 20px;
                            input {
                                width: 100%;
                                border: 0;
                                background-color: #f8f8f8;
                                color: #000;
                                border-radius: 10px 0 0 10px;
                                padding: 20px;
                                font-size: 18px;
                                transition: 0.5s;
                                &:focus {
                                    outline: 0;
                                    box-shadow: -10px 10px 20px -20px rgba(0, 0, 0, 0.8);
                                }
                            }
                            button {
                                padding: 20px;
                                background-color: #f8f8f8;
                                border: 0;
                                border-radius: 0 10px 10px 0;
                                cursor: pointer;
                                &:hover {
                                    background-color: #e0e0e0;
                                }
                            }
                        }
                        .most-searched {
                            display: flex;
                            flex-direction: column;
                            border-radius: 10px;
                            width: 100%;
                            gap: 20px;
                            padding: 40px 2%;
                            background-color: #f2f2f2;
                            &.none-mobile {
                                gap: 50px;
                            }
                            &.border-bottom {
                                border-bottom: 1px solid #ececec;
                            }
                            h3 {
                                font-size: 26px;
                                font-weight: 600;
                                color: #000;
                            }
                            i {
                                color: #000;
                            }
                        }
                    }
                }
            }
            .favourite {
                .fav-hover {
                    display: none;
                    position: absolute;
                    width: 25vw;
                    min-width: 350px;
                    height: 110vh;
                    background-color: #000;
                    z-index: -1;
                    top: 0;
                    padding: 10px;
                    padding-top: 120px;
                    right: -100vw;
                    transition: 0.3s;
                    .content {
                        display: flex;
                        flex-direction: column;
                        gap: 100px;
                        .text {
                            width: 100%;
                            display: flex;
                            flex-direction: column;
                            gap: 30px;
                            justify-content: center;
                            align-items: center;
                            h3 {
                                text-align: center;
                                font-size: 21px;
                                font-weight: 500;
                                color: #fff;
                            }
                            p {
                                text-align: center;
                                font-size: 14px;
                                font-weight: 400;
                                line-height: 24px;
                                width: 200px;
                                color: #fff;
                            }
                        }
                        .button {
                            text-align: center;
                            .continue-button {
                                display: inline-block;
                                text-align: center;
                                color: #000;
                                background-color: #fff;
                                padding: 8px 0;
                                font-size: 16px;
                                border: 1px solid transparent;
                                border-radius: 5px;
                                width: 90%;
                                transition: 0.5s;
                                margin: 0 auto;
                                &:hover {
                                    opacity: 0.8;
                                }
                            }
                        }
                    }
                }
                &:hover .fav-hover {
                    right: 0;
                }
            }
            .cart {
                .cart-hover {
                    display: none;
                    position: absolute;
                    width: 25vw;
                    min-width: 350px;
                    height: 110vh;
                    background-color: #000;
                    z-index: -1;
                    overflow: auto;
                    padding: 10px;
                    padding-top: 120px;
                    top: 0;
                    right: -100vw;
                    transition: 0.3s;
                    .content {
                        width: 100%;
                        text-align: center;
                        display: flex;
                        flex-direction: column;
                        gap: 40px;
                        justify-content: center;
                        align-items: center;
                        h3 {
                            text-align: center;
                            font-size: 21px;
                            font-weight: 500;
                            color: #fff;
                        }
                        .range {
                            text-align: center;
                            display: flex;
                            flex-direction: column;
                            gap: 20px;
                            justify-content: center;
                            align-items: center;
                            p {
                                text-align: center;
                                font-size: 14px;
                                font-weight: 300;
                                line-height: 24px;
                                padding-bottom: 20px;
                                color: #fff;
                                width: 200px;
                            }
                            .small-p {
                                font-size: 15px;
                                padding-top: 10px;
                            }
                            input {
                                padding: 20px 0;
                                width: 100%;
                            }
                        }
                    }
                }
                &:hover .cart-hover {
                    right: 0;
                }
            }
            .user {
                .user-hover {
                    display: none;
                    position: absolute;
                    width: 25vw;
                    min-width: 350px;
                    height: 110vh;
                    background-color: #000;
                    z-index: -1;
                    color: #000;
                    top: 0;
                    padding: 10px;
                    padding-top: 120px;
                    right: -100vw;
                    text-align: center;
                    transition: 0.3s;
                    form {
                        .logo {
                            text-align: center;
                            margin-bottom: 40px;
                        }
                        .have {
                            text-align: center;
                            .have-account {
                                display: inline-block;
                                text-align: center;
                                color: #fff;
                                font-size: 14px;
                                font-weight: 300;
                                text-decoration: underline;
                                margin-bottom: 50px;
                            }
                        }
                        .login-options {
                            display: flex;
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            .option {
                                margin-bottom: 25px;
                                text-align: center;
                                color: #000;
                                width: 100%;
                                a {
                                    border-radius: 5px;
                                    background-color: #fff;
                                    color: #000;
                                    transition: 0.5s;
                                    display: inline-block;
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    gap: 5px;
                                    width: 90%;
                                    height: 30px;
                                    margin: 0 auto;
                                    &:hover {
                                        opacity: 0.8;
                                    }
                                    i {
                                        color: #000;
                                    }
                                    span {
                                        color: #000;
                                        font-size: 16px;
                                        font-weight: 400;
                                    }
                                }
                            }
                        }
                        .or {
                            text-align: center;
                            color: #fff;
                            font-size: 20px;
                            margin-bottom: 20px;
                        }
                        .input-text {
                            margin: 10px auto;
                            padding: 10px;
                            font-size: 16px;
                            width: 90%;
                            text-align: center;
                            border: 0;
                            border-bottom: 1px solid #fff;
                            border-radius: 5px;
                            color: #fff;
                            background-color: transparent;
                        }
                        .forget {
                            text-align: center;
                            margin-top: 30px;
                            .forget-pass {
                                color: #fff;
                                font-size: 14px;
                                font-weight: 300;
                                text-decoration: underline;
                            }
                        }
                        .login-button {
                            text-align: center;
                            color: #000;
                            background-color: #fff;
                            width: 90%;
                            height: 30px;
                            font-size: 16px;
                            font-weight: 400;
                            border: 0;
                            margin: 40px auto;
                            margin-top: 20px;
                            border-radius: 5px;
                            cursor: pointer;
                            transition: 0.5s;
                            &:hover {
                                opacity: 0.7;
                            }
                        }
                        .dont {
                            text-align: center;
                        }
                        .have-acc {
                            color: #fff;
                            font-size: 16px;
                            font-weight: 300;
                            text-decoration: underline;
                        }
                        .par {
                            color: #fff;
                            font-size: 16px;
                            font-weight: 300;
                            margin: 20px 0;
                        }
                        .creat {
                            text-align: center;
                            color: #000;
                            background-color: #fff;
                            width: 90%;
                            height: 30px;
                            font-size: 16px;
                            font-weight: 400;
                            border: 0;
                            border-radius: 5px;
                            margin: 10px auto;
                            display: inline-block;
                            line-height: 35px;
                            transition: 0.5s;
                            &:hover {
                                opacity: 0.7;
                            }
                        }
                        .social {
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            gap: 10px;
                            margin-top: 10px;
                            a {
                                svg {
                                    width: 20px;
                                }
                            }
                        }
                    }
                }
                &:hover .user-hover {
                    right: 0;
                }
            }
        }
        .cancel {
            position: absolute;
            right: 20px;
            top: 50px;
            cursor: pointer;
            transition: .5s;
            img {
                cursor: pointer;
            }
            &:hover {
                border-radius: 5px;
                background-color: #2e2f31;
            }
        }
    }
    &.inside-pages {
        background-color: #ffffff;
        @media only screen and (max-width: 768px) {
            height: 70px;
        }
        .container {
            width: 100%;
            padding: 1%;
            padding-bottom: 0;
            padding-top: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            @media only screen and (max-width: 768px) {
                padding: 1% 5%;
            }
            .logo {
                padding: 0;
                @media only screen and (max-width: 768px) {
                    width: 92%;
                    text-align: center;
                }
                img {
                    width: 230px;
                    max-width: 100%;
                    @media only screen and (max-width: 768px) {
                        width: 200px;
                        transform: translate(-7%, 0);
                    }
                }
            }
            .menu {
                .hamburger {
                    display: flex;
                    gap: 15px;
                    align-items: center;
                    .icon {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        color: #000;
                        cursor: pointer;
                        svg {
                            color: #000000;
                        }
                    }
                    .menu-word {
                        @media only screen and (max-width: 991px) {
                            display: none;
                        }
                    }
                    span.space {
                        color: #000000;
                        display: none;
                    }
                    .hover {
                        position: absolute;
                        left: -100vw;
                        top: 100px;
                        padding: 10px;
                        background-color: #ffffff;
                        color: #000000;
                        width: 22vw;
                        width: 350px;
                        min-width: 350px;
                        height: calc(100dvh - 100px);
                        padding-left: 4.5vh;
                        z-index: 1;
                        padding-top: 30px;
                        padding-right: 2vh;
                        transition: 0.5s all ease-in-out;
                        @media only screen and (max-width: 768px) {
                            margin-top: 0;
                            /* padding-top: 0; */
                            top: 70px;
                            height: calc(100dvh - 70px);
    
                        }
                        .cancel {
                            position: absolute;
                            right: 10px;
                            top: 10px;
                            cursor: pointer;
                            &:hover {
                                background-color: #eee;
                            }
                            @media only screen and (max-width: 768px) {
                                top: 20px;
                            }
                            svg {
                                cursor: pointer;
                                width: 25px;
                                color: #000000;
                            }
                        }
                        .categories {
                            padding: 2vh 0;
                            text-align: left;
                            gap: 20px;
                            .main-li {
                                .main-a {
                                    color: #000000;
                                    font-size: 14px;
                                    font-weight: 400;
                                    letter-spacing: 2px;
                                    display: inline-block;
                                    width: 100%;
                                    position: relative;
                                    padding: 1.5vh 0;
                                    &::after {
                                        content: "";
                                        background-color: transparent;
                                        width: 60px;
                                        position: absolute;
                                        right: -3vw;
                                        top: 0;
                                        height: 100%;
                                    }
                                }
                                .sub-menu {
                                    position: absolute;
                                    top: -100px;
                                    width: calc(100vw - 22vw);
                                    right: calc(-100vw + 22vw);
                                    width: calc(100vw - 350px);
                                    right: calc(-100vw + 350px);
                                    height: 100vh;
                                    padding: 5%;
                                    background-color: #ffffff;
                                    overflow: auto;
                                    transition-delay: 2s;
                                    display: none;
                                    @media only screen and (max-width: 991px) {
                                        opacity: 0;
                                        display: none;
                                    }
                                    h2 {
                                        font-size: 20px;
                                        font-weight: 600;
                                        margin-top: 20px;
                                        color: #000000;
                                        letter-spacing: 3px;
                                    }
                                    .types {
                                        padding: 10px 0;
                                        margin-top: 35px;
                                        display: flex;
                                        gap: 20px;
                                        ul {
                                            width: max-content;
                                            flex-basis: 20%;
                                            h3 {
                                                color: #000000;
                                                font-size: 16px;
                                                font-weight: 500;
                                                padding-bottom: 15px;
                                            }
                                            li a {
                                                color: #333333;
                                                font-size: 14px;
                                                font-weight: 400;
                                                padding: 10px 0;
                                                display: inline-block;
                                                width: 100%;
                                                transition: .3s;
                                                &:hover {
                                                    color: #000000;
                                                }
                                            }
                                        }
                                    }
                                    .collections {
                                        h2 {
                                            padding: 20px 0;
                                            margin-top: 1%;
                                            font-size: 20px;
                                            font-weight: 600;
                                        }
                                        .parent {
                                            display: flex;
                                            justify-content: flex-start;
                                            margin-top: 20px;
                                            overflow-x: auto;
                                            .child {
                                                display: flex;
                                                flex-direction: column;
                                                justify-content: space-between;
                                                align-items: center;
                                                background-color: #ffffff;
                                                gap: 5px;
                                                padding: 10px;
                                                transition: .5s;
                                                text-align: center;
                                                overflow: hidden;
                                                img {
                                                    width: 200px;
                                                    max-width: 100%;
                                                }
                                                h4 {
                                                    color: #000000;
                                                    padding: 0;
                                                    font-weight: 500;
                                                    font-size: 14px;
                                                    line-height: 26px;
                                                }
                                            }
                                        }
                                    }
                                }
                                &:hover .sub-menu {
                                    display: block;
                                }
                                a:hover .sub-menu {
                                    display: block;
                                }
                            }
                        }
                        .services {
                            padding: 1vh 0;
                            padding-right: 0;
                            text-align: left;
                            gap: 20px;
                            border-top: 1px solid #8e8e8e;
                            border-bottom: 1px solid #8e8e8e;
                            .child {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                padding: 1vh 0;
                                a {
                                    color: #000000;
                                    font-size: 12px;
                                    font-weight: 400;
                                    letter-spacing: 2px;
                                }
                            }
                        }
                        .contact {
                            padding: 1vh 0;
                            padding-right: 0px;
                            text-align: left;
                            gap: 10px;
                            @media only screen and (max-width: 991px) {
                                display: none;
                            }
                            .child {
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                gap: 5px;
                                padding: 0.5vh 0;
                                .country {
                                   display: flex;
                                   align-items: center;
                                   gap: 5px;
                                    span {
                                       color: #000000;
                                       font-size: 12px;
                                       font-weight: 400;
                                       letter-spacing: 2px;
                                   }
                                   svg {
                                       color: #000000;
                                   }
                                }
                            }
                        }
                        .bottom {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            gap: 30px;
                            padding-right: 0;
                            svg {
                                color: #000000;
                            }
                        }
                        .following {
                            padding: 2vh 0;
                            text-align: left;
                            display: flex;
                            align-items: center;
                            gap: 10px;
                            a svg {
                                width: 15px;
                                color: #000000;
                            }
                        }
                        .language {
                            padding: 2vh 0;
                            margin-left: .1vw;
                            text-align: left;
                            gap: 20px;
                            a {
                                padding: 0 .2vw;
                                color: #333333;
                                font-size: 14px;
                                font-weight: 300;
                                transition: .3s;
                                &:hover {
                                    color: #000000;
                                }
                                &.active {
                                    color: #000000;
                                }
                            }
                        }
                        .mobile-icons {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            width: 30%;
                            gap: 10px;
                            display: none;
                            @media only screen and (max-width: 768px) {
                                display: flex;
                            }
                            svg {
                                width: 20px;
                                color: #000000;
                            }
                        }
                        &.open {
                            left: 0;
                        }
                    }
                    .world {
                        display: none;
                        .world-hover {
                            position: absolute;
                            left: 0;
                            top: 0;
                            padding: 10px;
                            background-color: #ffffff;
                            width: 22vw;
                            min-width: 350px;
                            height: 110vh;
                            padding-left: 45px;
                            padding-right: 45px;
                            z-index: 1;
                            padding-top: 30px;
                            margin-top: 100px;
                            display: none;
                            overflow: auto;
                            @media only screen and (max-width: 768px) {
                                margin-top: 70px;
                            }
                            .languages {
                                padding: 2vh 0;
                                li {
                                    margin: 1vh 0;
                                    a {
                                        display: flex;
                                        justify-content: space-between;
                                        align-items: center;
                                        span {
                                            font-size: 16px;
                                            font-weight: 300;
                                            letter-spacing: 0;
                                            color: #000000;
                                            transition: .3s;
                                        }
                                        img {
                                            width: 28px;
                                            max-width: 100%;
                                        }
                                    }
                                }
                            }
                            .shipping {
                                padding: 3vh 0;
                                h3 {
                                    font-size: 18px;
                                    font-weight: 300;
                                    letter-spacing: 2px;
                                    padding-bottom: 2vh;
                                    color: #000000;
                                }
                                li {
                                    margin: 1vh 0;
                                    a {
                                        font-size: 16px;
                                        font-weight: 300;
                                        letter-spacing: 0;
                                        color: #000000;
                                        transition: .3s;
                                    }
                                }
                            }
                            .location {
                                padding: 3vh 0;
                                h3 {
                                    font-size: 18px;
                                    font-weight: 300;
                                    letter-spacing: 2px;
                                    padding-bottom: 10px;
                                    color: #000000;
                                }
                                li {
                                    margin: 1vh 0;
                                    a {
                                        font-size: 16px;
                                        font-weight: 300;
                                        letter-spacing: 0;
                                        color: #000000;
                                        transition: .3s;
                                    }
                                }
                            }
                            .alert {
                                padding-top: 30px;
                                p {
                                    color: #000000;
                                    font-size: 20px;
                                    font-weight: 300;
                                }
                            }
                        }
                        .cancel {
                            position: absolute;
                            right: 10px;
                            top: 10px;
                            cursor: pointer;
                            padding: 2px;
                        }
                        .cancel img {
                            cursor: pointer;
                            width: 30px;
                        }
                    }
                }
            }
            .icons {
                display: flex;
                align-items: center;
                gap: 20px;
                @media only screen and (max-width: 768px) {
                    display: none;
                }
                .svg {
                    a {
                        color: #000000;
                        cursor: pointer;
                        padding: 20px 0;
                    }
                    svg {
                        width: 20px;
                        color: #000000;
                    }
                }
                .search {
                    .svg {
                        color: #000000;
                        cursor: pointer;
                        padding: 20px 0;
                    }
                    .search-page {
                        position: fixed;
                        top: -100vh;
                        left: 0;
                        right: 0;
                        width: 100vw;
                        height: 100vh;
                        background-color: #f2f2f2;
                        overflow-y: auto;
                        padding-top: 50px;
                        width: 100%;
                        height: 100%;
                        background-color: rgba(0,0,0,0.8);
                        z-index: 1000;
                        opacity: 0;
                        transition: all 0.5s ease-in-out;
                        .container {
                            display: flex;
                            flex-direction: column;
                            justify-content: flex-start;
                            align-items: flex-start;
                            position: relative;
                            height: 100%;
                            padding: 5px 3%;
                            @media only screen and (max-width: 768px) {
                                padding: 5px 5%;
                            }
                            .close {
                                position: absolute;
                                right: 10px;
                                top: -20px;
                                cursor: pointer;
                                svg {
                                    color: #ffffff;
                                }
                            }
                            .search-bar {
                                width: 100%;
                                display: flex;
                                justify-content: center;
                                gap: 0;
                                margin: 0 auto;
                                margin-bottom: 20px;
                                input {
                                    width: 100%;
                                    border: 0;
                                    background-color: #f8f8f8;
                                    color: #000;
                                    border-radius: 10px 0 0 10px;
                                    padding: 20px;
                                    font-size: 18px;
                                    transition: 0.5s;
                                    &:focus {
                                        outline: 0;
                                        box-shadow: -10px 10px 20px -20px rgba(0, 0, 0, 0.8);
                                    }
                                }
                                button {
                                    padding: 20px;
                                    background-color: #f8f8f8;
                                    border: 0;
                                    border-radius: 0 10px 10px 0;
                                    cursor: pointer;
                                    &:hover {
                                        background-color: #e0e0e0;
                                    }
                                }
                            }
                            .most-searched {
                                display: flex;
                                flex-direction: column;
                                border-radius: 10px;
                                width: 100%;
                                gap: 20px;
                                padding: 40px 2%;
                                background-color: #f2f2f2;
                                &.none-mobile {
                                    gap: 50px;
                                }
                                &.border-bottom {
                                    border-bottom: 1px solid #ececec;
                                }
                                h3 {
                                    font-size: 26px;
                                    font-weight: 600;
                                    color: #000;
                                }
                                i {
                                    color: #000;
                                }
                            }
                        }
                    }
                }
                .favourite {
                    .fav-hover {
                        display: none;
                        position: absolute;
                        width: 25vw;
                        min-width: 350px;
                        height: 110vh;
                        background-color: #ffffff;
                        z-index: -1;
                        top: 0;
                        padding: 10px;
                        padding-top: 120px;
                        right: -100vw;
                        transition: 0.3s;
                        z-index: 1000;
                        .content {
                            display: flex;
                            flex-direction: column;
                            gap: 100px;
                            .text {
                                width: 100%;
                                display: flex;
                                flex-direction: column;
                                gap: 30px;
                                justify-content: center;
                                align-items: center;
                                h3 {
                                    text-align: center;
                                    font-size: 21px;
                                    font-weight: 500;
                                    color: #000000;
                                }
                                p {
                                    text-align: center;
                                    font-size: 14px;
                                    font-weight: 400;
                                    line-height: 24px;
                                    width: 200px;
                                    color: #000000;
                                }
                            }
                            .button {
                                text-align: center;
                                .continue-button {
                                    display: inline-block;
                                    text-align: center;
                                    color: #ffffff;
                                    background-color: #000000;
                                    padding: 8px 0;
                                    font-size: 16px;
                                    border: 1px solid transparent;
                                    border-radius: 5px;
                                    width: 90%;
                                    transition: 0.5s;
                                    margin: 0 auto;
                                    &:hover {
                                        opacity: 0.8;
                                    }
                                }
                            }
                        }
                    }
                    &:hover .fav-hover {
                        right: 0;
                    }
                }
                .cart {
                    .cart-hover {
                        display: none;
                        position: absolute;
                        width: 25vw;
                        min-width: 350px;
                        height: 110vh;
                        background-color: #ffffff;
                        z-index: -1;
                        overflow: auto;
                        padding: 10px;
                        padding-top: 120px;
                        top: 0;
                        right: -100vw;
                        transition: 0.3s;
                        z-index: 1000;
                        .content {
                            width: 100%;
                            text-align: center;
                            display: flex;
                            flex-direction: column;
                            gap: 40px;
                            justify-content: center;
                            align-items: center;
                            h3 {
                                text-align: center;
                                font-size: 21px;
                                font-weight: 500;
                                color: #000000;
                            }
                            .range {
                                text-align: center;
                                display: flex;
                                flex-direction: column;
                                gap: 20px;
                                justify-content: center;
                                align-items: center;
                                p {
                                    text-align: center;
                                    font-size: 14px;
                                    font-weight: 300;
                                    line-height: 24px;
                                    padding-bottom: 20px;
                                    color: #000000;
                                    width: 200px;
                                }
                                .small-p {
                                    font-size: 15px;
                                    padding-top: 10px;
                                }
                                input {
                                    padding: 20px 0;
                                    width: 100%;
                                }
                            }
                        }
                    }
                    &:hover .cart-hover {
                        right: 0;
                    }
                }
                .user {
                    .user-hover {
                        display: none;
                        position: absolute;
                        width: 25vw;
                        min-width: 350px;
                        height: 110vh;
                        background-color: #ffffff;
                        z-index: -1;
                        color: #000000;
                        top: 0;
                        padding: 10px;
                        padding-top: 120px;
                        right: -100vw;
                        text-align: center;
                        transition: 0.3s;
                        z-index: 1000;
                        form {
                            .logo {
                                text-align: center;
                                margin-bottom: 40px;
                            }
                            .have {
                                text-align: center;
                                .have-account {
                                    display: inline-block;
                                    text-align: center;
                                    color: #000000;
                                    font-size: 14px;
                                    font-weight: 300;
                                    text-decoration: underline;
                                    margin-bottom: 50px;
                                }
                            }
                            .login-options {
                                display: flex;
                                flex-direction: column;
                                align-items: center;
                                justify-content: center;
                                .option {
                                    margin-bottom: 25px;
                                    text-align: center;
                                    color: #000000;
                                    width: 100%;
                                    a {
                                        border-radius: 5px;
                                        background-color: #000000;
                                        color: #ffffff;
                                        transition: 0.5s;
                                        display: inline-block;
                                        display: flex;
                                        align-items: center;
                                        justify-content: center;
                                        gap: 5px;
                                        width: 90%;
                                        height: 30px;
                                        margin: 0 auto;
                                        &:hover {
                                            opacity: 0.8;
                                        }
                                        i {
                                            color: #000000;
                                        }
                                        span {
                                            color: #ffffff;
                                            font-size: 16px;
                                            font-weight: 400;
                                        }
                                    }
                                }
                            }
                            .or {
                                text-align: center;
                                color: #000000;
                                font-size: 20px;
                                margin-bottom: 20px;
                            }
                            .input-text {
                                margin: 10px auto;
                                padding: 10px;
                                font-size: 16px;
                                width: 90%;
                                text-align: center;
                                border: 0;
                                border-bottom: 1px solid #000000;
                                border-radius: 5px;
                                color: #000000;
                                background-color: transparent;
                            }
                            .forget {
                                text-align: center;
                                margin-top: 30px;
                                .forget-pass {
                                    color: #000000;
                                    font-size: 14px;
                                    font-weight: 300;
                                    text-decoration: underline;
                                }
                            }
                            .login-button {
                                text-align: center;
                                color: #ffffff;
                                background-color: #000000;
                                width: 90%;
                                height: 30px;
                                font-size: 16px;
                                font-weight: 400;
                                border: 0;
                                margin: 40px auto;
                                margin-top: 20px;
                                border-radius: 5px;
                                cursor: pointer;
                                transition: 0.5s;
                                &:hover {
                                    opacity: 0.7;
                                }
                            }
                            .dont {
                                text-align: center;
                            }
                            .have-acc {
                                color: #000000;
                                font-size: 16px;
                                font-weight: 300;
                                text-decoration: underline;
                            }
                            .par {
                                color: #000000;
                                font-size: 16px;
                                font-weight: 300;
                                margin: 20px 0;
                            }
                            .creat {
                                text-align: center;
                                color: #ffffff;
                                background-color: #000000;
                                width: 90%;
                                height: 30px;
                                font-size: 16px;
                                font-weight: 400;
                                border: 0;
                                border-radius: 5px;
                                margin: 10px auto;
                                display: inline-block;
                                line-height: 35px;
                                transition: 0.5s;
                                &:hover {
                                    opacity: 0.7;
                                }
                            }
                            .social {
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                gap: 10px;
                                margin-top: 10px;
                                a {
                                    color: #000000;
                                    svg {
                                        width: 20px;
                                        color: #000000;
                                    }
                                }
                            }
                        }
                    }
                    &:hover .user-hover {
                        right: 0;
                    }
                }
            }
            .cancel {
                position: absolute;
                right: 20px;
                top: 50px;
                cursor: pointer;
                transition: .5s;
                img {
                    cursor: pointer;
                }
                &:hover {
                    border-radius: 5px;
                    background-color: #2e2f31;
                }
            }
        }
    }
}

/* Footer */
.footer {
    padding-top: 50px;
    background-color: #000;
    color: #fff;
    .container {
        width: 100%;
        padding-bottom: 0;
        .all {
            display: flex;
            width: 100%;
            @media only screen and (max-width: 1024px) {
                flex-direction: column;
            }
            .half {
                flex-basis: 50%;
                padding: 20px 0;
                @media only screen and (max-width: 1024px) {
                    flex-basis: 100%;
                }
                &.subscribe{
                    .text {
                        display: flex;
                        flex-direction: column;
                        gap: 10px;
                        h2 {
                            font-size: 20px;
                            font-weight: 400;
                        }
                        p {
                            font-size: 14px;
                            font-weight: 300;
                        }
                    }
                    .sign-in {
                        padding: 40px 0;
                        .sign-box {
                            form {
                                .hidden-sign-box {
                                   display: none;
                                    &.active {
                                        display: block;
                                    }
                                }
                                .title {
                                   padding-bottom: 10px;
                                }
                                .title h4 {
                                   font-size: 14px;
                                   font-weight: 300;
                                }
                                .gender {
                                    display: flex;
                                    gap: 10px;
                                    .radio {
                                        input {
                                            cursor: pointer;
                                        }
                                        &:hover input[type="radio"]:checked+label {
                                            background-color: #fff;
                                            color: #000;
                                        }
                                    }
                                }
                                input[type="radio"] {
                                    display: none;
                                }
                                label {
                                    display: inline-block;
                                    background-color: transparent;
                                    padding: 15px 18px;
                                    font-family: Arial;
                                    font-size: 16px;
                                    cursor: pointer;
                                    border: 1px solid #fff;
                                }
                                input[type="radio"]:checked+label {
                                    background-color: #fff;
                                    color: #000;
                                }
                                .fill-inputs {
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    padding: 20px 0;
                                    width: 100%;
                                    input {
                                        width: 100%;
                                        max-width: 50%;
                                        min-width: 350px;
                                        padding: 20px;
                                        background-color: transparent;
                                        color: #fff;
                                        outline: 0;
                                        border: 0;
                                        border-bottom: 1px solid #fff;
                                    }
                                }
                                .paragraph {
                                    padding: 10px 0;
                                    display: flex;
                                    flex-direction: column;
                                    gap: 10px;
                                    p {
                                        font-size: 14px;
                                        font-weight: 400;
                                        max-width: 350px;
                                    }
                                }
                                .submit {
                                    padding: 20px 0;
                                    button {
                                        display: inline-block;
                                        cursor: pointer;
                                        background-color: #fff;
                                        color: #000;
                                        border:1px solid transparent;
                                        padding: 15px 40px;
                                        font-size: 16px;
                                        font-weight: 500;
                                        transition: 0.5s;
                                        &:hover {
                                            background-color: #000;
                                            color: #fff;
                                            border: 1px solid #fff;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .quarter {
                flex-basis: 25%;
                padding: 0 20px;
                border-left: 1px solid #fff;
                @media only screen and (max-width: 1024px) {
                    flex-basis: 100%;
                    border-left: 1px solid transparent;
                    padding-inline: 0;
                }
                ul {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                    padding: 30px 0;
                    @media only screen and (max-width: 1024px) {
                        .lis {
                            display: none;
                            flex-direction: column;
                            gap: 10px;
                            &.active {
                                display: flex;
                            }
                        }
                    }
                    h2 {
                        font-size: 18px;
                        font-weight: 400;
                        padding-bottom: 10px;
                        text-transform: uppercase;
                    }
                    li {
                        a {
                            font-size: 14px;
                            font-weight: 400;
                            color: #fff;
                            padding-bottom: 5px;
                            border-bottom: 1px solid #000;
                            transition: 0.5;
                            &:hover {
                                padding-bottom: 0;
                                border-bottom: 1px solid #fff;
                            }
                        }
                    }
                    .open {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                        width: 100%;
                        @media only screen and (max-width: 1024px) {
                            cursor: pointer;
                        }
                        button.arrow-open {
                            background-color: transparent;
                            border: 0;
                            cursor: pointer;
                            display: none;
                            justify-content: center;
                            align-items: center;
                            @media only screen and (max-width: 1024px) {
                                display: flex;
                            }
                            svg {
                                width: 40px;
                                background-color: transparent;
                                transition: 0.5s;
                                color: #fff;
                                &.rotated {
                                    transform: rotate(180deg);
                                }
                            }
                        }
                    }
                    .payment-methods {
                        gap: 20px;
                        flex-direction: row;
                        display: flex;
                        align-items: center;
                        svg {
                            width: 40px;
                        }
                    }
                    .follow-us {
                        gap: 10px;
                        flex-direction: row;
                        display: flex;
                        align-items: center;
                        li {
                            a {
                                &:hover {
                                    padding-bottom: 5px;
                                    border-bottom: 1px solid transparent;
                                }
                                svg {
                                    width: 20px;
                                }
                            }
                        }
                    }
                }
            }
        }
        .rights {
            padding-top: 40px;
            .text {
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                gap: 50px;
                flex-wrap: wrap;
                padding: 40px 0;
                @media only screen and (max-width: 1024px) {
                    text-align: center;
                }
            }
            p {
                font-size: 16px;
                font-weight: 400;
                line-height: 1.6;
                min-width: 300px;
                color: #fff;
            }
        }
    }
    &.inside-pages {
        padding-top: 50px;
        background-color: #ffffff;
        color: #000000;
        .container {
            width: 100%;
            padding-bottom: 0;
            .all {
                display: flex;
                width: 100%;
                @media only screen and (max-width: 1024px) {
                    flex-direction: column;
                }
                .half {
                    flex-basis: 50%;
                    padding: 20px 0;
                    @media only screen and (max-width: 1024px) {
                        flex-basis: 100%;
                    }
                    &.subscribe{
                        .text {
                            display: flex;
                            flex-direction: column;
                            gap: 10px;
                            h2 {
                                font-size: 20px;
                                font-weight: 400;
                            }
                            p {
                                font-size: 14px;
                                font-weight: 300;
                            }
                        }
                        .sign-in {
                            padding: 40px 0;
                            .sign-box {
                                form {
                                    .hidden-sign-box {
                                       display: none;
                                        &.active {
                                            display: block;
                                        }
                                    }
                                    .title {
                                       padding-bottom: 10px;
                                    }
                                    .title h4 {
                                       font-size: 14px;
                                       font-weight: 300;
                                    }
                                    .gender {
                                        display: flex;
                                        gap: 10px;
                                        .radio {
                                            input {
                                                cursor: pointer;
                                            }
                                            &:hover input[type="radio"]:checked+label {
                                                background-color: #000000;
                                                color: #ffffff;
                                            }
                                        }
                                    }
                                    input[type="radio"] {
                                        display: none;
                                    }
                                    label {
                                        display: inline-block;
                                        background-color: transparent;
                                        padding: 15px 18px;
                                        font-family: Arial;
                                        font-size: 16px;
                                        cursor: pointer;
                                        border: 1px solid #000000;
                                    }
                                    input[type="radio"]:checked+label {
                                        background-color: #000000;
                                        color: #ffffff;
                                    }
                                    .fill-inputs {
                                        display: flex;
                                        flex-direction: column;
                                        gap: 10px;
                                        padding: 20px 0;
                                        width: 100%;
                                        input {
                                            width: 100%;
                                            max-width: 50%;
                                            min-width: 350px;
                                            padding: 20px;
                                            background-color: transparent;
                                            color: #000000;
                                            outline: 0;
                                            border: 0;
                                            border-bottom: 1px solid #000000;
                                        }
                                    }
                                    .paragraph {
                                        padding: 10px 0;
                                        display: flex;
                                        flex-direction: column;
                                        gap: 10px;
                                        p {
                                            font-size: 14px;
                                            font-weight: 400;
                                            max-width: 350px;
                                        }
                                    }
                                    .submit {
                                        padding: 20px 0;
                                        button {
                                            display: inline-block;
                                            cursor: pointer;
                                            background-color: #000000;
                                            color: #ffffff;
                                            border:1px solid transparent;
                                            padding: 15px 40px;
                                            font-size: 16px;
                                            font-weight: 500;
                                            transition: 0.5s;
                                            &:hover {
                                                background-color: transparent;
                                                color: #000000;
                                                border: 1px solid #000000;
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                .quarter {
                    flex-basis: 25%;
                    padding: 0 20px;
                    border-left: 1px solid #000000;
                    @media only screen and (max-width: 1024px) {
                        flex-basis: 100%;
                        border-left: 1px solid transparent;
                        padding-inline: 0;
                    }
                    ul {
                        display: flex;
                        flex-direction: column;
                        gap: 10px;
                        padding: 30px 0;
                        @media only screen and (max-width: 1024px) {
                            .lis {
                                display: none;
                                flex-direction: column;
                                gap: 10px;
                                &.active {
                                    display: flex;
                                }
                            }
                        }
                        h2 {
                            font-size: 18px;
                            font-weight: 400;
                            padding-bottom: 10px;
                            text-transform: uppercase;
                        }
                        li {
                            a {
                                font-size: 14px;
                                font-weight: 400;
                                color: #000000;
                                padding-bottom: 5px;
                                border-bottom: 1px solid #ffffff;
                                transition: 0.5;
                                &:hover {
                                    padding-bottom: 0;
                                    border-bottom: 1px solid #000000;
                                }
                            }
                        }
                        .open {
                            display: flex;
                            justify-content: space-between;
                            align-items: center;
                            width: 100%;
                            @media only screen and (max-width: 1024px) {
                                cursor: pointer;
                            }
                            button.arrow-open {
                                background-color: transparent;
                                border: 0;
                                cursor: pointer;
                                display: none;
                                justify-content: center;
                                align-items: center;
                                @media only screen and (max-width: 1024px) {
                                    display: flex;
                                }
                                svg {
                                    width: 40px;
                                    background-color: transparent;
                                    transition: 0.5s;
                                    color: #000000;
                                    &.rotated {
                                        transform: rotate(180deg);
                                    }
                                }
                            }
                        }
                        .payment-methods {
                            gap: 20px;
                            flex-direction: row;
                            display: flex;
                            align-items: center;
                            svg {
                                width: 40px;
                            }
                        }
                        .follow-us {
                            gap: 10px;
                            flex-direction: row;
                            display: flex;
                            align-items: center;
                            li {
                                a {
                                    &:hover {
                                        padding-bottom: 5px;
                                        border-bottom: 1px solid transparent;
                                    }
                                    svg {
                                        width: 20px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
            .rights {
                padding-top: 40px;
                .text {
                    display: flex;
                    justify-content: space-evenly;
                    align-items: center;
                    gap: 50px;
                    flex-wrap: wrap;
                    padding: 40px 0;
                    @media only screen and (max-width: 1024px) {
                        text-align: center;
                    }
                }
                p {
                    font-size: 16px;
                    font-weight: 400;
                    line-height: 1.6;
                    min-width: 300px;
                    color: #000000;
                }
            }
        }
    }
}

/* Products Swiper */
.products-swiper {
    background-color: #f2f2f2;
    .container {
        .products {
            padding: 20px 0;
            .top {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 50px;
                padding-bottom: 20px;
                h2 {
                    font-size: 18px;
                    font-weight: 400;
                }
                .arrows {
                    display: flex;
                    gap: 30px;
                    align-items: center;
                    .arrow {
                        cursor: pointer;
                        padding: 7px;
                        text-align: center;
                        align-content: center;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        border-radius: 50%;
                        line-height: 0;
                        svg {
                            width: 15px;
                            line-height: 0;
                        }
                        &:hover {
                            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
                        }
                    }
                }
            }
            .horizontal-boxes {
                flex-wrap: nowrap;
                display: flex;
                overflow-x: auto;
                scrollbar-width: none;
                background-color: transparent;
                .box {
                    padding: 20px 5px;
                    flex-basis: 25%;
                    min-width: 20%;
                    margin-bottom: 20px;
                    @media (max-width: 1025px) {
                        min-width: 35%;
                    }
                    @media (max-width: 768px) {
                        min-width: 50%;
                    }
                    .product-img {
                        padding: 0;
                    }
                    .details {
                        padding: 0;
                    }
                    .favourite {
                        display: none;
                    }
                }
            }
            .black-button {
                margin: 0 auto;
                a {
                    background-color: transparent;
                    &:hover {
                        background-color: black;
                        color: #fff;
                    }
                }
            }
        }
    }        
}
