/* --------------------------------- */
/* General */
/* --------------------------------- */
body {
    background-color: #FFF;
}

main {
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 60px;
    flex-direction: column;
    margin: auto;
    width: 90%;
    padding: 60px 0px;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #e0474c;
    cursor: pointer;
}

.noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.noSelect:focus {
    outline: none !important;
}

textarea:focus,
input:focus {
    outline: none;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.jc-cr {
    justify-content: center;
}

.jc-fs {
    justify-content: flex-start;
}

.jc-fe {
    justify-content: flex-end;
}

.jc-sb {
    justify-content: space-between;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.fd-rw {
    flex-wrap: nowrap !important;
    flex-direction: row;
}

.fd-cl {
    flex-direction: column;
}

.fg-1 {
    flex-grow: 1;
}

.ai-cr {
    align-items: center;
}

.ai-fe {
    align-items: flex-end;
}

.pd-t-60 {
    padding-top: 60px !important;
}

.pos-rel {
    position: relative;
}

.w-100 {
    width: 100%;
}

.mt-20 {
    margin-top: 20px;
}

button,
.button {
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    border: none;
    height: 40px;
    background-color: #E6E6E6;
    color: #000;
    position: relative;
    border-radius: 5px;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
}

input,
select {
    height: 40px;
    padding: 7.5px 15px;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    border-radius: 5px;
}

/* --------------------------------- */
/* Header */
/* --------------------------------- */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 10px;
    padding: 15px;
    width: 100%;
    background-color: #F9F9F9;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}

header .user-account p {
    background-color: #E88025;
    color: #FFF;
    padding: 1px 9px;
    border-radius: 5px;
    position: absolute;
    top: -7.5px;
    right: -7.5px;
    text-align: center;
}

.contact-info {
    width: 100%;
    background-color: #5fb840;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.contact-info p {
    font-weight: 600;
    letter-spacing: 3px;
    color: #FFF;
}

.contact-info a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    padding: 1px 8px;
}

.contact-info a:hover span {
    color: #ef9b12;
    transition: 0.3s;
}

.contact-info span {
    font-size: 16px;
    color: inherit;
    transition: 0.3s;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
}

.nav a {
    color: #4A4A4A;
    text-decoration: none;
    display: flex;
    align-items: center;
    align-content: center;
    gap: 10px;
    padding: 8px 25px;
    font-weight: 600;
}

.nav a span {
    padding: 5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

.nav a:hover span {
    color: #7dab4e;
    transition: 0.3s;
}

.nav a.active span {
    background-color: #ef9b12;
    color: #FFF;
}

.cart-btn-animate {
    animation: shake 0.5s;
    animation-iteration-count: 1;
}

@keyframes shake {
    0% {
        background-color: #E6E6E6;
        color: #000;
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        background-color: #7dab4e;
        color: #FFF;
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        background-color: #7dab4e;
        color: #FFF;
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        background-color: #E6E6E6;
        color: #000;
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

/* --------------------------------- */
/* Loading Screen */
/* --------------------------------- */

#loading {
    position: fixed;
    display: flex;
    /* display: none; */
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background-color: #000;
    z-index: 100;
    max-width: 100vw;
    max-height: 110vh;
}

#loading-image {
    z-index: 100;
}

#loading h1 {
    font-size: 21px;
    color: #ef9b12;
    font-weight: 900;
}

#loading .logo {
    height: 50vh;
    max-height: 300px;
}

/* --------------------------------- */
/* Hero Banner */
/* --------------------------------- */

.banner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-banner {
    background: #EFEFEF;
    background-image: linear-gradient(to right, #ffd23e 20%, #fff4d1 70%);
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    min-width: 300px;
}

.hero-banner img {
    height: 100%;
}

.hero-banner .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
}

.hero-banner h5 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    color: #ef9b12;
}

.hero-banner h2 {
    color: #4A4A4A;
    font-weight: 600;
    font-size: 16px;
}

.hero-banner .code {
    padding: 15px 30px;
    border-radius: 5px;
    background-color: #ef9b12;
    color: #FFF;
    text-align: center;
    width: fit-content;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    cursor: copy;
}

.side-banner {
    width: 60%;
    position: relative;
    background-color: #EFEFEF;
}

.side-banner .main-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    width: 100%;
}

/* --------------------------------- */
/* Section */
/* --------------------------------- */

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 20px;
    padding: 0px;
    width: 100%;
}

