@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Titillium+Web&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    transition: .2s;
}

:root {
    --white-color: #fff;
    --main-color: #e84242;
    --black-color: #0e0e0e;
}

html::-webkit-scrollbar {
    width: 0.8rem;
}

html::-webkit-scrollbar-track {
    background-color: var(--white-color);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--black-color);
    border-radius: 3rem;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--main-color);
    height: 100vh;
    overflow-x: hidden;
}

.bar {
    display: none;
}

span {
    color: var(--white-color);
}

section {
    padding: 0 8rem;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10rem;
    margin: 2rem 8rem;
    border-radius: 30rem;
    padding: 0 6rem;
    box-shadow: 0 0 0.7rem;
    background-color: var(--white-color);
    position: sticky;
    top: -3rem;
    z-index: 10;
    transform: translateY(-20rem);
    animation: header .7s forwards ease-out;
}

@keyframes header {
    to {
        transform: translateY(0);
    }
}

.searchBar {
    position: absolute;
    top: 11rem;
    right: 10.6rem;
    width: 43rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: scaleY(0);
}

.searchBar.active {
    transform: scaleY(1);
}

#searchInput {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 3rem;
    padding: 1rem 1.5rem;
    outline: none;
    font-size: 1.5rem;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
}

.searchBar i {
    font-size: 2.2rem;
    transform: translateX(-3.5rem);
}

.shopping {
    height: calc(100vh - 12rem);
    width: 35rem;
    position: fixed;
    bottom: 0;
    background-color: var(--white-color);
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
    border-radius: 0.4rem;
    z-index: 11;
    right: -50rem;
}

.shopping.active {
    right: 13rem;
}

.cart {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 1rem 0;
    padding: 1rem 0;
    position: relative;
}

.cart:hover {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
}

.cart img {
    width: 8rem;
    position: relative;
    border-radius: 50%;
}

.cart p {
    padding-right: 10rem;
}

.cartPrice {
    font-size: 1.5rem !important;
    font-weight: 100 !important;
}

.cart p span {
    font-weight: bold;
    font-size: 2rem;
    color: black;
}

.cartBtn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    background: transparent;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    padding: 0 0.7rem;
    color: var(--black-color);
}

.cartBtn:hover {
    background-color: #d0d0d0;
}

.cart-check-btn {
    color: var(--white-color);
    background-color: var(--black-color);
    font-size: 1.5rem;
    width: 100%;
    border-radius: none;
    border: none;
    padding: 2rem 0;
    cursor: pointer;
}

.cart-check-btn:hover {
    background-color: #343434;
}

.navbar a {
    color: var(--black-color);
    text-decoration: none;
    margin: 1rem 1.5rem;
    border-bottom: 0.15rem solid transparent;
    font-size: 1.5rem;
}

.header .navbar .active,
.navbar a:hover {
    border-color: var(--main-color);
    padding-bottom: 0.4rem;
}

.buttons button {
    font-size: 2.4rem;
    margin-left: 2rem;
    border: none;
    cursor: pointer;
    background-color: transparent;
    transition: 0s;
    color: var(--black-color);
}

.buttons button:hover {
    color: #727272;
}

.header a img {
    width: 10rem;
}

