﻿/* Body */

main {
    margin-top: 40px;
    margin-bottom: 50px;

    /* Same as the width of the sidenav */
    font-size: 28px;
    /* Increased text to enable scrolling */
    padding: 0px 10px;
}

/* Mobile Version warning for popular products */

.popular-products-warning-container-mobile {
    display: none;
}

.shop-con {
    display: flex;
    height: 100%;
    justify-content: space-around;

}

.sidenavcon {
    background-color: #3399cc;
    width: 100%;

    padding-bottom: 20px;
    border-bottom-right-radius: 10px;
}
/* Syling for Side Nav Product filter container */
.sidenav {
    height: auto;
    width: auto;

    overflow-x: hidden;

    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}

.product-view-sku {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

/* Mobile Side nav Display Button */

.mobile-shop-side-nav {
    display: none;
}



.mobile-shop-side-nav button {
    bottom: 7%;
    position: fixed;
    left: 0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 0 8px 8px 0;
    border: none;
    text-align: center;
    background-color: #3399cc;
    margin: 20px auto 0;
    box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
}

    .mobile-shop-side-nav button > i {
        font-size: 38px;
        line-height: 60px;
        transition: all 0.2s ease-in-out;
        transition-delay: 1s;
    }

/* Filter Container */

.filter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

    /* Heading */

    .filter-container h3 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        font-size: 1.5rem;
        /* font-weight: bold; */
        color: #fff;
        margin: 10px;
        padding: 10px;
    }

    /* Filter Sectector (Buttons) */

    .filter-container button {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 1.2rem;
        color: #fff;
        background-color: #3399cc;
        border: none;
        border-radius: 5px;
        padding: 10px;
        
        width: 100%;
        height: auto;
        cursor: pointer;
        text-align: left;
    }

        .filter-container button:hover {
            color: #3399cc;
            background: white;
            border: #3399cc;
            border-style: solid;
            border-width: 1px;
        }

    /* Submenu styling for oils */

    .filter-container .product-filter-oils-container {
        display: none;
        text-align: center;
        line-height: 50px;
    }

        .filter-container .product-filter-oils-container a {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            text-decoration: none;
        }





/* Side Nav Animation */

.scale-in-hor-left {
    -webkit-animation: scale-in-hor-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
    animation: scale-in-hor-left 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;

}

@-webkit-keyframes scale-in-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}

@keyframes scale-in-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}

/* Styling for Search container */

.sidenav .product-search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Filter Container */

.sidenav .filter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    width: 100%;
}

/* Oil Filter Display on / Off*/

.oil-filter-display {
    display: block;
}

/* Search Display Styling */

.sidenav .product-search-container input {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    background-color: #4ea4cf;
    border: none;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    width: 100%;
    height: auto;
    cursor: pointer;
}

    .sidenav .product-search-container input::placeholder {
        color: white;
    }
    /* Styling for Search Button*/
.sidenav .product-search-container button {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background-color: #3399cc;
    border: none;
    border-radius: 5px;
    padding: 12px;
    cursor: pointer;
}

    /* Styling for search button hover */

    .sidenav .product-search-container button:hover {
        color: #3399cc;
        background: white;
        border: #3399cc;
        border-style: solid;
        border-width: 1px;
    }

/* Shop Side Main Container */

.shop-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;

    width: 100%;
}

    /* Shop Heading Container */

    .shop-main-container .shop-heading-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: auto;
        height: auto;
        padding: 0;
        margin: 0;

        
    }


        .shop-main-container .shop-heading-container h1 {
            font-size: 40px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 900;
            color: black;
            margin: 10px;
            padding: 0;
        }



        .shop-main-container .shop-heading-container .shop-head-sub {
            font-size: 18px;
            font-family: "Open Sans", sans-serif;
            font-weight: bold;
        }

        .shop-main-container .shop-heading-container .shop-head-bottom-text {
            font-size: 15px;
            font-family: "Open Sans", sans-serif;
            font-weight: 500;
            color: black;
            margin-bottom: 20px;
        }
        /* Product Section */
        .shop-main-container .shop-side-container {
            display: flex;
            flex-direction: column;
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }

/* Online Shop Top Image Container */