.section-head p {
    font-size: 21px;
    font-weight: 600;
    color: #ef9b12;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
}

.section-head hr {
    width: 30vw;
    height: 3px;
    border: none;
    background-color: #ef9b12;
    border-radius: 2px;
}

.section-head a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #4A4A4A;
}

/* --------------------------------- */
/* Circular Tile */
/* --------------------------------- */

.category-circles {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
    padding-bottom: 60px;
    flex-wrap: wrap;
}

.category-circles a {
    text-decoration: none;
}

.circle-tiles {
    width: 120px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: column;
}

.circle-tiles img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

.circle-tiles p {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A;
    text-decoration: none;
    text-align: center;
}

/* --------------------------------- */
/* Testemonials */
/* --------------------------------- */

.testimonials {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.testimonials .container {
    max-width: 340px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    flex-direction: column;
}

.testimonials .container p {
    color: #4A4A4A;
    font-size: 16px;
    line-height: 25px;
}

.testimonials .container p span {
    color: #1b9d79;
    font-size: 21px;
}

.testimonials .container .rating {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0px;
    flex-direction: row;
}

.testimonials .container .rating p {
    padding-left: 10px;
    font-size: 14px;
}

.testimonials .container .rating span {
    color: #E88025;
}

.testimonials .container .rating span.gray {
    color: #b5b5b5 !important;
}

.testimonials .container h2 {
    font-weight: 600;
}

.testimonials .container .images {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
}

.testimonials .container .images img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background-color: #7dab4e69;
    border-radius: 10px;
    overflow: hidden;
}

/* --------------------------------- */
/* Whatsapp */
/* --------------------------------- */

.whatsapp-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #1daa61;
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translateY(3px);
}

/* --------------------------------- */
/* Review Image Modal */
/* --------------------------------- */

.review-modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 70%;
    object-fit: contain;
}

.review-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.review-close:hover,
.review-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* --------------------------------- */
/* Tile */
/* --------------------------------- */

.tile-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: stretch;
    align-content: space-around;
    flex-wrap: wrap;
}

.tile {
    border-radius: 5px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 280px;
    transition: 0.3s;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.tile .tile-msg {
    position: absolute;
    top: 20px;
    left: 0px;
    padding: 3px 15px;
    font-size: 14px;
    border-radius: 0px 5px 5px 0px;
    background-color: #EFEFEF;
    color: #4A4A4A;
    font-weight: 600;
    box-shadow: 10px 5px 10px #4A4A4A;
    z-index: 3;
}

.tile .few-left-msg {
    position: absolute;
    top: 20px;
    left: 0px;
    padding: 3px 15px;
    font-size: 14px;
    border-radius: 0px 5px 5px 0px;
    background-color: #e0474c;
    color: #FFF;
    font-weight: 600;
    box-shadow: 10px 5px 10px #4A4A4A;
    z-index: 3;
}


.tile .content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.3s;
}

.tile:hover .img-wrapper img {
    transform: scale(1);
    transition: 0.5s;
}

.tile .img-wrapper {
    height: 260px;
    width: 100%;
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;
}

.tile img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.tile .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-direction: column;
    flex-wrap: nowrap;
    flex-grow: 1;
    width: 100%;
    border-radius: 10px;
    background-color: #5fb84019;
    overflow: hidden;
}

.tile .text {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    flex-grow: 1;
}

.tile h5 {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A;
    text-align: left;
    text-transform: capitalize;
    height: 44.4px;
    overflow: hidden;
}

.tile h2 {
    font-size: 14px;
    font-weight: 600;
    color: #ef9b12;
}

.tile h3 {
    font-size: 12px;
    font-weight: 600;
    color: #b5b5b5;
}

.tile h3 span {
    font-size: 16px;
    font-weight: 600;
    color: #b5b5b5;
    text-decoration: line-through;
}

.tile h4 {
    font-size: 14px;
    font-weight: 300;
    color: #7dab4e;
    text-align: center;
}

.tile h4 span {
    font-size: 21px;
    font-weight: 600;
}

.tile .icons {
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    background-color: #5fb84009;
    color: #000;
    border-radius: 0px 0px 5px 5px;
}

.tile button {
    padding: 0px;
    background-color: transparent;
    color: #b5b5b5;
}

