body, html {
    height: 100%;
    grid-template-columns: min-content 6fr;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #ffffff;

    scroll-behavior: smooth;
}

* {
    font-family: "Poppins", sans-serif;
    font-style: normal;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

::selection {
    background: rgb(226, 43, 43);
    color: #ffffff;
}

/*////////// Nav Bar //////////*/

#navbar {
    background-color: rgba(151, 202, 197, 0.604);
    backdrop-filter: blur(3px); 
    display: flex;
    justify-content: center;
    height: 65px;
    min-width: 100vw;
    position: fixed;
    z-index: 2;
    top: 0;
}

#navbar a::after {
    content: "";
    width: 0%;
    height: 2px;
    display: block;
    background-color: #ffffff5a;
    margin-top: 1px;
}

#navbar a:hover::after {
    width: 100%;
    transition: all .5s;
}

.nav-link {
    color: #f5f5f5;
    margin: 1.2rem 2rem;
    text-decoration: none;
}

.nav-link:hover {
    color: #ffffff;
}

#store-cart {
    display: flex;
    align-items: center;
    top: auto;
    background: transparent;
    color: #f5f5f5;
    width: 25px;
}

#store-cart .cart-item-count {
    position: absolute;
    background: #d51f1f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    left: 65.2%;
    bottom: 50%;

    font-size: 12px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

#burger-icon {
    display: none;
}

#mobile-navbar {
    display: none;
}

.cart {
    position: fixed;
    overflow-y: auto;
    height: 100vh;
    width: 32vw;
    background-color: #ffffff;
    box-shadow:  -0.5em 0 .4em rgba(0, 0, 0, 0.4);
    right: 0;
    z-index: 3;
    margin-right: -100%;
    transition: 0.5s;
}

.cart.show {
    margin-right: 0px;
}

#exit-cart-btn {
    border: 1px solid #aaaaaa;
    margin: 2rem 0rem 0rem 2rem;
    width: 200px;
    height: 50px;
    color: #2d2d2d;
    cursor: pointer;
    text-transform: uppercase;
    background: none;
    border-radius: 5px;
    left: 0;
}

#clear-cart-btn {
    position: absolute;
    border: none;
    margin: 2rem 2rem 0rem 0rem;
    width: 200px;
    height: 50px;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #2d2d2d;
    color: #FFFFFF;
    border-radius: 5px;
    right: 0;
}

#clear-cart-btn:hover {
    transition: 0.5s;
    background-color:#121212 ;
}

#cart-title {
    text-align: center;
    margin: 2rem 4.5rem 4.5rem 4.5rem;
    font-size: 34px;
}

#cart-title h1 {
    font-family: "Instrument Sans", serif;
    font-weight: bold;
}

#label {
    text-align: center;
    justify-content: center;
    color: #6F6F6F;
}

.cart-detail p {
    font-family: "Instrument Sans", serif;
    font-weight: bold;
}

.cart-content {
    margin: 1rem 5rem;
    display: flex;
    justify-content: center;
    font-weight: bold;
    overflow: hidden;
}

#cart-item-image {
    width: 128px;
    margin-top: -2.7rem;
    margin-left: -12px;
}

.cart-image-container {
    overflow: hidden;
    width: 100px;
    height: 108px;
    border-radius: 20px;
}


.cart-detail {
    padding-left: 2rem;
    font-size: 16px;
}

.cart-quantity {
    display: flex;
    justify-content: center;
    margin-right: 100px;
    padding-top: 5px;
}


.quantity-number {
    border-top: 2px solid black;
    border-bottom: 2px solid black;

    width: 38px;
    text-align: center;
    font-weight: 400;
    font-size: 14;
    height: 22px;
}

.cart-quantity p {
    font-weight: 500;
}

.decrement {
    border-right: none;
    border-radius: 8px 0px  0px 8px;
}

.cart-quantity button{
    border: 2px solid black;
    background: none;
    padding: 0px 5px;
    font-size: 16px;
    height: 22px;
    cursor: pointer;
}