.atlas-shop-online-image-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}

    .atlas-shop-online-image-container img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }



/* Product Grid Container */
.product-grid-container {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    width: 100% !important;
    border-style: solid;
    border-width: 0.2px;
    border-color: rgb(160, 160, 160);
    border-radius: 8px;

}

.product-packetSize{
    font-size: 1rem;
}


/* Product Container */

.product-box {
    width: 300px;
    border-right: 1px solid #ddd;
    box-shadow: 10px 0px 5px 1px #eaeaea;
    border: 1px solid #333;
    border-radius: 10px;
    overflow: hidden;
    margin: 25px;
    border: none;
}

.product-slide-img {
    height: 300px;
    width: auto;
    position: relative;
    border: none;
}

    .product-slide-img img {
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-sizing: border-box;
        border: none;
    }

.product-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(51, 153, 204, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

.product-slide-img:hover .product-overlay {
    visibility: visible;
    animation: fade 0.5s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.product-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    width: auto;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    color: #3399cc;
    padding: 8px;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 20px;
    cursor: pointer;
}

    .product-btn:hover {
        color: white;
        background-color: red;
        transition: all ease 0.3s;
    }

.add-cart {
    display: none;
}
/* Price Request inside Modal */
.product-view-requestPrice {
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}


/* Request Product Button */
.request-product-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: whitesmoke;
    color: #3399cc;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 8px;
    box-shadow: 2px 2px 30px rgb(0 0 0 / 20%);
    text-decoration: none;
    cursor: pointer;
    display: none;
}

/* Hover */

    .request-product-btn:hover {
        color: white;
        background-color: red;
        transition: all ease 0.3s;
    }

.product-detail-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-sizing: border-box;
    height: auto;
    padding-bottom: 40px;
    flex-direction: column;
    text-align: center;
}