.tile .rating {
    color: #fb9e1c;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.tile .rating span {
    font-size: 16px;
}

.tile .rating p {
    color: #4A4A4A;
    font-size: 12px;
}

.tile .add-cart {
    background-color: #5fb840;
    color: #FFF;
    font-size: 14px;
    padding: 0px 10px;
    margin-right: -10px;
    transition: 0.3s;
}

.tile .add-cart:hover {
    background-color: #7dab4e;
    color: #FFF;
    font-size: 14px;
    transition: 0.3s;
}

.tile .add-cart-disabled {
    color: #b5b5b5;
}

/* --------------------------------- */
/* About Container */
/* --------------------------------- */

.about-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: stretch;
    gap: 30px;
}

.about-container .about {
    max-width: 600px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-direction: column;
}

.about-container .about img {
    width: fit-content;
}

.about-container h5 {
    font-size: 21px;
    color: #ef9b12;
    font-weight: 600;
}

.about-container p {
    font-weight: 300;
    color: #4A4A4A;
    line-height: 24px;
    font-size: 16px;
}

.about-container .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2vw;
    align-items: center;
    align-content: stretch;
    width: 100%;
}

.features .feature-tile {
    border-radius: 5px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}

.features h2 {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A;
}

.features span {
    font-size: 3.5rem;
    color: #7dab4e;
}

.feature-tile img {
    height: 114px;
    width: 114px;
    object-fit: cover;
    border-radius: 5px;
}

/* --------------------------------- */
/* Categories */
/* --------------------------------- */

.category-tile {
    position: relative;
    background-color: #e9f4ee;
    border-radius: 5px;
    padding: 20px;
    padding-top: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 340px;
    margin-top: 140px;
    width: 100%;
    text-decoration: none;
}

.category-tile.last {
    margin: 0px;
}

.category-tile img {
    height: 240px;
    width: auto;
    position: absolute;
    top: -140px;
    right: 0px;
}

.category-tile h5 {
    font-size: 21px;
    color: #ef9b12;
    font-weight: 600;
    text-transform: capitalize;
}

.category-tile h2 {
    font-size: 16px;
    color: #7dab4e;
    font-weight: 600;
}

.category-tile p {
    font-size: 14px;
    line-height: 24px;
    color: #4A4A4A;
    font-weight: 300;
}

.category-tile button,
.category-tile a {
    border: 1px solid #ef9b12;
    color: #ef9b12;
    background-color: transparent;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    height: auto;
    position: relative;
    border-radius: 5px;
    text-decoration: none;
}

/* --------------------------------- */
/* Cart */
/* --------------------------------- */

.cart {
    position: absolute;
    top: 50px;
    right: 0;
    width: 300px;
    border-radius: 5px;
    background-color: #E6E6E6;
    color: #4A4A4A;
    height: fit-content;
    z-index: 3;
}

#cart {
    display: none;
}

.cart .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.cart .tri-up {
    position: absolute;
    top: -10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #E6E6E6;
}

.cart h5 {
    font-size: 16px;
    color: #4A4A4A;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.cart h2 {
    font-size: 14px;
    color: #4A4A4A;
    font-weight: 600;
}

#shippingDialogue {
    padding: 10px;
    border-radius: 5px;
    background-color: #FFF;
}

.cart h2 span {
    font-size: 16px;
    color: #1b9d79;
}

.cart img {
    height: 60px;
    width: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.cart .container {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    max-height: 60vh;
    overflow: auto;
    padding-right: 10px;
}

.cart .container::-webkit-scrollbar {
    width: 4px;
}

.cart .container::-webkit-scrollbar-track {
    background: #E6E6E6;
}

/* Handle */
.cart .container::-webkit-scrollbar-thumb {
    background: #ef9b12;
    border-radius: 3px;
}

/* Handle on hover */
.cart .container::-webkit-scrollbar-thumb:hover {
    background: #7dab4e;
}

.cart-tile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    background-color: #F6F7FB;
    padding: 5px;
    border-radius: 5px;
}

.cart-tile .content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 5px;
    flex-direction: column;
    flex-grow: 1;
}

.cart-tile .qty {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: row;
}

.cart-tile .qty button {
    background-color: #E6E6E6;
    padding: 5px 10px;
    height: fit-content;
}

.cart-tile .qty input {
    padding: 5px;
    height: fit-content;
    font-size: 14px;
    width: 60px;
}