.increment {
    border-left: none;
    border-radius: 0px 8px  8px 0px;
}

#cart-item-remove {
    border: none;
    background: none;
    color: #6F6F6F;
    cursor: pointer;
}

#cart-item-remove p {
    font-weight: 500;
    font-size: 16px;
}

#seperation-line {
    display: flex;

    width: 300px;
    height: 3px;
    background-color: #2D2D2D;
    margin: 2rem auto;
    align-items: center;
    justify-content: center;
}


.subtotal, .discount, .shipping, .grand-total {
    display: flex;
    margin: 0.5rem auto;
}

#cart-section {
    margin: 0 auto;
    width: 300px;
}

.cart-total {
    position: relative;
    margin: 0 auto;

    float: right;
}

.subtotal {
    font-weight: bold;
}

.discount, .shipping {
   color: #6F6F6F;
   font-weight: 500;
}

.grand-total {
    margin: 1.5rem 0rem;
    font-weight: bold;
}

#subtotal-title {
    margin-right: 4rem;
}

#discount-title {
    margin-right: 1.2rem;
}

#shipping-title {
    margin-right: 4rem;
}

#grand-total-title {
    margin-right: 2.5rem;
}

.checkout-btn {
    justify-content: center;
    margin: 0.5rem auto;
    width: 300px;
    height: 45px;
    border: none;
    background-color: #2d2d2d;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
    border-radius: 8px;
}

.checkout-btn:hover {
    transition: 0.5s;
    background-color:#121212 ;
}

/*////////// Home //////////*/

.main-card {
    background-image: url("images/main-image.jpg");
    min-height: 100vh;
    width: 100vw;
   /* background-attachment: fixed; */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;
}

.main-header {
    position: absolute;
    text-align: center;
    font-family: "Homenaje", sans-serif;
    font-weight: 400;
    top: 6rem;
    right: 3rem;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 150px;
    text-shadow: 0px 4px 4px #00000085;
    line-height: 1.1;
}

#beyond, #period {
    font-family: "Homenaje", sans-serif;
    font-weight: 400;
}

#beyond {
    color: #d51f1f;
}

#period {
   color: #97cac5;
}

#landing-page-btn {
    position: absolute;
    bottom: 3.5rem;
    right: 11rem;
    font-size: 34px;
    text-align: center;
    color: #ffffff;
    background-color: #2D2D2D;
    border: none;
    padding: 10px;
    width: 200px;
    height: 55px;
    text-transform: uppercase;
    box-shadow: 0px 0px 8px rgb(0, 0, 0);
    cursor: pointer;
    top: 35.2rem;
    margin: 3.5rem 0rem;

    font-family: "Homenaje", sans-serif;
    font-weight: 400;
}

#landing-page-btn:hover {
    background-color: #1c1b1b;
    transition: ease .5s;
}

.discount-text {
    position: absolute;
    left: 3rem;
    text-align: center;
    font-size: 85px;
    color: #ffffff;
    text-shadow: 0px 4px 4px #00000085;
    font-family: "Homenaje", sans-serif;
    font-weight: 400;
}

#thirty-off {
    position: relative;
    background-color: #d51f1f;
    font-family: "Homenaje", sans-serif;
    padding: 0px 27.5px;
    top: 20rem;
}

#first-order {
    position: relative;
    font-family: "Homenaje", sans-serif;
    background-color: #2D2D2D;
    padding: 5px;
    top: 21rem;
}


/*////////// Store //////////*/

#Store {
   padding-top: 1px;
}

#featured-heading {
    padding: 2rem 5rem 0rem 0rem;
    text-align: center;
    margin: 10rem 50rem 0rem 0rem;
    font-family: "Homenaje", sans-serif;
    font-weight: 400;
    font-size: 34px;
    color: #939393;
}

.store-carousel-container {
    overflow: hidden;
    width: 65rem;
    margin: 0 auto;
    margin-bottom: 10rem;
}