.product-type {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

    .product-type a {
        color: black;
        margin: 5px 0px;
        font-size: 16px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        padding-right: 8px;
        text-decoration: none;
    }


/* Product Packet Size */

.product-packetSize {
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

.product-price {
    font-family: 'Open Sans', sans-serif;
    font-weight: 900;
    color: black;
    font-size: 20px;
    text-decoration: none;
}

/* Out of Stock Product */

/* Out of stock banner */

.out-of-stock-banner-container {
    position: absolute;
    z-index: 1;
    background-color: #ff0000;
    top: 180px;
    width: 100%;
    text-align: center;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}

/* Out of stock Image grey overlay */

.out-of-stock-image {
    filter: brightness(50%) grayscale(60%);
}

/* Out of stock name of product */

.product-type .out-of-stock-name-product {
    text-decoration: line-through;
    color: #999;
}

/* Price Out of stock */

.out-of-stock-price {
    text-decoration: line-through;
    color: #999;
}

/* To style the default scroll bar */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #dddddd;
}

/* Scrollbar */

::-webkit-scrollbar-thumb {
    background: #3399cc;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #3399ccbd;
        cursor: pointer;
    }

/* View Product Modal Email Styling */

/* The Modal (background) */
.email-modal {
    display: none;
    position: fixed;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

/* 13' Screen */

@media (max-width: 1300px) and (min-width: 1200px) {
    .email-modal {
        padding-top: 20px;
    }
}




/* View Product Modal Styling */

/* The Modal (background) */
.modal {
    display: none;  
    position: fixed;  
    z-index: 2; 
    padding-top: 20px;  
    padding-bottom: 20px;
    left: 0;
    top: 0;
    width: 100%;  
    height: 100%;  
    overflow: auto;  
    background-color: rgb(0, 0, 0);  
    background-color: rgba(0, 0, 0, 0.4);   
}

/* 13' Screen */

@media (max-width: 1300px) and (min-width: 1200px) {
    .modal {
        padding-top: 20px;
    }
}


/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
}

/* 13' Screen */

@media (max-width: 1300px) and (min-width: 1200px) {
    .modal-content {
        width: 80%;
    }
}



/* The Close Button */
.close {
    color: #3399cc;
    float: right;
    font-size: 35px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

/* Inside Modal Styling */
.product-view-container {
    display: flex;
}



/* product view img container */

.product-view-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    /* Image */

    .product-view-img-container img {
        width: 300px;
        height: auto;
    }



/* Product View Info Container */
.product-view-info-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .product-view-info-container .product-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        margin-bottom: 20px;
    }

        /* Product Distubtor Heading */
        .product-view-info-container .product-info .product-view-brand {
            font-family: 'Open Sans', sans-serif;
            font-weight: 900;
            font-size: 25px;
            margin-bottom: 10px;
            color: #3399cc;
        }



/* Product Name */

        .product-view-info-container .product-info .product-view-name {
            font-family: 'Open Sans', sans-serif;
            font-weight: 900;
            font-size: 20px;
            margin-bottom: 10px;
        }



/* Product Price */

.product-view-info-container .product-info .product-view-price-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .product-view-info-container .product-info .product-view-price-container p {
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        font-size: 20px;
        color: #3399cc;
    }



/* product-view-description */

        .product-view-info-container .product-info .product-view-description {
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
        }



/* In Stock Value */

/* In Stock */
        .product-view-info-container .product-info .product-view-instock {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            color: green;
            font-size: 16px;
            margin-bottom: 10px;
        }



/* Out Of Stock */

        .product-view-info-container .product-info .product-view-outofstock {
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            color: red;
            font-size: 16px;
            margin-bottom: 10px;
        }



/* Product Review Section */

.product-review-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* User Input Container for reviews container */

.user-review-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    /* Heading */

    .user-review-container h3 {
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 30px;
        color: #3399cc;
        margin-bottom: 10px;
    }



/* Star rating Container */

.star-rating-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Star rating Styling */
.wrapper {
    position: relative;
    left: 5%;
    border: none;
    font-size: 14px;
    transform: translateX(-50%);
}



.wrapper input {
    border: 0;
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
    opacity: 0;
}

.wrapper label {
    position: relative;
    float: right;
    color: #c8c8c8;
}

    .wrapper label:before {
        margin: 5px;
        content: "\f005";
        font-family: FontAwesome;
        display: inline-block;
        font-size: 1.5em;
        color: #ccc;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

.wrapper input:checked ~ label:before {
    color: #ffc107;
}

.wrapper label:hover ~ label:before {
    color: #ffdb70;
}

.wrapper label:hover:before {
    color: #ffc107;
}

/* User NAme for Review */

.review-user-name {
    width: 300px;
    height: 30px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: #3399cc;
    border: 1px solid rgb(141, 141, 141);
    border-radius: 4px;
    margin-top: 10px;
    margin-bottom: 10px;
}



/* Text Area For Write A Review  */

.review-textarea {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    width: 100%;
    height: 100px;
    border: 1px solid rgb(141, 141, 141);
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 10px;
}

/* Submit Button for Review */

.submit-review-btn {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    border: none;
    border-radius: 4px;
    background-color: #3399cc;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
}

    .submit-review-btn:hover {
        background-color: #fff;
        color: #3399cc;
        border: solid 2px #3399cc;
    }

/* Processed Review Section */

.processed-review-container span {
    font-size: 20px;
}

.processed-review-container .checked {
    color: #ffc107;
}

/* Display for Reviews already made container */

.review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 90px;
    padding: 50px;
    max-width: 90%;
    flex-wrap: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}



/* Processed review container */

.processed-review-container {
    background-color: rgb(231, 231, 231);
    padding: 10px;
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}

    /* User Name */

    .processed-review-container .user-review-name {
        font-family: 'Open Sans', sans-serif;
        font-weight: 900;
        font-size: 20px;
        color: #3399cc;
        margin-bottom: 10px;
    }

    /* User Review */

    .processed-review-container .written-user-review {
        font-family: 'Open Sans', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: #000;
        margin-bottom: 10px;
    }



/* Product view info */

.product-view-info, .product-view-spec, .product-view-unit-size, .product-view-packet-size {
    font-family: 'Open Sans', sans-serif;
    font-weight: bolder;
}

/* Shoppers note*/

.shoppers-note {
    text-align: center;
    color: black;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;

    margin-bottom: 40px;
}

.shoppers-note a {
    color: #3399cc;
    text-decoration: none;
}
/* Mobile Portrait */
@media (max-width: 768px) and (orientation: portrait) {
    main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 120px;
        margin-left: 0px;
        padding: 0px;
    }

    .product-detail-box {
        height: auto;
        padding-bottom: 40px;
        padding-top: 45px;
    }


    .sidenav {
        display: none;
        position: fixed;
        top: 110px;
        width: 50%;
        z-index: 2;
        left: 0;
    }

    .filter-container button {
        font-size: 16px;
    }

    .mobile-shop-side-nav {
        display: block;
        z-index: 2;
    }


    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }
    


        .sidenav a {
            font-size: 18px;
        }

    .shop-main-container .shop-heading-container {
        display: flex;
        justify-content:center;
        align-items: center;


        width: 100%
    }

        .shop-main-container .shop-heading-container h1 {
            font-size: 18px;
          
            
            text-align: center;
        }

        .shop-main-container .shop-heading-container .shop-head-sub {
            font-size: 14px;
            text-align: center;
        }

        .shop-main-container .shop-heading-container .shop-head-bottom-text {
            font-size: 14px;
            text-align: center;
        }

    .atlas-shop-online-image-container img {
        width: 90%;
    }

    .product-grid-container {
        border: none;
    }

    .email-modal {
        padding-top: 10px;
    }

    .modal {
        padding-top: 10px;
    }

    .modal-content {
        width: 80%;
    }

    .product-view-container {
        flex-direction: column;
    }

    .product-view-img-container img {
        width: 70px;
    }

    .product-view-info-container .product-info .product-view-brand {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-name {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-price-container p {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-description {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-instock {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-outofstock {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .user-review-container h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .wrapper {
        font-size: 12px;
        left: 18%;
    }

    @-moz-document url-prefix() {
        /* CSS rules here will only apply to Firefox */
        .wrapper {
            font-size: 12px;
            left: 18%;
        }
    }

    .review-user-name {
        width: 100%;
        height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .review-container {
        gap: 40px;
        padding: 10px;
    }

    .shop-main-container .shop-side-container {
        margin-left: 0;
        width: 100%;
    }
}



/* Mobile Landscape */

@media (max-width: 846px) and (orientation: landscape) {
    .shop-main-container .shop-side-container {
        margin-left: 0;
        width: 100%;
    }

    .product-detail-box {
        height: auto;
        padding-bottom: 40px;
        padding-top: 45px;
    }

    .shop-main-container .shop-heading-container h1 {
        font-size: 18px;
        text-align: center;
    }

    .shop-main-container .shop-heading-container .shop-head-sub {
        font-size: 14px;
        text-align: center;
    }

    .shop-main-container .shop-heading-container .shop-head-bottom-text {
        font-size: 14px;
        text-align: center;
    }


    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }

    main {
        margin-top: 125px;
    }



    .sidenav {
        display: none;
        top: 0;
        width: 30%;
        left: 0;
        z-index: 2;
        position: fixed;
        
    }

    .filter-container button {
        font-size: 16px;
        margin: -1px;
    }

    .mobile-shop-side-nav {
        display: block;
        z-index: 2;
    }

    .filter-container h3 {
        font-size: 16px;
        margin: 0;
    }

    .sidenav .product-search-container input {
        margin: 0;
    }

    .sidenav a {
        font-size: 18px;
    }


}



/* Tablet Portrait */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    main {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 80px;
        margin-left: 0px;
        padding: 0px;
    }

    .product-detail-box {
        height: auto;
        padding-bottom: 40px;
        padding-top: 45px;
    }

    .shop-main-container .shop-heading-container {
        top: 150px;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }

    .sidenav {
        display: none;
        z-index: 2;
        position: fixed;
        top: 110px;
    }

    .mobile-shop-side-nav {
        display: block;
    }


    .shop-main-container .shop-heading-container h1 {
        font-size: 35px;
        text-align: center;
    }

    .shop-main-container .shop-heading-container .shop-head-sub {
        font-size: 18px;
        text-align: center;
    }

    .shop-main-container .shop-heading-container .shop-head-bottom-text {
        font-size: 16px;
        text-align: center;
    }   

    .product-grid-container {
        border: none;
    }

    .email-modal {
        padding-top: 10px;
    }

    .modal {
        padding-top: 10px;
    }

    .modal-content {
        width: 80%;
    }

    .product-view-container {
        flex-direction: column;
    }

    .product-view-info-container .product-info .product-view-brand {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-name {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-price-container p {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-description {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-instock {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .product-view-info-container .product-info .product-view-outofstock {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .user-review-container h3 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .wrapper {
        font-size: 14px;
        left: 10%;
    }

    .review-user-name {
        width: 100%;
        height: 20px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .review-container {
        gap: 40px;
        padding: 10px;
    }

    .shop-main-container .shop-side-container {
        margin-left: 0;
        width: 100%;
    }



}




.product-view-package-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.product-view-package-list {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    list-style: none;
}




/* Bigger Tablet Portraight */

@media only screen and (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {

    .shop-main-container .shop-heading-container {
        top: 200px;
    }

        .shop-main-container .shop-heading-container h1 {
            font-size: 35px;
            text-align: center;
        }

        .shop-main-container .shop-heading-container .shop-head-sub {
            font-size: 18px;
            text-align: center;
        }

        .shop-main-container .shop-heading-container .shop-head-bottom-text {
            font-size: 16px;
            text-align: center;
        } 
}

/* Tablet Landscape */
@media only screen and (min-width: 1024px) and (max-width: 1112px) and (orientation: landscape) {
    .shop-main-container .shop-side-container {
        margin-left: 0;
        width: 100%;
    }

    .product-detail-box {
        height: auto;
        padding-bottom: 40px;
        padding-top: 45px;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }

    .shop-main-container .shop-heading-container h1 {
        font-size: 35px;
        text-align: center;
    }

    .shop-main-container .shop-heading-container .shop-head-sub {
        font-size: 18px;
        text-align: center;
    }

    .shop-main-container .shop-heading-container .shop-head-bottom-text {
        font-size: 16px;
        text-align: center;
    } 

    .sidenav {
        display: none;
        z-index: 2;
        position: fixed;
        top: 110px;
        left: 0;
    }

    .mobile-shop-side-nav {
        display: block;
    }

    .shop-main-container .shop-heading-container {
        top: 150px;
    }
}

/* Bigger Tablet Landscape */

@media only screen and (min-width: 1112px) and (max-width: 1366px) and (orientation: landscape) {
    .shop-main-container .shop-side-container {
        margin-left: 0;
        width: 100%;
    }

    .product-detail-box {
        height: auto;
        padding-bottom: 40px;
        padding-top: 45px;
    }

    .mobile-shop-side-nav {
        display: block;
    }

    .shop-main-container .shop-heading-container {
        top: 160px;
    }

        .shop-main-container .shop-heading-container h1 {
            font-size: 35px;
            text-align: center;
        }

        .shop-main-container .shop-heading-container .shop-head-sub {
            font-size: 18px;
            text-align: center;
        }

        .shop-main-container .shop-heading-container .shop-head-bottom-text {
            font-size: 16px;
            text-align: center;
        } 

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }

    .sidenav {
        display: none;
        z-index: 2;
        position: fixed;
        top: 110px;
        left: 0;
    }
}


/*@media only screen and (min-width: 1200px) and (max-width: 1400px) {
    .shop-main-container .shop-side-container {
        width: 90%;
    }

    .shop-main-container .shop-heading-container h1 {
        font-size: 40px;
        margin-top: -49px;
        text-align: center;
    }

    .product-detail-box {
        height: 150px;
        padding-top: 45px;
    }

    .popular-products-warning-container-mobile {
        display: block;
        margin: 0;
        text-align: center;
        color: red;
        position: relative;
        bottom: 25px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 800;
        font-size: 15px;
        padding-top: 5px
    }

    .sidenav {
        display: none;
        z-index: 2;
        position: fixed;
        top: 110px;
        left: 0;
    }
}*/

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.loading-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .loading-icon img {
        width: 250px;
        height: auto;
        margin-bottom: 35px; /* Add space between the logo and the loader circle */
    }

.loader-circle {
    border: 20px solid #f3f3f3; /* Light grey background */
    border-top: 20px solid #3399cc; /* Blue border */
    border-radius: 50%;
    width: 50px; /* Smaller size for the loader under the logo */
    height: 50px;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
