*{
    margin: 0;
}


body{
    /*margin-bottom: 30px;*/
}

.header-wrapper{
    font-family: 'Montserrat', sans-serif;
    position: fixed;
    z-index: 999999999;
}
.header-bar-one{
    font-family: 'Montserrat', sans-serif;
    min-height: 40px;
    width: 100vw;
    background-color: #E3E3E3;
    display: grid;
    grid-template-columns: 50% 50%;
}

.header-bar-one-cta{
    font-size: 15px;
    align-self: start;
    padding-left: 10px;
    padding-top: 14px;
}

.basket-div{
    font-size: 15px;
    justify-self: end;
    padding-top: 15px;
}

.basket-icon-root{
    margin-right: 25px;
    margin-left: 25px;
}

.header-bar-two {
    font-family: 'Montserrat', sans-serif;
    min-height: 90px;
    width: 100vw;
    background-color: #FF7900;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    margin-top: 1px;
    padding-right: 0;
}

.hb2-div1{
    padding-top: 20px;
    padding-left: 30px;
    background-color: #009A49;
}

.hb2-logo-text{
    font-size: 28px;
    color: white;
    font-weight: 900;
}

.hb2-logo-subtext{
    font-size: 14px;
    /*padding-left: 5px;*/
    color: white
}

.hb2-div2{
    padding-top: 25px;
    background-color: white;
    color: black;
}

.hb2-div2-straptext{
    font-size: 14px;
    font-weight: 800;
    /*color: white;*/
    justify-self: center;
    text-align: center;
}



.hb2-div3{
    background-color: #FF7900;
    width: 100%;
    display: grid;
}

.hb2-div3 .search-bar-container{
    margin-top: 20px;
    justify-self: end;
}

.hb2-div3-searchroot{

}

.header-bar-three{
    font-family: 'Montserrat', sans-serif;
    background-color: #E3E3E3;
    min-height: 40px;
    width: 100vw;
    margin-top: 1px;
}

.header-bar-three .cat-links{
    text-align: center;
    padding-top: 10px
}