#carousel-store-item-slider {
    display: flex;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 26rem;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#carousel-store-item-slider::-webkit-scrollbar {
    display: none; /* Chrome */
}

#store-items {
    display: flex;
}

.slide {
    padding: 1.5rem;
    
}

.prev {
    transform: rotate(180deg);
    left: 0;
    display: none;
    z-index: 3;
}

.next {
    right: 0;
    
}

#store-prev-mobile, #store-next-mobile {
    display: none;
}

.btn-background {
    background-color: #ffffff;
    border-radius: 25px;
    margin-right: 16px;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
    transition: transform 2.0s;
}

.btn-background:hover {
    transform: scale(1.1);
    transition: 2.0s;
}

.prev, .next {
    background: none;
    border: none;
    position: sticky;
    margin-bottom: 8rem;
    height: 50px;
    z-index: 1;
    margin: 12rem 0rem;
}

.store-item-card {
    position: relative;
    background-color: #f5f5f5;
    width: 15rem;
    height: 23rem;
    border-radius: 25px;
    transition: transform 1.0s;
    box-shadow: 0px 2px 4px rgba(0,0,0,0.2);
    overflow: hidden;
}

.store-item-card:hover {
    transform: scale(1.05);
    transition: 1.0s;
}

.store-item-card img {
    display: block;
    width: 100%;
    min-height: 100%;
    cursor: pointer;
}

.store-item-info-container {
    position: absolute;
    padding: 15px;
    color: #ffffff;
    background-color: #000000c1;

    transition: 0.5s;
    bottom: -150px;
    width: 100%;
    padding-bottom: 15px;
}

.store-item-info-container h1 {
    cursor: pointer;
    width: 100%;
    font-size: 24px;
}

.store-item-info-container h2 {
    font-size: 12px;
}

#store-item-price-mobile {
    display: none;
}

.store-item-info-container h3 {
    font-size: 24px;
    padding-top: 5px;
    padding-bottom: 5px;
}

.store-item-info-container h1, h2, h3 {
    font-family: "Homenaje", sans-serif;
    font-weight: 400;
}


.store-item-card:hover .store-item-info-container {
   bottom: 0;
}

.addToCartBtn {
    border-radius: 10px;
    height: 30px;
    border: solid 2px #000000;
    background-color: #f5f5f5;
    margin-top: 5px;
    width: 100%;
    margin: auto;
    font-size: 14px;
}


.addToCartBtn:hover {
    transition: 0.5s;
    background-color: #000000;
    color: #f5f5f5;
    cursor: pointer;
}

.addToCartBtn-mobile {
    display: none;
}


/*////////// About //////////*/

.custom-shape-divider-top {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(149% + 1.3px);
    height: 180px;
}

.custom-shape-divider-top .shape-fill {
    fill: #000000;
}

.about-container {
    width: 100%;
    height: 65rem;
    background-color: #000000; /* nice purple: #8400ff*/
}

#about-heading {
    color: #ffffff;
    padding: 3rem;
    text-transform: uppercase;
    font-size: 80px;
    font-family: "Homenaje", sans-serif;
    font-weight: 400;
    width: 400px;
}

#about-us-main-para {
    color: #ffffff;
    width: 50rem;
    margin: 3rem;
    line-height: 2.0;
    font-size: 24px;
}

#main-about-img {
    width: 600px;
    float: right;
    margin: -54rem 3rem;
}

#main-about-mobile-img {
    display: none;
}

.custom-shape-divider-bottom {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(149% + 1.3px);
    height: 180px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #000000;
}


/*////////// Reviews //////////*/


.reviews-section {
    display: inline;
    text-align: center;
    margin: 3rem;
    margin-top: 5rem;
    max-width: 98rem;
    font-weight: 600;
}

.reviews-section h1 {
    font-size: 40px;
    font-weight: 500;
    padding-top: 7rem;
}