.cart-tile .action {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
}

.cart-tile h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ef9b12;
}

.cart-tile .action button {
    font-size: 14px;
    background-color: transparent;
    color: #b5b5b5;
    padding: 0px;
    height: fit-content;
}

.cart-tile .action button:hover {
    color: #e0474c;
}

.cart-tile .action span {
    font-size: inherit;
    color: inherit;
}

.cart .checkout {
    border: 1px solid #ef9b12;
    color: #ef9b12;
    display: none;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    height: 40px;
    position: relative;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.cart-tile .product-name {
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
    width: 100%;
    text-transform: capitalize;
}

#totalAmount {
    display: none;
    padding-top: 10px;
}

/* --------------------------------- */
/* Price Offers */
/* --------------------------------- */

.price-offers {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    padding: 20px;
    width: 100%;
}

.price-offers .container {
    background: #E88025;
    width: 100px;
    height: 100px;
    position: relative;
    text-align: center;
    border-radius: 5px;
}

.price-offers .container p {
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 21px;
    font-weight: 600;
}

.price-offers .container p span {
    font-size: 14px;
    font-weight: 300;
}

.price-offers .container:before,
.price-offers .container:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: #E88025;
    border-radius: 5px;
}

.price-offers .container:before {
    transform: rotate(30deg);
}

.price-offers .container:after {
    transform: rotate(60deg);
}

/* --------------------------------- */
/* Video Section */
/* --------------------------------- */

.video-section {
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    gap: 20px;
    width: 100%;
}

.video-section .content {
    max-width: 400px;
}

.video-section .content h1 {
    font-size: 21px;
    color: #7dab4e;
    font-weight: 600;
}

.video-section .content p {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A;
    text-align: justify;
    padding: 10px 0px;
}

.video-section .video {
    pointer-events: none;
    border-radius: 5px;
    max-width: 500px;
    width: 100%;
}

.video-section .video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0px 0px 20px 12px #E6EBED;
}

/* --------------------------------- */
/* News */
/* --------------------------------- */

.news-section {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.news-section .container {
    background-color: #E6E6E6;
    position: relative;
    height: 400px;
    position: relative;
    border-radius: 5px;
}

.news-section .container:nth-child(odd) {
    max-width: 250px !important;
}


.news-section .container:nth-child(even) {
    max-width: 500px !important;
}

.news-section .container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    max-height: 400px;
    max-width: auto;
    overflow: hidden;
    border-radius: 5px;
}

.news-section .content {
    position: absolute;
    bottom: 0%;
    z-index: 1;
    width: 100%;
    padding: 15px;
    background-color: #EFEFEF;
    border-radius: 0px 0px 5px 5px;
}

.news-section p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #4A4A4A;
    font-weight: 600;
}

.news-section h5 {
    color: #ef9b12;
    font-size: 16px;
    font-weight: 900;
}

.news-section a {
    color: #7dab4e;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 600;
}

/* --------------------------------- */
/* Footer */
/* --------------------------------- */

footer {
    background-color: #F9F9F9;
    color: #4A4A4A;
}

footer .wrapper {
    padding: 10px 15px;
    background-color: #ef9b1229;
    font-size: 12px;
    font-weight: 600;
}

footer .wrapper:last-child {
    text-align: left;
    width: 100%;
    background-color: #F9F9F9;
}

footer .container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 15px;
}

footer a,
footer p {
    display: flex;
    font-size: 14px;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    color: #4A4A4A;
    text-decoration: none;
    padding: 5px 0px;
    gap: 10px;
    cursor: pointer;
}

footer a:hover {
    text-decoration: underline;
}

footer a span {
    font-size: 14px !important;
}

footer .social a {
    display: inline-block;
    padding-right: 10px;
}

footer h5 {
    color: #ef9b12;
    font-size: 18px;
    padding-bottom: 20px;
}

/* --------------------------------- */
/* Login */
/* --------------------------------- */

.login-modal {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 95;
    width: 100vw;
    height: 100vh;
}

#login-modal {
    display: none;
}

.login-modal .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.login-modal .wrapper .container {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -20%);
    background-color: #FFF;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.login-modal form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.login-modal .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 20px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ef9b12;
}

.login-modal h1 {
    font-size: 21px;
    color: #ef9b12;
    font-weight: 600;
}

.login-modal h2 {
    color: #7dab4e;
    font-size: 16px;
    font-weight: 600;
}