.home {
    background: url(https://images.unsplash.com/photo-1566843972142-a7fcb70de55a?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D) no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    margin-top: -14rem;
    display: flex;
    align-items: center;
    position: relative;
}

.text {
    max-width: 43rem;
    margin-top: 3rem;
}

.text h1 {
    color: var(--white-color);
    font-size: 6rem;
    line-height: 8rem;
    user-select: none;
    transform: translateY(60rem);
    opacity: 0;
    animation: text1 .6s forwards ease-out;
}

@keyframes text1 {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes text2 {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.text p {
    color: #ccc;
    font-weight: 400;
    font-size: 1.5rem;
    transform: translateY(60rem);
    opacity: 0;
    animation: text2 .8s forwards ease-out;
}



.btn {
    color: var(--white-color);
    background-color: var(--black-color);
    padding: 2.3rem 4rem;
    border-radius: 4rem;
    text-decoration: none;
    display: inline-block;
    margin-top: 2.5rem;
    font-size: 1.5rem;
    box-shadow: 0 0 0.2rem var(--black-color);
}

.btn:hover {
    background-color: #343434;
}

h1 {
    font-size: 4rem;
    margin-top: 6rem;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    margin-top: 2.5rem;
    column-gap: 1.8rem;
    row-gap: 2.3rem;
}

.box-container .box {
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 3rem;
    padding: 2rem 4rem;
}

.box-container .box img {
    width: 30rem;
    object-fit: cover;
    width: 100%;
    border-radius: 2rem;
}

.box-dsc {
    text-align: center;
}

.box .title {
    font-size: 1.5rem;
}

.box .dsc {
    font-weight: bold;
    font-size: 3rem;
}

.price span {
    color: var(--black-color);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.price {
    font-size: 2.5rem;
}

.box-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    margin-top: 2.5rem;
    column-gap: 1.8rem;
    row-gap: 2.3rem;
}

.box1 {
    background: url(https://images.unsplash.com/photo-1550583724-b2692b85b150?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 3rem;
    padding: 0 4rem;
    position: relative;
    color: var(--white-color);
    height: 48rem;
}

.box1 a {
    text-decoration: none;
    color: var(--main-color);
    padding: 2.3rem;
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box1 a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}

.box1 a i {
    font-size: 1.5rem;
}

.box1 .first .title,
.box1 .second .title {
    font-size: 1.5rem;
}

.box1 .dsc {
    font-weight: bold;
    font-size: 3rem;
}

.box2 {
    background: url(https://images.unsplash.com/photo-1623428187969-5da2dcea5ebf?q=80&w=1964&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 3rem;
    padding: 0 4rem;
    position: relative;
    color: var(--white-color);
    height: 48rem;
}

.box2 a {
    text-decoration: none;
    color: var(--main-color);
    padding: 2.3rem;
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box2 a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}

.box2 a i {
    font-size: 1.5rem;
}

.box2 .first .title,
.box2 .second .title {
    font-size: 1.5rem;
}

.box2 .dsc {
    font-weight: bold;
    font-size: 3rem;
}

.box3 {
    background: url(https://images.unsplash.com/photo-1530554764233-e79e16c91d08?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    border-radius: 3rem;
    padding: 0 4rem;
    position: relative;
    color: var(--white-color);
    height: 48rem;
}

.box3 a {
    text-decoration: none;
    color: var(--main-color);
    padding: 2.3rem;
    border: 0.2rem solid var(--main-color);
    border-radius: 50%;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box3 a:hover {
    background-color: var(--white-color);
    color: var(--black-color);
    border-color: var(--black-color);
}

.box3 a i {
    font-size: 1.5rem;
}

.box3 .first .title,
.box3 .second .title {
    font-size: 1.5rem;
}

.box3 .dsc {
    font-weight: bold;
    font-size: 3rem;
}

.first {
    position: absolute;
    top: 2rem;
}

.second {
    position: absolute;
    bottom: 2rem;
}

.div-about {
    display: flex;
    column-gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.about .div-about .image {
    flex: 1 1 50rem;
}

.div-about .content {
    flex: 1 1 50rem;
}

.about .div-about .image img {
    width: 100%;
    border-radius: 1rem;
}

.div-about .content h3 {
    font-size: 3.2rem;
    color: var(--white-color);
}

.div-about .content p {
    color: #ccc;
    font-size: 1.5rem;
    line-height: 3rem;
    margin-top: 0.7rem;
}

.review-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.review-box {
    background-color: var(--white-color);
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quote img {
    width: 30rem;
}

.review-box p {
    font-size: 1.5rem;
    text-align: center;
}

.person img {
    border-radius: 50%;
    width: 9rem;
    padding: 1.5rem 0;
}

.name {
    font-size: 2rem;
    color: var(--main-color);
    font-weight: bold;
}

.stars i {
    color: gold;
    font-size: 1.5rem;
}

.stars {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.contact-container {
    display: flex;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    background-color: var(--black-color);
}

.contact-container iframe {
    border: none;
    flex: 1 1 50rem;
}

.contact-container form {
    flex: 1 1 50rem;
    height: 100%;
    color: var(--white-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
}

.contact-container form h3 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

.input-box {
    font-size: 2rem;
    padding: 0 3rem;
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    width: 100%;
    height: 6rem;
    position: relative;
}

.input-box i {
    position: absolute;
    padding: 0 2rem;
}

.input-box input {
    background: transparent;
    border: 0.1rem solid rgba(255, 255, 255, 0.4);
    width: 100%;
    height: 100%;
    padding: 0 5rem;
    font-size: 1.5rem;
    color: var(--white-color);
    outline: none;
}

.contact-container form input[type="submit"] {
    color: var(--main-color);
    background-color: var(--white-color);
    padding: 2rem 3rem;
    border: none;
    border-radius: 3rem;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
}

.contact-container form input[type="submit"]:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.blog-box {
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
}

.blog-box .blog-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    border-top-left-radius: 3rem;
    border-top-right-radius: 3rem;
}

.blog-box:hover .blog-image img {
    transform: scale(1.2);
}

.blog-content {
    padding: 1rem 1.5rem;
    background-color: var(--white-color);
    z-index: 5;
    height: 100%;
    width: 100%;
}

.blog-content h2 {
    font-weight: 400;
    font-size: 3rem;
    user-select: none;
    text-transform: capitalize;
}

.blog-content h3 {
    font-weight: 400;
    font-size: 2rem;
    margin: 1rem 0;
}

.blog-content p {
    font-size: 1.5rem;
    color: #343434;
}

.footer {
    background-color: var(--black-color);
    margin-top: 6rem;
    padding: 3rem 0;
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1.5rem;
}

.footer .search input {
    height: 5rem;
    width: 25rem;
    border-radius: 3rem;
    border: none;
    outline: none;
    padding: 0 2rem;
    font-size: 1.7rem;
}

.search-button {
    background-color: var(--main-color);
    color: var(--white-color);
    border: none;
    height: 4rem;
    width: 10rem;
    border-radius: 3rem;
    font-size: 1.8rem;
    cursor: pointer;
}

.search-button:hover {
    background-color: var(--white-color);
    color: var(--main-color);
}

.social {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
}

.social a {
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.1rem;
    border-radius: 50%;
    border: 0.1rem solid rgba(255, 255, 255, 0.4);
    padding: 1.5rem;
    text-decoration: none;
    margin: 0 0.8rem;
    width: 5.2rem;
}

.social a:hover {
    background-color: var(--main-color);
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1.5rem;
}

.links a {
    text-decoration: none;
    padding: 0.5rem 2rem;
    background-color: var(--main-color);
    color: var(--white-color);
    border: 0.1rem solid rgba(255, 255, 255, 0.4);
    font-size: 2rem;
}

.links .active2,
.links a:hover {
    background: transparent;
    opacity: 0.8;
}

.footer h3 {
    font-size: 2rem;
    color: var(--white-color);
    text-transform: capitalize;
    text-align: center;
    font-weight: 400;
    margin-top: 6rem;
}

.footer h3 span {
    color: var(--main-color);
}

.dark-mode-btn {
    background: transparent;
    border: none;
}

.dark-mode {
    background-color: var(--black-color);
}

.dark-mode h1 {
    color: var(--main-color);
}

.dark-mode .dark-mode-btn:hover {
    color: #ccc;
}

.dark-mode .footer::before {
    display: none;
}

.dark-mode .footer {
    border-top: 0.1rem solid var(--white-color);
}

.dark-mode .box1,
.dark-mode .box2,
.dark-mode .box3 {
    border: 0.1rem solid var(--white-color);
}

.dark-mode .div-about .content .btn {
    background-color: var(--white-color);
    color: var(--black-color);
}

.dark-mode .div-about .content .btn:hover {
    background-color: #ccc;
}

.dark-mode .contact-container form {
    border: 0.1rem solid var(--white-color);
}

@media (max-width: 1094px) and (min-width: 898px) {
    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 7rem;
    }

    .header {
        height: 8rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 10rem);
    }
}

@media (max-width: 897px) and (min-width: 819px) {
    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 7rem;
    }

    .header {
        height: 8rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 10rem);
    }

    section {
        padding: 0 4rem;
    }

    .header {
        margin: 2rem 4rem;
    }

    .links a {
        padding: 0.5rem 1.5rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 818px) and (min-width: 775px) {
    .navbar {
        display: flex;
        flex-direction: column;
        background-color: var(--white-color);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 7rem;
        right: -25rem;
        width: 15rem;
        height: calc(100vh - 12rem);
        text-align: left;
    }

    .navbar.active {
        right: 5rem;
    }

    .navbar a {
        padding: 0.4rem;
    }

    .bar {
        display: inline-block;
    }

    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 7rem;
    }

    .header {
        height: 7rem;
        margin: 2rem 4rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
        width: 30rem;
    }

    .shopping.active {
        right: 8rem;
    }

    .cart img {
        width: 6rem;
    }

    .cart p {
        padding-right: 8rem;
    }

    .cart p span {
        font-size: 1.5rem;
    }

    .cartPrice {
        font-size: 1rem;
    }

    .cartBtn {
        font-size: 1.4rem;
    }

    section {
        padding: 0 4rem;
    }

    .text {
        text-align: center;
    }

    .home {
        text-align: center;
    }

    .searchBar {
        top: 8rem;
    }

    .box-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .box-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .review-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .links a {
        padding: 0.5rem 1.5rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 774px) and (min-width: 638px) {
    .navbar {
        display: flex;
        flex-direction: column;
        background-color: var(--white-color);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 7rem;
        right: -25rem;
        width: 15rem;
        height: calc(100vh - 12rem);
        text-align: left;
    }

    .cartBtn {
        font-size: 1.4rem;
    }

    .blog-content h2 {
        font-size: 2.5rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 1rem;
    }

    .box1 {
        height: 38rem;
    }

    .box2 {
        height: 38rem;
    }

    .box3 {
        height: 38rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
        width: 30rem;
    }

    .shopping.active {
        right: 8rem;
    }

    .cart img {
        width: 6rem;
    }

    .cart p {
        padding-right: 8rem;
    }

    .cart p span {
        font-size: 1.5rem;
    }

    .cartPrice {
        font-size: 1rem !important;
    }

    .navbar.active {
        right: 5rem;
    }

    .navbar a {
        padding: 0.4rem;
    }

    .bar {
        display: inline-block;
    }

    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 7rem;
    }

    .header {
        height: 7rem;
        margin: 2rem 4rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
    }

    section {
        padding: 0 4rem;
    }

    .text {
        text-align: center;
    }

    .home {
        text-align: center;
    }

    .searchBar {
        top: 8rem;
    }

    .box-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .box-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .review-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .box-container .box img {
        width: 20rem;
    }

    .links a {
        padding: 0.5rem 1rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 637px) and (min-width: 605px) {
    .navbar {
        display: flex;
        flex-direction: column;
        background-color: var(--white-color);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 7rem;
        right: -25rem;
        width: 15rem;
        height: calc(100vh - 12rem);
        text-align: left;
    }

    .cartBtn {
        font-size: 1.4rem;
    }

    .blog-content h2 {
        font-size: 2.5rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 1rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
        width: 30rem;
    }

    .shopping.active {
        right: 8rem;
    }

    .cart img {
        width: 6rem;
    }

    .cart p {
        padding-right: 8rem;
    }

    .cart p span {
        font-size: 1.5rem;
    }

    .cartPrice {
        font-size: 1rem !important;
    }

    .navbar.active {
        right: 5rem;
    }

    .navbar a {
        padding: 0.4rem;
    }

    .bar {
        display: inline-block;
    }

    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 7rem;
    }

    .header {
        height: 7rem;
        margin: 2rem 4rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
    }

    section {
        padding: 0 4rem;
    }

    .text {
        text-align: center;
    }

    .home {
        text-align: center;
    }

    .searchBar {
        top: 8rem;
        width: 35rem;
    }

    .box-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .box-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .review-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    }

    .box1 .title {
        font-size: 1.2rem;
    }

    .box1 .dsc {
        font-size: 1.7rem;
    }

    .box2 .title {
        font-size: 1.2rem;
    }

    .box2 .dsc {
        font-size: 1.7rem;
    }

    .box3 .title {
        font-size: 1.2rem;
    }

    .box3 .dsc {
        font-size: 1.7rem;
    }

    .box-container .box img {
        width: 20rem;
    }

    .links a {
        padding: 0.5rem 0.7rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 604px) and (min-width: 499px) {
    .navbar {
        display: flex;
        flex-direction: column;
        background-color: var(--white-color);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 7rem;
        right: -25rem;
        width: 15rem;
        height: calc(100vh - 12rem);
        text-align: left;
    }

    .box-container {
        column-gap: 1.4rem;
        row-gap: 1.9rem;    
    }

    .box-wrapper {
        column-gap: 1.4rem;
        row-gap: 1.9rem;
    }

    .blog-content h2 {
        font-size: 2rem;
    }

    .cartBtn {
        font-size: 1.4rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 1rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
        width: 30rem;
    }

    .shopping.active {
        right: 8rem;
    }

    .cart img {
        width: 6rem;
    }

    .cart p {
        padding-right: 8rem;
    }

    .cart p span {
        font-size: 1.5rem;
    }

    .cartPrice {
        font-size: 1rem !important;
    }

    .navbar.active {
        right: 5rem;
    }

    .navbar a {
        padding: 0.4rem;
    }

    .bar {
        display: inline-block;
    }

    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 7rem;
    }

    .header {
        height: 7rem;
        margin: 2rem 4rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
    }

    section {
        padding: 0 3rem;
    }

    .text {
        text-align: center;
    }

    .home {
        text-align: center;
    }

    .searchBar {
        top: 8rem;
        width: 25rem;
    }

    .box-container {
        grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    }

    .box-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    }

    .review-container {
        grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
        gap: 1rem;
    }

    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
        gap: 1rem;
    }

    .box .dsc {
        font-size: 1.5rem;
    }

    .box .btn {
        padding: 1.7rem 3.4rem;
        font-size: 1.2rem;
    }

    .price {
        font-size: 1rem;
    }

    .box1 {
        height: 30rem;
    }

    .box2 {
        height: 30rem;
    }

    .box3 {
        height: 30rem;
    }

    .box1 a {
        padding: 1.4rem;
    }

    .box2 a {
        padding: 1.4rem;
    }

    .box3 a {
        padding: 1.4rem;
    }

    .box1 .title {
        font-size: 1.2rem;
    }

    .box1 .dsc {
        font-size: 1.7rem;
    }

    .box1 a i {
        font-size: 1rem;
    }

    .box2 .title {
        font-size: 1.2rem;
    }

    .box2 .dsc {
        font-size: 1.7rem;
    }

    .box2 a i {
        font-size: 1rem;
    }

    .box3 .title {
        font-size: 1.2rem;
    }

    .box3 .dsc {
        font-size: 1.7rem;
    }

    .box3 a i {
        font-size: 1rem;
    }

    .box-container .box img {
        width: 15rem;
    }

    .links a {
        padding: 0.5rem 0.7rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 500px) and (min-width: 420px) {
    .navbar {
        display: flex;
        flex-direction: column;
        background-color: var(--white-color);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 7rem;
        right: -25rem;
        width: 15rem;
        height: calc(100vh - 12rem);
        text-align: left;
    }

    .box-container {
        column-gap: 1.1rem;
        row-gap: 1.6rem;    
    }

    .box-wrapper {
        column-gap: 1.1rem;
        row-gap: 1.6rem;    
    }

    .blog-content .btn {
        font-size: 1.2rem;
        padding: 2rem 3.7rem;
    }

    .cartBtn {
        font-size: 1.4rem;
    }

    .blog-content h2 {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 1rem;
    }

    .quote img {
        width: 15rem;
    }

    .review-box p {
        font-size: 1rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
        width: 25rem;
    }

    .shopping.active {
        right: 0;
    }

    .cart img {
        width: 4rem;
    }

    .cart p {
        padding-right: 6rem;
    }

    .cart p span {
        font-size: 1.5rem;
    }

    .cartPrice {
        font-size: 1rem !important;
    }

    .navbar.active {
        right: 5rem;
    }

    .navbar a {
        padding: 0.4rem;
    }

    .bar {
        display: inline-block;
    }

    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 7rem;
    }

    .header {
        height: 7rem;
        margin: 2rem 4rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
    }

    section {
        padding: 0 2rem;
    }

    .text {
        text-align: center;
    }

    .home {
        text-align: center;
    }

    .searchBar {
        top: 8rem;
        width: 27rem;
        height: 3rem;
        right: 5rem;
    }

    #searchInput {
        font-size: 1.2rem;
    }

    .searchBar i {
        font-size: 1.8rem;
    }

    .box-container {
        grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    }

    .box-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
    }

    .review-container {
        grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
        gap: 1rem;
    }

    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
        gap: 1rem;
    }

    .box-container .box {
        padding: 1rem 0;
    }

    .box .dsc {
        font-size: 1.5rem;
    }

    .box .box-dsc .btn {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }

    .price {
        font-size: 1rem;
    }

    .price span {
        font-size: 1.2rem;
    }

    .box-container .box .title {
        font-size: 1.5rem;
    }

    .box1 {
        height: 28rem;
        padding: 0 2rem;
    }

    .box2 {
        height: 28rem;
        padding: 0 2rem;
    }

    .box3 {
        height: 28rem;
        padding: 0 2rem;
    }

    .box1 a {
        padding: 1rem;
    }

    .box1 a i {
        font-size: 1rem;
    }

    .box2 a {
        padding: 1rem;
    }

    .box2 a i {
        font-size: 1rem;
    }

    .box3 a {
        padding: 1rem;
    }

    .box3 a i {
        font-size: 1rem;
    }

    .box1 .first .title {
        font-size: 1rem;
    }

    .box1 .second .title {
        font-size: 1rem;
    }

    .box1 .dsc {
        font-size: 1.7rem;
    }

    .box2 .first .title {
        font-size: 1rem;
    }

    .box2 .second .title {
        font-size: 1rem;
    }

    .box2 .dsc {
        font-size: 1.7rem;
    }

    .box3 .first .title {
        font-size: 1rem;
    }

    .box3 .second .title {
        font-size: 1rem;
    }

    .box3 .dsc {
        font-size: 1.7rem;
    }

    .box-container .box img {
        width: 15rem;
    }

    .links a {
        padding: 0.5rem 0.7rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 419px) and (min-width: 376px) {
    .navbar {
        display: flex;
        flex-direction: column;
        background-color: var(--white-color);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 7rem;
        right: -25rem;
        width: 15rem;
        height: calc(100vh - 12rem);
        text-align: left;
    }

    .box-container {
        column-gap: 1.1rem;
        row-gap: 1.6rem;    
    }

    .box-wrapper {
        column-gap: 1.1rem;
        row-gap: 1.6rem;    
    }

    .cartBtn {
        font-size: 1.4rem;
    }

    .blog-content .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .blog-content h2 {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 1rem;
    }

    .quote img {
        width: 15rem;
    }

    .review-box p {
        font-size: 1rem;
    }

    .name {
        font-size: 1.5rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
        width: 25rem;
    }

    .box-container .box .title {
        font-size: 1.5rem;
    }

    .shopping.active {
        right: 0;
    }

    .cart img {
        width: 6rem;
    }

    .cart p {
        padding-right: 8rem;
    }

    .cart p span {
        font-size: 1.5rem;
    }

    .cartPrice {
        font-size: 1rem !important;
    }

    .navbar.active {
        right: 5rem;
    }

    .navbar a {
        padding: 0.4rem;
    }

    .bar {
        display: inline-block;
    }

    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.9rem;
    }

    .header a img {
        width: 5.5rem;
    }

    .header {
        height: 7rem;
        margin: 2rem 4rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
    }

    section {
        padding: 0 1.5rem;
    }

    .text {
        text-align: center;
    }

    .home {
        text-align: center;
    }

    .searchBar {
        top: 8rem;
        width: 27rem;
        height: 3rem;
        right: 3rem;
    }

    #searchInput {
        font-size: 1.2rem;
    }

    .searchBar i {
        font-size: 1.8rem;
    }

    .box-container {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    }

    .box-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    }

    .review-container {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
        gap: 1rem;
    }

    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
        gap: 1rem;
    }

    .box-container .box .box-dsc .dsc {
        font-size: 1.5rem;
    }

    .box .btn {
        padding: 1rem 1.8rem;
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .price span {
        font-size: 1rem;
    }

    .box-container .box .box-dsc .title {
        font-size: 1rem;
    }

    .box1 {
        height: 26rem;
        padding: 0 2rem;
    }

    .box2 {
        height: 26rem;
        padding: 0 2rem;
    }

    .box3 {
        height: 26rem;
        padding: 0 2rem;
    }

    .box1 a {
        padding: 1rem;
    }

    .box1 a i {
        font-size: 1rem;
    }

    .box2 a {
        padding: 1rem;
    }

    .box2 a i {
        font-size: 1rem;
    }

    .box3 a {
        padding: 1rem;
    }

    .box3 a i {
        font-size: 1rem;
    }

    .box1 .first .title {
        font-size: 1rem;
    }

    .box1 .second .title {
        font-size: 1rem;
    }

    .box1 .dsc {
        font-size: 1.7rem;
    }

    .box2 .first .title {
        font-size: 1rem;
    }

    .box2 .second .title {
        font-size: 1rem;
    }

    .box2 .dsc {
        font-size: 1.7rem;
    }

    .box3 .first .title {
        font-size: 1rem;
    }

    .box3 .second .title {
        font-size: 1rem;
    }

    .box3 .dsc {
        font-size: 1.7rem;
    }

    .box-container .box img {
        width: 15rem;
    }

    .links a {
        padding: 0.5rem 0.7rem;
        font-size: 1.1rem;
    }
}