.reviews-section p {
    font-size: 25px;
    text-align: center;
}

#review-carousel-background {
    position: relative;
    background-color: #fafafa;
    width: 100vw;
}


.review-carousel-container {
    overflow-x: hidden;
    margin: 0 auto;
}

#carousel-review-item-slider {
    display: flex;
    position: relative;
    overflow-x: scroll;
    overflow-y: hidden;
    height: 400px;
    width: 1444px;
    padding: 50px;
    margin: 0 auto;

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

#carousel-review-item-slider::-webkit-scrollbar {
    display: none; /* Chrome */
}

.control {
    position: absolute;
    top: 45%;
    width: 50px;
    height: 50px;
    z-index: 2;
    background: none;
    border: none;
}

.reviews-prev {
    left: 1%;
}

.reviews-prev-mobile {
    left: 1%;
    display: none;
    z-index: 1;
}

.reviews-next {
    right: 1%;
}

.reviews-next-mobile {
    right: 1%;
    display: none;
    z-index: 1;
}

.reviews-prev, .reviews-next, .reviews-prev-mobile, .reviews-next-mobile {
    background-size: 22px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.hovered-triangle {
    position: absolute;
    opacity: 0;
}

.hovered-triangle:hover {
    opacity: 1;
    transition: 0.5s;
}

.review-slides {
    margin: 0 5rem;
}

.review-card {
    border-radius: 15px;
    height: 100%;
    width: 18rem;
    background-color: #ffffff; /* rgba(151, 202, 197, 0.514); */
    box-shadow: 0px 0px 8px rgb(0, 0, 0);
    padding: 20px;
    position: relative;
    transition: transform 1.0s;
}

.review-card p {
    font-size: 16px;
    color: #0c0c0c;
}

#user-profile-picture {
    text-align: center;
}

#user-profile-picture img {
    width: 70px;
    margin-top: -5rem; /* maybe have this, maybe not */
    border-radius: 100px;
    box-shadow: 0px 0px 8px rgb(0, 0, 0);
}

#user-name h2 {
    text-align: center;
    margin: 5px;
    font-weight: 500;
}

#review-stars {
    text-align: center;
    margin: 7px auto 15px auto;
}

#review-stars img {
    width: 20px;
}

#review-text {
    text-align: center;
}


/*////////// Footer //////////*/

.footer-text {
    color: #ffffff;
}

.footer-container {
    background-color: #ffffff;
    padding: 4rem 0 2rem 0;
}

.footer {
    width: 80%;
    height: 40vh;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer-heading {
    display: flex;
    flex-direction: column;
    margin-right: 4rem;
}

.footer-heading h2 {
    margin-bottom: 2rem;
    color: black;
    font-weight: 500;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
}

.footer-heading a {
    color: #000000b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-heading a:hover {
    color: #d51f1f;
    transition: 0.3s ease-out;
}

.footer-email-form h2{
    margin-bottom: 2rem;
    color: black;
    font-weight: 500;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
}


#footer-email {
    width: 250px;
    height: 40px;
    border-radius: 4px;
    outline: none;
    border: none;
    padding: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
   background-color: #f5f5f5;
}

#footer-email::placeholder {
    color: #b1b1b1;
}

#footer-email-btn {
    width: 100px;
    height: 40px;
    background-color: #222121;
    border-radius: 4px;
    outline: none;
    border: none;
    color: white;
    font-size: 1rem;
    margin-left: 0.5rem;
}

#footer-email-btn:hover {
    cursor: pointer;
    background-color: #000000;
    transition: all 0.4s ease-out;
}

/* HD Desktop */
@media only screen and (min-width : 1920px) {
    
    .main-header {
        font-size: 200px;
        top: 14vh;
    }

    #landing-page-btn {
        font-size: 50px;
        width: 300px;
        height: 90px;
        top: 80vh;  
        right: 21vh; 
    }

    #store-cart .cart-item-count {
        width: 15px;
        height: 15px;
        left: 62.2%;
        bottom: 50%;
    
        font-size: 12px;
    }

    .cart {
        width: 34vw;
    }

    /*////////// Nav Bar //////////*/

    #featured-heading {
        font-size: 34px;
        margin: 10rem 50rem 0rem 0rem;
    }
}