.login-modal input {
    border: none;
    background-color: #ef9b1229;
    color: #4A4A4A;
    font-size: 14px;
    width: 240px;
}

.login-modal .forgot {
    font-size: 12px;
    font-weight: 600;
    color: #4A4A4A;
    text-align: left;
    width: 100%;
    text-decoration: none;
    cursor: pointer;
}

.login-modal .forgot:hover {
    text-decoration: underline;
}

.login-modal p {
    font-size: 14px;
    font-weight: 300;
    color: #4A4A4A;
}

.login-modal button {
    background-color: #ef9b12;
    width: 100%;
    color: #FFF;
    margin: 10px 0px;
}

.login-modal p a {
    font-size: 14px;
    font-weight: 600;
    color: #ef9b12;
    cursor: pointer;
    text-decoration: underline;
}

.signup {
    display: none;
}

.signin {
    display: block;
}

#view-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 16px !important;
    color: #4A4A4A;
    cursor: pointer;
}

.login-modal .error {
    font-size: 14px;
    font-weight: 600;
    color: #e0474c;
}

/* --------------------------------- */
/* Search */
/* --------------------------------- */

.search .search-drop {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 300px;
    max-width: 90vw;
    background-color: #E6E6E6;
    padding: 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}

.search-drop img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
}

.search-drop .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.search-drop .container:hover {
    background-color: #FFF;
    padding-left: 10px;
    transition: 0.3s;
}

.search-drop .container p {
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-drop .container b {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #ef9b12;
    text-transform: capitalize;
}

.search-drop h5 {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-transform: capitalize;
}

#searchDrop {
    display: none;
}

/* --------------------------------- */
/* Message box */
/* --------------------------------- */

.message-box {
    position: fixed;
    top: 150px;
    right: 0px;
    transform: translateX(100%);
    width: fit-content;
    padding: 15px;
    border-radius: 5px 0px 0px 5px;
    background-color: #E88025;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    height: 52px;
    z-index: 50;
}

.message-box-animate {
    animation: sweepLeft;
    animation-iteration-count: 1;
    animation-duration: 4s;
}

@keyframes sweepLeft {
    0% {
        transform: translateX(100%);
    }

    20% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* --------------------------------- */
/* 404 */
/* --------------------------------- */

.fnf {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

#fnf-image,
#ty-image,
#pf-image {
    height: 250px;
    max-width: 100%;
    width: auto;
}

.fnf.failed h5 {
    color: #e0474c !important;
}

.fnf h5 {
    font-size: 3rem;
    color: #1b9d79;
    font-weight: 600;
}

.fnf h2 {
    font-size: 16px;
    font-weight: 600;
    color: #4A4A4A;
}

.fnf hr {
    width: 100%;
    height: 2px;
    background-color: #e2e2e2;
    border: none;
    margin: 20px 0px;
}

.fnf h3 {
    font-weight: 600;
    color: #4A4A4A;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.fnf h3 span {
    font-weight: 600;
    color: #000;
    background-color: #ef9b1229;
    padding: 5px 20px;
    border-radius: 5px;
    display: block;
}

.fnf p {
    font-size: 14px;
    font-weight: 600;
    color: #4A4A4A;
}

.fnf a {
    padding: 8px 25px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 10px;
    border: none;
    height: 40px;
    background-color: #7dab4e;
    color: #FFF;
    position: relative;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
}

/* --------------------------------- */
/* Profile */
/* --------------------------------- */

.profile {
    position: absolute;
    top: 50px;
    right: 0;
    width: 300px;
    border-radius: 5px;
    background-color: #E6E6E6;
    color: #4A4A4A;
    height: fit-content;
    z-index: 3;
}

#profile {
    display: none;
}

.profile .wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 15px;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.profile .tri-up {
    position: absolute;
    top: -10px;
    right: 120px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #E6E6E6;
}

.profile h2 {
    font-size: 14px;
    color: #4A4A4A;
    font-weight: 600;
}

.profile h2 span {
    font-size: 16px;
    color: #ef9b12;
}

.profile .container {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    flex-direction: column;
    width: 100%;
}

.profile a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    text-decoration: none;
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
    padding: 10px 0px;
    width: 100%;
    border-radius: 5px;
    transition: 0.3s;
}

.profile a.logout {
    color: #e0474c;
}