.hb4-infoline-root{
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.category-href{
    text-decoration: none;
    color: black;
    margin-right: 25px;
}

.category-href:last-child{
    margin-right: 0;
}

.category-href:hover{
    text-decoration: underline;
}

/* Above Styling for the Header */


/* Below Styling for the hoverable information items below the header */

.header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.info-item {
    position: relative;
    margin-right: 20px;
    cursor: pointer;
}

.icon {
    margin-right: 5px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    display: none;
}

.info-item:hover .dropdown {
    display: block;
}

/* Above Styling for the hoverable information items below the header */


/* Below Styling for the SearchBar Component */

.search-bar-container {
    position: relative;
    display: inline-block;
}

.search-input {
    padding: 8px;
    width: 400px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .search-input {
        width: 80vw;
    }
}

.loading-indicator {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-results {
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    max-height: 350px;
    overflow-y: auto;
}

.result-item {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;


&:hover {
     background-color: #f0f0f0;
 }
}

/* Above Styling for the SearchBar Component */


/* Below Styling for the ProductWrapper Component */

.product-wrapper {
    /*max-width: 80vw;*/
    /*width: 80vw;*/
    /*margin: 25px 10vw;*/
    display: grid;
    font-family: 'Montserrat', sans-serif;
    grid-row-gap: 50px;
    text-align: center;
}

.product-wrapper-search-bar{
    width: 80vw;
    margin-left: 10vw;
}

.product-list {
    /*list-style: none;*/
    display: grid;
    /*grid-template-columns: 33% 33% 33%;*/
    grid-template-columns: 25% 25% 25% 25%;
    grid-column-gap: 35px;
    grid-row-gap: 50px;
    padding: 0;
    width: 80vw;
    margin-left: calc(((100vw - 80vw) - (35px * 3)) / 2);
}

@media (max-width: 950px) {
    .product-list {
        grid-template-columns: 50% 50%;
        margin-left: calc(((100vw - 80vw) - (35px * 2)) / 2);
    }
}

@media (max-width: 600px) {
    .product-list {
        grid-template-columns: 100%;
        margin-left: 10vw;
    }
}

.product {
    border: 0.5px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    min-height: 100%;
    border-radius: 7px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /*align-self: stretch;*/
}

.product img{
    width: 323px;
    height: 242px;
    max-width: 100%;
}

.product:hover{
    background-color: #f8f6f6;
    /*box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination button {
    margin: 0 5px;
    padding: 8px 12px;
    cursor: pointer;
}

input {
    padding: 8px;
    margin-bottom: 10px;
}

/* Above Styling for the ProductWrapper Component */



/*Animations Styling Below*/


.slow-fade-in {
    opacity: 0;
    animation: slow-fade-in 2.5s ease-out forwards;
}

@keyframes slow-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.mid-fade-in {
    opacity: 0;
    animation: mid-fade-in 1.5s ease-out forwards;
}

@keyframes mid-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fast-fade-in {
    opacity: 0;
    animation: fast-fade-in 0.5s ease-out forwards;
}

@keyframes fast-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.menu-card-wrapper{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-column-gap: 1.25vw;
    grid-row-gap: 25px;
    width: 80vw;
    margin-left: calc(((100vw - 80vw) - (1.25vw * 3)) / 2);
    margin-top: 25px;
}

@media (max-width: 1000px) {
    .menu-card-wrapper{
        grid-template-columns: 50% 50%;
        margin-left: calc(((100vw - 80vw) - (1.25vw * 2)) / 2);
    }
}

@media (max-width: 600px) {
    .menu-card-wrapper{
        grid-template-columns: 100%;
        margin-left: 10vw;
        width: 80vw;
        margin-top: 50px;
    }

    .menu-card{
    }
}

.menu-card{
    /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;*/
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    height: 350px;
    text-align: center;
}

.menu-card h1, h2{
    font-family: 'Montserrat', sans-serif;
    margin-top: 10px;
}

.menu-card img{
    object-fit: contain;
    width: 80%;
    /*margin-left: 10%;*/
    margin-top: 10px;
    height: 250px;
}

.page-header-text{
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
}

.old-heading-text{
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.body-text{
    font-family: 'Montserrat', sans-serif;
    white-space: break-spaces;
    line-height: 1.8;
    font-size: 1.025rem;
}

.error{
    font-family: 'Montserrat', sans-serif;
    color: red;
}


   /* CSS */
.button-38 {
   background-color: #FFFFFF;
   border: 0;
   border-radius: .5rem;
   box-sizing: border-box;
   color: #111827;
   font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
   font-size: .875rem;
   font-weight: 600;
   line-height: 1.25rem;
   padding: .75rem 1rem;
   text-align: center;
   text-decoration: none #D1D5DB solid;
   text-decoration-thickness: auto;
   box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
   cursor: pointer;
   user-select: none;
   -webkit-user-select: none;
   touch-action: manipulation;
}

.button-38:hover {
    background-color: rgb(249,250,251);
}

.button-38:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.button-38:focus-visible {
    box-shadow: none;
}

.button-39 {
    background-color: #FFFFFF;
    border: 0;
    border-radius: .5rem;
    box-sizing: border-box;
    color: #111827;
    font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: .875rem;
    font-weight: 600;
    line-height: 1.25rem;
    padding: .75rem 1rem;
    text-align: center;
    text-decoration: none #D1D5DB solid;
    text-decoration-thickness: auto;
    box-shadow: 0 1px 10px 10px rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.button-39:hover {
    background-color: rgb(249,250,251);
}

.button-39:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.button-39:focus-visible {
    box-shadow: none;
}

/*Below Styling is for the Basket Component*/

/* Add this to your main CSS file or style component */
.basket-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.flash {
    animation: flashAnimation 1s ease-in-out;
}

@keyframes flashAnimation {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.item-count {
    position: absolute;
    top: -10px;
    right: -25px;
    /*right: 0;*/
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 4px 8px;
    text-align: center;
    font-size: 12px;
}

.basket-info {
    /*position: fixed;*/
    /*top: 50px; !* Adjust as needed *!*/
    /*right: 20px;*/
    /*background-color: white;*/
    /*padding: 10px;*/
    /*border: 1px solid #ddd;*/
}

/* Additional styling as needed */


.product-add-to-basket-button{
    height: 30px;
    width: 75%;
    background-color: white;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    cursor: pointer;
}

.product-add-to-basket-button:hover{
    background-color: whitesmoke;
}

.responsive-2-column-grid-wrapper{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    width: 80vw;
    margin-left: 10vw;
    text-align: center;
    align-items: center;
}

.responsive-2-column-grid-wrapper img{
    max-width: 80%;
}

/*@media (max-width: 768px) {*/
/*    .responsive-2-column-grid-wrapper{*/
/*        grid-template-columns: 100%;*/
/*    }*/
/*}*/

.responsive-3-column-grid-wrapper{
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    width: 80vw;
    margin-left: 10vw;
    text-align: center;
    align-items: center;
}

.responsive-3-column-grid-wrapper img{
    max-width: 80%;
}

/*@media (max-width: 768px) {*/
/*    .responsive-3-column-grid-wrapper{*/
/*        grid-template-columns: 100%;*/
/*    }*/
/*}*/

.hide-on-mobile {
    display: block;
}

#header-root{
    min-height: 170px;
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }

    #header-root{
        min-height: 250px;
    }
}


.mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
}


.footer-root{
    width: 100vw;
    background-color: #009A49;
    box-shadow: 0px 0px 0px 0.5px rgba(50, 50, 93, 0.1),
    0px 2px 5px 0px rgba(50, 50, 93, 0.1), 0px 1px 1.5px 0px rgba(0, 0, 0, 0.07);
}

.footer-grid{
    display: grid;
    grid-template-columns: 33% 33% 33%;
}

.footer-col-1{

}

.footer-col-2{
    text-align: center;
}

.footer-col-3{

}

/*the below line shows a 'scroll to top' (up facing caret) button in the bottom right corner of the screen on mobile devices only*/

@media only screen and (max-width: 767px) {
    .footer-grid{
        grid-template-columns: 50% 50%;
    }
}

@media only screen and (max-width: 600px) {
    .footer-grid{
        grid-template-columns: 100%;
    }
}

.footer-links{
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: Montserrat, sans-serif;
    cursor: pointer;
    line-height: 1.5;
}

.footer-links:hover{
    text-decoration: underline;
}