/* 4K Desktop/TV */

@media only screen and (min-width : 3840px) {

    /*////////// Nav Bar //////////*/

    #navbar {
        height: 200px;
    }

    .nav-link {
        margin: 4.4rem 4rem;
        text-decoration: none; 
        font-size: 40px;
    }
    
    .main-header {
        font-size: 420px;
        top: 14vh;
    }

    #landing-page-btn {
        font-size: 100px;
        width: 600px;
        height: 180px;
        top: 80vh;  
        right: 16.2vh; 
    }

    .discount-text {
        left: 3rem;
        font-size: 200px;
    }
    
    #thirty-off {
        padding: 0px 58.5px;
        top: 64rem;
    }
    
    #first-order {
        padding: 5px;
        top: 65rem;
    }


    /*////////// Nav Bar //////////*/

    #featured-heading {
        font-size: 44px;
        margin: 10rem 49rem 0rem 0rem;
    }

}

@media screen and (max-width: 1150px) {
    .footer {
        height: 50vh;
    }
    .footer-email-form {
        margin-top: 4rem;
    }
}


/* Tablet */
@media screen and (max-width: 820px) {

    /*////////// Nav Bar //////////*/

    #navbar {
        height: 100px;
    }

    .nav-link {
        margin: 2.2rem 2rem;
        text-decoration: none; 
        font-size: 20px;
    }

    #store-cart .cart-item-count {
        width: 18px;
        height: 18px;
        left:82%;
        font-size: 16px;
    }
    
    
    .cart {
        position: fixed;
        overflow-y: auto;
        height: 100vh;
        width: 68.5vw;
        background-color: #ffffff;
        /*top: 100px;*/
        /* box-shadow: 0px 0px 10px rgb(0, 0, 0); */
        box-shadow:  -0.5em 0 .4em rgba(0, 0, 0, 0.4);
        right: 0;
        z-index: 3;
        margin-right: -100%;
        transition: 0.5s;
    }


    /*////////// Home //////////*/

    .main-card {
        background-image: url(images/main-image-mobile.jpg);
        min-height: 100vh;
    }

    .main-header {
       font-size: 125px;
        position: relative;
        left: 0;
        padding-top: 35vh;
    }
    
    .discount-text {
        top: 110px;
        left: 15px;
        font-size: 64px;
    }

    #thirty-off {
        padding: 0px 22px;
        top: 0rem;
    }

    #first-order {
        top: 0.5rem;
    }

    #landing-page-btn {
        font-size: 25px;
        width: 150px;
        height: 50px;
        top: 83vh;
        left: 40%;
        padding: 0px;
        
    }

    /*////////// Store //////////*/

    #featured-heading {
        text-align: center;
        float: left;
        margin: 10rem 0rem 0rem 5.5rem;
        font-size: 45px;
    }

    #carousel-store-item-slider {
       height: 30rem;
    }

    .store-carousel-container {
        width: 85vw;
        margin-bottom: 12rem;
    }

    .mobile-arrow {
        width: 45px;
        position: absolute;
        bottom: 10px;
        right: 8px;
        opacity: 1;
        z-index: 1;
        transition: 0.5s;

        border: none;
        background-color: #000000c1;
        border-radius: 8px;
    }

    .mobile-arrow img {
        transition: 0.5s;
    }

    .mobile-arrow.moveArrow {
        bottom: 105px;
    }
    
    .mobile-arrow.moveArrow img {
        rotate: 180deg;
        transition: 0.5s;
    }

    .store-item-info-container {
        height: 6rem;
    }
    
    .store-item-info-container h1 {
        font-size: 32px;
    }
    
    .store-item-info-container h2 {
        font-size: 20px;
        
    }
    
    .store-item-info-container h3 {
        font-size: 16px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #store-item-price {
        display: none;
    }

    .store-item-info-container.visibility {
        bottom: 0;
    }

    .addToCartBtn {
        display: none;
    }

    #store-item-price-mobile {
        display: block;
        margin: 5px;
        font-size: 28px
    }

    .addToCartBtn-mobile {
        display: block;
        border-radius: 10px;
        height: 40px;
        border: solid 2px #000000;
        background-color: #f5f5f5;
        color: #2d2d2d;
        margin-top: 5px;
        width: 100%;
        margin: 0 auto;
        font-size: 18px;
        transition: 0.5s;
    }


    /*////////// About //////////*/

    .about-container {
        height: 86rem;
    }

    #about-heading {
        text-align: center;
        margin: auto;
        padding-bottom: 5rem;
    }

    #about-us-main-para {
        width: 40rem;
        margin: 0 auto;
        font-size: 20px;
        text-align: center;
    }

    #main-about-img {
        display: none;
    }

    #main-about-mobile-img {
        display: block;
        width: 100vw;
    }


    /*////////// Reviews //////////*/
    #carousel-review-item-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        width: 80%;
        margin: 0 auto;
    }

    .review-slides {
        flex: 0 0 100%; /* Adjust to show 2 cards per slide */
        scroll-snap-align: center;
    }

    .review-card {
        max-width: 100%; /* Adjust to ensure cards fit comfortably */
        margin: 0 auto;
    }


    /*////////// Footer //////////*/

    .footer {
        padding-top: 2rem;
    }
}