.profile a:hover {
    background-color: #FFF;
    padding-left: 10px;
    transition: 0.3s;
}

/* --------------------------------- */
/* Social */
/* --------------------------------- */

.share-buttons {
    display: none;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.share-buttons i {
    font-size: 21px;
    color: #ef9b12;
}

.share-buttons img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.share-buttons img:hover {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* --------------------------------- */
/* Responsive Designs */
/* --------------------------------- */

.mobile {
    display: none;
}

@media screen and (max-width: 1500px) {
    header {
        flex-direction: column-reverse;
    }

    header .user-account label {
        display: none;
    }

    .mobile {
        display: block;
    }

    .search {
        width: 100%;
    }

    .search input {
        width: 100%;
    }

    .nav {
        display: none;
    }

    .user-container {
        width: 100%;
    }

    .contact-info {
        display: none;
    }

    .banner {
        flex-direction: column;
    }

    .side-banner {
        width: 100%;
    }

    .side-banner .main-img {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }

    .hero-banner {
        width: 100%;
        flex-direction: column;
        height: fit-content;
    }

    .hero-banner img {
        /* display: none; */
        width: 100%;
    }

    .hero-banner .content {
        display: none;
    }

    .video-section {
        flex-direction: column;
        align-items: center;
    }

    .news-section {
        width: 100%;
    }

    .news-section .container:nth-child(odd) {
        width: 100%;
        max-width: 300px !important;
    }

    .news-section .container:nth-child(even) {
        width: 100%;
        max-width: 300px !important;
    }

    .news-section .container {
        height: 240px;
    }

    .category-tile {
        width: 47%;
        min-width: 160px;
        /*180px*/
        padding-top: 60px;
        margin-top: 70px;
    }

    .category-tile img {
        height: 120px;
        top: -70px;
    }

    .category-tile p {
        display: none;
    }

    .category-tile a {
        height: fit-content;
    }

    .tile {
        width: 47%;
        min-width: 160px;
        /*180px*/
        max-width: 200px;
    }

    .tile .content,
    .tile .text {
        flex-grow: 1;
    }

    .tile .add-cart,
    .tile .add-cart-disabled {
        font-size: 0px;
    }

    .tile img {
        height: 130px;
    }

    .tile .img-wrapper {
        height: 130px;
    }

    footer .container {
        justify-content: space-between;
    }

    footer .wrapper:last-child {
        padding-bottom: 80px;
    }

    .profile {
        left: 0;
        right: auto;
        width: 100%;
    }

    .profile .tri-up {
        left: 10px;
        right: auto;
    }

    .cart {
        width: 100%;
    }

    .mobile-nav {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        flex-direction: row;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #7dab4e;
        padding: 5px 0px;
        z-index: 99;
    }

    .mobile-nav a {
        text-decoration: none;
        color: #FFF;
        width: fit-content;
        height: 50px;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px;
        font-size: 14px;
        font-weight: 600;
    }

    .mobile-nav a.active {
        background-color: #ef9b12;
        color: #FFF;
    }

    main {
        padding: 10px;
        padding-top: 20px;
        width: 100%;
    }

    .search .search-drop {
        width: 100%;
    }

    .tile-container {
        width: 100%;
        /* overflow-y: auto; */
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .tile-category {
        width: 100%;
        overflow-y: auto;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .about-container {
        width: 100%;
    }

    .about-container .features {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }

    .features .feature-tile {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .about-container p {
        display: none;
    }

    .about-container h5 {
        display: none;
    }

    .about-container h6 {
        font-size: 14px;
        font-weight: 600;
        color: #7dab4e;
    }

    .features span {
        font-size: 2rem;
    }

    .circle-tiles {
        width: 60px;
    }

    .circle-tiles img {
        width: 60px;
        height: 60px;
    }

    .hero-banner h5 {
        font-size: 3rem;
    }

    .price-offers {
        gap: 40px;
    }

    .price-offers .container {
        width: 80px;
        height: 80px;
    }

    .price-offers .container:before,
    .price-offers .container:after {
        width: 80px;
        height: 80px;
    }

    .tile .add-cart:hover {
        font-size: 0px;
    }

    .video-section .content {
        padding: 0px 15px;
    }

    footer .container div:nth-child(odd) {
        display: none;
    }

    .login-modal .wrapper .container {
        max-width: 90vw;
        width: 400px;
    }
}