@media (max-width:375px) {
    .navbar {
        display: flex;
        flex-direction: column;
        background-color: var(--white-color);
        box-shadow: 0 0 1rem rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 7rem;
        right: -25rem;
        width: 15rem;
        height: calc(100vh - 12rem);
        text-align: left;
    }

    .box-container {
        column-gap: 1.1rem;
        row-gap: 1.6rem;    
    }

    .box-wrapper {
        column-gap: 1.1rem;
        row-gap: 1.6rem;    
    }

    .cartBtn {
        font-size: 1.4rem;
    }

    .blog-content .btn {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .blog-content h2 {
        font-size: 2rem;
    }

    .blog-content h3 {
        font-size: 1.5rem;
    }

    .blog-content p {
        font-size: 1rem;
    }

    .quote img {
        width: 15rem;
    }

    .review-box p {
        font-size: 1rem;
    }

    .links a {
        padding: 0.5rem 0.7rem;
        font-size: 1.1rem;
    }

    .box-container .box .title {
        font-size: 1.5rem;
    }

    .shopping {
        height: calc(100vh - 9rem);
        width: 25rem;
    }

    .shopping.active {
        right: 0;
    }

    .cart img {
        width: 6rem;
    }

    .cart p {
        padding-right: 8rem;
    }

    .cart p span {
        font-size: 1.5rem;
    }

    .cartPrice {
        font-size: 1rem !important;
    }

    .navbar.active {
        right: 5rem;
    }

    .navbar a {
        padding: 0.4rem;
    }

    .bar {
        display: inline-block;
    }

    .navbar a {
        font-size: 1.3rem;
        margin: 1rem 1rem;
    }

    .buttons button {
        font-size: 1.6rem;
        margin-left: 1.5rem;
    }

    .header a img {
        width: 5.5rem;
    }

    .header {
        height: 5rem;
        margin: 2rem 4rem;
        padding: 0 3rem;
    }

    .shopping {
        height: calc(100vh - 7rem);
    }

    section {
        padding: 0 1rem;
    }

    .text {
        text-align: center;
    }

    .home {
        text-align: center;
    }

    .searchBar {
        top: 6rem;
        width: 23rem;
        height: 3rem;
        right: 1rem;
    }

    #searchInput {
        font-size: 1.2rem;
    }

    .searchBar i {
        font-size: 1.8rem;
    }

    .box-container {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    }

    .box-wrapper {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
    }

    .review-container {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
        gap: 1rem;
    }

    .blog-container {
        grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
        gap: 1rem;
    }

    .box .dsc {
        font-size: 1rem;
    }

    .box .btn {
        padding: 0.6rem 1.6rem;
        font-size: 0.4rem;
    }

    .price {
        font-size: 0.5rem;
    }

    .price span {
        font-size: 0.7rem;
    }

    .box-container .box .title {
        font-size: 0.8rem;
    }

    .box1 {
        height: 24rem;
        padding: 0 1rem;
    }

    .box2 {
        height: 24rem;
        padding: 0 1rem;
    }

    .box3 {
        height: 24rem;
        padding: 0 1rem;
    }

    .box1 a {
        padding: 1rem;
    }

    .box1 a i {
        font-size: 1rem;
    }

    .box2 a {
        padding: 1rem;
    }

    .box2 a i {
        font-size: 1rem;
    }

    .box3 a {
        padding: 1rem;
    }

    .box3 a i {
        font-size: 1rem;
    }

    .box1 .first .title {
        font-size: 1rem;
    }

    .box1 .second .title {
        font-size: 1rem;
    }

    .box1 .dsc {
        font-size: 1.7rem;
    }

    .box2 .first .title {
        font-size: 1rem;
    }

    .box2 .second .title {
        font-size: 1rem;
    }

    .box2 .dsc {
        font-size: 1.7rem;
    }

    .box3 .first .title {
        font-size: 1rem;
    }

    .box3 .second .title {
        font-size: 1rem;
    }

    .box3 .dsc {
        font-size: 1.7rem;
    }

    .box-container .box img {
        width: 8rem;
    }

    .footer h3 {
        font-size: 1.3rem;
    }
}