/* Mobile */
@media screen and (max-width: 720px) {

    /*////////// Nav Bar //////////*/

    #navbar {
        height: 100px;
    }

    #mobile-navbar {
        display: flex;
        background-color: rgba(151, 202, 197, 0.604);
        backdrop-filter: blur(3px); 
        flex-direction: column;
        width: 37.5vw;
        border-radius: 0px 0px 75px 0px;
        margin-top: 100px;
        margin-left: -200px;
        position: fixed;
        z-index: 1;
        transition: 0.5s;
    }

    #mobile-navbar.show{
        display: flex;
        margin-top: 100px;
        margin-left: 0px;
    
    }

    #burger-icon {
        display: block;
        position: absolute;
        top: 25px;
        left: 25px;
        z-index: 2;
        cursor: pointer;
    }

    .nav-link {
        display: none;
    }

    .nav-link-mobile {
        display: flex;
        padding-left: 30px;
        color: #ffffff;
        line-height: 5;
        text-decoration: none;
    }

    #store-cart {
        display: block;
        position: absolute;
        right: 0;
    }
    
    .cart {
        width: 100vw;
    }

    #exit-cart-btn {
        width: 150px;
    }
    
    #clear-cart-btn {
        width: 150px;
    }
    
    #cart-title {
        font-size: 32px;
    }

    #cart-item-image {
        width: 128px;
        margin-top: -2.7rem;
    }
    
    .cart-image-container {
        position: absolute;
        overflow: hidden;
        width: 100px;
        height: 108px;
        border-radius: 20px;
        left: 6vh;
    }

    .cart-content {
        width: 20rem;
        margin: 0 auto;
        margin-bottom: 1rem;
    }

    .cart-detail {
        margin-left: 7rem;
    }


    /*////////// Home //////////*/

    .main-card {
        background-image: url(images/main-image-mobile.jpg);
        min-height: 100vh;
    }

    .main-header {
        font-size: 75px;
        position: relative;
        left: 0;
        padding-top: 35vh;
    }

    .discount-text {
        top: 110px;
        left: 15px;
        font-size: 32px;
    }

    #thirty-off {
        padding: 0px 13.5px;
        top: 0rem;
    }

    #first-order {
        top: 0.5rem;
    }

    #landing-page-btn {
        font-size: 25px;
        width: 150px;
        height: 50px;
        top: 82vh;
        left: 30%;
        padding: 0px;
        
    }


    /*////////// Store //////////*/

    #featured-heading {
        text-align: center;
        float: left;
        margin: 10rem 0rem 0rem 2.5rem;
        font-size: 34px;
    }

    .store-carousel-container {
        width: 100vw;
        margin-bottom: 12rem;
    }

    .prev, .next {
        display: none;
    }

    #store-prev-mobile, #store-next-mobile {
        display: inline-flex;
        margin-top: 12rem;
        border: none;
        background: none;
        float: right;
        padding-left: 8px;
        padding-right: 1.5rem;
    }    

    #store-prev-mobile {
        transform: rotate(180deg);
    }

    .store-item-card {
        width: 11.25rem;
        height: 17.25rem;
    }
    

    .mobile-arrow {
        width: 30px;
        position: absolute;
        bottom: 9px;
        right: 8px;
        opacity: 1;
        z-index: 1;
        transition: 0.5s;

        border: none;
        background-color: #000000c1;
        border-radius: 8px;
    }

    .mobile-arrow img {
        transition: 0.5s;
    }

    .mobile-arrow.moveArrow {
        bottom: 105px;
    }
    
    .mobile-arrow.moveArrow img {
        rotate: 180deg;
        transition: 0.5s;
    }
    
    .store-item-info-container h1 {
        font-size: 22px;
    }
    
    .store-item-info-container h2 {
        font-size: 14px;
        
    }
    
    .store-item-info-container h3 {
        font-size: 16px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #store-item-price {
        display: none;
    }

    .store-item-info-container.visibility {
        bottom: 0;
    }

    .addToCartBtn {
        display: none;
    }

    #store-item-price-mobile {
        display: block;
        margin: 5px;
    }

    .addToCartBtn-mobile {
        display: block;
        border-radius: 10px;
        height: 30px;
        border: solid 2px #000000;
        background-color: #f5f5f5;
        color: #2d2d2d;
        margin-top: 5px;
        width: 100%;
        margin: 0 auto;
        font-size: 14px;
        transition: 0.5s;
    }


    /*////////// About //////////*/

    .about-container {
        height: 59rem;
    }

    #about-heading {
        text-align: center;
        margin: auto;
        padding-bottom: 5rem;
    }

    #about-us-main-para {
        width: 18.5rem;
        margin: 0 auto;
        font-size: 12px;
        text-align: center;
    }

    #main-about-img {
        display: none;
    }

    #main-about-mobile-img {
        display: block;
        width: 100vw;
  
    }
    
    .custom-shape-divider-top svg, .custom-shape-divider-bottom svg {
        height: 80px;
    }


    /*////////// Reviews //////////*/


    .reviews-section h1 {
        font-size: 35px;
        margin-top: 6rem;
    }

    .reviews-section p {
        font-size: 20px;
    }

    #carousel-review-item-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        width: 100%;  
        margin: 0 auto;
    }

    .review-slides {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .review-card {
        max-width: 260px;
        margin: 0 auto;
    }

    .reviews-prev, .reviews-next {
        display: none;
    }
    
    .reviews-prev-mobile, .reviews-next-mobile {
        display: block;
    }


    /*////////// Footer //////////*/

    .footer-1 {
        display: none;
    }

    .footer-2 {
        margin-bottom: 2rem;
    }

    .footer-3 {
        margin-right: 6rem;
    }

    .footer-email-form {
        margin-top: 2rem;
        padding-bottom: 5rem;
    }

    #footer-email {
        width: 215px;
    }
}

/* Smaller Mobile */
@media screen and (max-width: 400px) {
    #exit-cart-btn {
        width: 125px;
    }
    
    #clear-cart-btn {
        width: 125px;
    }

    #cart-title {
        font-size: 30px;
    }

    #footer-email {
        width: 185px;
        font-size: 13.5px;
    }
}