@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Tamma+2:wght@400..800&family=Charmonman:wght@400;700&family=Kaushan+Script&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200;0,8..60,300;0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;0,8..60,800;0,8..60,900;1,8..60,200;1,8..60,300;1,8..60,400;1,8..60,500;1,8..60,600;1,8..60,700;1,8..60,800;1,8..60,900&display=swap');
html{
    scroll-behavior: smooth;
}

* {
    margin: 0px;
}

/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%
}

/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
    padding-top: 102px;
}


*{
 /*user-select: none;*/
 /*   -webkit-user-select: none;*/
    margin: 0;
}
/* 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;
    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;
}

/*Below styling is for the buttons used across the store*/

/* 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;
}

/*end of store button styling*/



/*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;
}


.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;
}

.header-wrapper{
    background-color: red;
    min-height: 100px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#header-root{
    min-height: 145px;
}

.navlink{
    font-family: Montserrat;
    color: white;
    text-decoration: none;
    cursor: pointer;
    margin-left: 25px;
}

.navlinks-wrapper{
    justify-content: space-between;
    padding-top: 10px;
    text-align: end;
    margin-right: 25px;
}

.navlink:hover{
    text-decoration: underline;
}

/*.navlinks-wrapper:last-child{*/
/*    margin-right: 25px;*/
/*    color: yellow;*/
/*}*/

.categorylinks-wrapper{
    justify-content: center;
    margin-top: 45px;
    text-align: center;
}

.categorylinks-wrapper:last-child{
    margin-right: 25px;
}

.categorylinks-wrapper a{
    font-family: Montserrat;
    color: black;
    text-decoration: none;
    cursor: pointer;
    margin-left: 25px;
    font-weight: 500;
    color: white;
}

.categorylinks-wrapper a:hover{
    text-decoration: underline;
}

@media (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }
}

@media (min-width: 767px) {
    .mobile-only {
        display: none;
    }
}

.page-header-text{
    font-family: 'Baloo Tamma 2';
    font-size: 3rem;
}

.body-text{
    font-family: Montserrat;
    line-height: 1.7;
    font-size: 1.25rem;
}



/*image slider styling below*/


/*Image slider styling below:*/

.image-slider {
    position: relative;
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
}

.image-slider-image-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.image-slider-image {
    height: 75vh;
    min-width: 100%;
    object-fit: cover;
}

.image-slider-image.active {
    opacity: 1;
}

.image-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.image-slider-control-left,
.image-slider-control-right {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    outline: none;
}

/*image slider styling above*/



/*below styling for news banner*/

.breaking-news-headline {
    display: block;
    position: absolute;
    font-family: arial;
    font-size: 13px;
    margin-top: -22px;
    color: white;
    margin-left: 190px;
    height: 17px;
    line-height: 17px;
    overflow: hidden;
}
.breaking-news-title {
    background-color: #ffea00;
    display: block;
    height: 20px;
    width: 130px;
    text-align: center;
    font-family: arial;
    font-size: 11px;
    position: absolute;
    top: 0px;
    margin-top: 0px;
    margin-left: 20px;
    padding-top: 10px;
    padding-left: 10px;
    z-index: 3;
}
.breaking-news-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    top: 0;
    left: -12px;
    border-left: 12px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 30px solid #ffea00;
}
.breaking-news-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    right: -12px;
    top: 0;
    border-right: 12px solid transparent;
    border-left: 0px solid transparent;
    border-top: 30px solid #ffea00;
}
#breaking-news-colour {
    height: 30px;
    width: 100vw;
    background-color: #39f;
}
#breaking-news-container {
    height: 30px;
    width: 100vw;
    overflow: hidden;
    position: absolute;
}
#breaking-news-container:before {
    content: "";
    width: 30px;
    height: 30px;
    background-color: #39f;
    position: absolute;
    z-index: 2;
}
.animated {
    -webkit-animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.2s;
    -moz-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
}
.delay-animated {
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.4s;
    -moz-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
.scroll-animated {
    -webkit-animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 3s;
    -moz-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.delay-animated2 {
    -webkit-animation-duration: 0.4s;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 0.4s;
    -moz-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}
.delay-animated3 {
    -webkit-animation-duration: 5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-duration: 5s;
    -moz-animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -webkit-animation-delay: 0.5s;
    animation-delay: 3s;
}
.fadein {
    -webkit-animation-name: fadein;
    -moz-animation-name: fadein;
    -o-animation-name: fadein;
    animation-name: fadein;
}
@-webkit-keyframes fadein {
    from {
        margin-left: 1000px;
    }
}
@-moz-keyframes fadein {
    from {
        margin-left: 1000px;
    }
}
.slidein {
    -webkit-animation-name: slidein;
    -moz-animation-name: slidein;
    -o-animation-name: slidein;
    animation-name: slidein;
}
@keyframes marquee {
    0% {
        left: 0;
    }
    20% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}
.marquee {
    animation: marquee 10s linear infinite;
    -webkit-animation-duration: 20s;
    -moz-animation-duration: 10s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 3s;
}
@-webkit-keyframes slidein {
    from {
        margin-left: 800px;
    }
    to {
        margin-top: 0px;
    }
}
@-moz-keyframes slidein {
    from {
        margin-left: 800px;
    }
    to {
        margin-top: 0px;
    }
}
.slideup {
    -webkit-animation-name: slideup;
    -moz-animation-name: slideup;
    -o-animation-name: slideup;
    animation-name: slideup;
}
@-webkit-keyframes slideup {
    from {
        margin-top: 30px;
    }
    to {
        margin-top: 0;
    }
}
@-moz-keyframes slideup {
    from {
        margin-top: 30px;
    }
    to {
        margin-top: 0;
    }
}


/* Below Styling for the SearchBar Component */

.search-bar-container {
    position: relative;
    display: inline-block;
    z-index: 9999;
}

.search-input {
    padding: 8px;
    width: 400px;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 9999;
}

@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);
    z-index: 9999;
}

.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;
    z-index: 9999;
}

.result-item {
    padding: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 0;


    &:hover {
        background-color: #f0f0f0;
    }
}

/* Above Styling for the SearchBar Component */

/*below code in comment is to display a banner*/
/*<div id="breaking-news-container">*/
/*<div id="breaking-news-colour" class="slideup animated">*/

/*</div>*/
/*<span class="breaking-news-title delay-animated slidein">*/
/*// BREAKING //*/
/*</span>*/
/*<a class="breaking-news-headline delay-animated2 fadein marquee">*/
/*                                                                FIFA president says he'll resign amid corruption scandal*/
/*</a>*/
/*</div>*/
/*above is for news banner*/