/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #454545;
    background-color:#ffffff;
}

/* Header styles */
header {
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.logo {
    max-width: 200px; /* Adjust this value as needed */
}

.logo img {
    max-width: 100%;
    height: auto;
}

.logo a {
    text-decoration: none;
    color: #fff; /* Adjust this color as needed */
    font-size: 1rem; /* Adjust this size as needed */
    font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
}

.dropbtn {
    background-color: transparent;
    color: #222;
    padding: 5px 10px;
    font-size: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    color: #FFF;
    background-color: #ff7287f5;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.dropdown-content a {
    font-size: 1.2rem;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: #ede2ff;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.dropdown-content a:hover {
    font-weight: 500;
}

.dropdown-content a.active {
    color: #FFF;
    font-weight: 500;
}
.dropdown-content.show {
    display: flex;
    top: 100px;
    width: 100%;
    height: calc(100vh - 100px);
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    margin: 0 auto;
    max-width: 530px;
    left: 0;
    z-index: 100000;
}

.flag-icon {
    width: 30px;
    height: 18px;
    display: block;
    border-radius: 2px;
}
.flag-icon-es {
    background-image: url(../images/icons/flag-es.svg);
}
.flag-icon-en {
    background-image: url(../images/icons/flag-en.svg);
}
.flag-icon-it {
    background-image: url(../images/icons/flag-it.svg);
}
.flag-icon-de {
    background-image: url(../images/icons/flag-de.svg);
}
.flag-icon-fr {
    background-image: url(../images/icons/flag-fr.svg);
}
.flag-icon-pt {
    background-image: url(../images/icons/flag-pt.svg);
}

.categories {
    display: flex;
    overflow-x: auto;
    padding: 1rem;
    
}

.categories nav::-webkit-scrollbar, .product-slider::-webkit-scrollbar {
    display: none; /* WebKit */
}
.categories nav{
    display: flex;
    overflow-x: auto;
    padding: 0rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}
.categories a {
    white-space: nowrap;
    padding: 4px 15px;
    background-color: #f7f7f7;
    color: #545454;
    text-decoration: none;
    border-radius: 20px;
    margin-right: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}
.categories a.active {
    background-color: #6248ff;
    color: #fff;
}
#sticky-categories {
    position: sticky;
    top: 0; /* Stick to the top of the viewport */
    background-color: var(--background-color);
    z-index: 1000; /* Ensure it's above other content */
    padding: 1rem 0 1rem 5%;
    transition: all 0.3s ease;
}
#sticky-categories {
    top: 0px;
}
#sticky-categories.scrolled {
    padding: 0.5rem 5%;
    background-color: rgba(255, 255, 255, 0.95);
}
.categories:after {
    display: block;
    content: '';
    background: linear-gradient(to right, transparent, white);
    position: absolute;
    width: 50px;
    height: 100%;
    right: 0;
    top: 0;
    backdrop-filter: blur(1.8px);
}
.categories a:last-child {
    margin-right: 50px;
}

/* Main content styles */
main {
    padding: 1rem 1rem 5rem 1rem;
}
#home main {
    padding: 1rem 0rem 5rem 1rem;
}
.category-preview {
    margin-bottom: 1rem;
}

.category-preview h2 {
    margin-bottom: 0.5rem;
}

.product-slider {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.product-card, .product-grid .product-card {
    flex: 0 0 auto;
    width: 140px;
    max-width: 140px;
    height: 200px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.product-grid .product-card {
    /*List page width*/
    width: 31.8%;
}
.product-card.no-image {
    background-color: #3c295c;
}
.product-card .price-option {
    background: transparent !important;
}

.product-card a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 100%;
    z-index: 0;
}

.product-card h3 {
    position: absolute;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: rgb(20,6,41);
    background: -moz-linear-gradient(0deg, rgba(20,6,41,1) 0%, rgba(20,6,41,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(20,6,41,1) 0%, rgba(20,6,41,0) 100%);
    background: linear-gradient(0deg, rgba(20,6,41,1) 0%, rgba(20,6,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FEFCFF",endColorstr="#FEFCFF",GradientType=1);    color: #fff;
    text-align: center;
}

.product-card .price {
    position: absolute;
    padding: 0.2rem 0.5rem 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #fff;
    background-color: #fa4762;
    border-radius: 5px;
    top: 10px;
    right: 10px;
    z-index: 1;
}

#tax-data {
    text-align: center;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.see-more-card {
    flex: 0 0 auto;
    width: 140px;
    height: 200px;
}

/* Utilnav styles */
#utilnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FFFFFF;
    /* background: -moz-linear-gradient(0deg, #ffffff 0%, #00000000 100%);
    background: -webkit-linear-gradient(0deg, #ffffff 0%, #00000000 100%);
    background: linear-gradient(0deg, #ffffff 0%, #00000000 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FEFCFF",endColorstr="#FEFCFF",GradientType=1); */
    max-width: 530px;
    box-shadow: 0px 7px 20px rgba(0, 0, 0, 0.2);
    padding: 0 10px;
    margin: 0 auto;
}

#utilnav nav {
    display: flex;
    justify-content: space-between;
}

#utilnav a {
    text-decoration: none;
    text-transform: uppercase;
    color: #222222;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
    z-index: 1000;
}
#utilnav a:last-child, #utilnav .menu-dropdown a, #utilnav .menu-dropdown-content a {
    border-right: 0;
}

#utilnav a.active {
    font-weight: 500;
}

/*Menus dropdown*/
.menu-dropdown {
    position: relative;
    display: flex;
}
.menu-dropdown-content {
    display: none;
    position: fixed;
    z-index: 100001;
    background: #FFF;
    border-radius: 10px;
    width: auto;
    left: 0rem;
    right: 0;
    bottom: 3rem;
    padding: 20px;
    margin: 10px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.menu-dropdown-content a {
    display: block;
    margin-bottom: 10px;
    padding: 10px;
}

.menu-dropdown:hover .menu-dropdown-content {
    display: block;
}


/* Category page styles */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    flex-wrap: wrap;
}

.product-grid .product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

main h1 {
    padding: 0 0 1rem 0;
    color: #fa4762;
    font-size: 1.2rem;
    line-height: 1.3rem;
}



/* Product page styles */
.product-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f8f8;
}

.back-button {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.back-button i {
    margin-right: 0.5rem;
}



.breadcrumb {
    padding: 1rem;
    background-color: #f0e0d6;
}

.breadcrumb a {
    color: #fa4762;
    text-decoration: none;
}

.product-detail {
    padding: 0rem;
}


.product-images {
    position: relative;
    display: flex;
    overflow-x: auto;
    margin: 0;
}
.swiper-backface-hidden .swiper-slide {
    margin-right: 0 !important;
}

.product-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
}
.product-info .extra-info {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}
.category-link, .product-info .labels {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 0px 15px;
}
.product-info .labels {
    margin-top: 10px;
}
.product-info .spicy-level {
    display: inline-block;
    font-size: 1.2rem;
    margin-left: 0.5rem;
}
.product-info .labels .label {
    padding: 0.2rem 0.8rem 0.2rem 0.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}
.product-info .labels .label.gluten-free {
    color: #8BA738;
}
.product-info .labels .label.vegetarian {
    color: #E0A142;
}
.product-info .labels .label.vegan {
    color: #90A061;
}
.product-info .labels .label.dairy-free {
    color: #633880;
}

.show-prices {
    display: flex;
    gap: 20px;
    justify-content: space-around;

}
.price-option {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
    background: #fa4762;
    padding: 5px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.price-option .description, .price-option .price {
    margin: 0 !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
}

.show-prices .price-option .price{
    font-size: inherit !important;
    font-weight: inherit !important;
    background: transparent !important;
    padding: 0 !important;
    border-radius: inherit !important;
}


.product-detail h1 {
    margin-bottom: 0;
    line-height: 1.5rem;
    font-size: 1.5rem;
    width: 100%;
}

.product-detail .price {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
    background:#fa4762;
    padding: 5px 15px;
    border-radius: 50px;
}

.product-detail .description {
    margin-bottom: 1.2rem;
    width: 100%;
}

.allergens {
    margin-bottom: 1rem;
    width: 100%;
}

.allergens h2 {
    font-size: 1.1rem;
    color: #fa4762;
    margin-bottom: 0.5rem;
}

.allergens ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.allergens li {
    display: flex;
    background-color: #fa476224;
    color: #fa4762;
    color: #FFF;
    padding: 0.2rem 0.8rem 0.2rem 0.5rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    justify-content: center;
    align-items: center;
}
.allergens li.gluten {
    background: #E9CA2D;}
.allergens li.lupins {
    background: #E0A142;}
.allergens li.celery {
    background: #8BA738;}
.allergens li.peanuts {
    background: #B0976D;}
.allergens li.crustaceans {
    background: #984939;}
.allergens li.eggs {
    background: #D3B05A;}
.allergens li.dairy {
    background: #633880;}
.allergens li.corn {
    background: #EFE941;}
.allergens li.molluscs {
    background: #646464;}
.allergens li.mustard {
    background: #DBA21D;}
.allergens li.nuts {
    background: #7A4E38;}
.allergens li.fish {
    background: #298094;}
.allergens li.sesame {
    background: #AE8D54;}
.allergens li.mushrooms {
    background: #B1A289;}
.allergens li.soy {
    background: #90A061;}
.allergens li.sulfites {
    background: #0268B3;}

.allergens li img {
    width: 30px;
}                                                                                                      
.related-products {
    margin-bottom: 100px;
    text-align: center;
}
@media only screen and (min-width: 1200px) {
    .related-products {
        margin-top: 100px;
    }
}

.related-products .wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 0 10px;
}

.related-products .wrapper .product-card {
    width: 115px;
}

.related-products h2 {
    font-size: 1.1rem;
    color: #fa4762;
    margin-bottom: 0.5rem;
}

/* Swiper slider styles */
.swiper-container {
    width: 100%;

}

.swiper-slide {
    width: 720px; /* Match the image width */
    height: 720px; /* Match the image height */
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.swiper-button-next, .swiper-button-prev {
    color: #FFF !important;
    background: #0000006e;
    border-radius: 50px;
    width: 50px !important;
    height: 50px !important;
    padding: 10px;
}
.swiper-button-next:after, .swiper-button-prev:after {font-size:1.5rem !important;}

.swiper-pagination-bullet {
    background-color: #fff !important;
}
.swiper-pagination-bullet-active {
    background-color: #fa4762 !important;
}


/* Linkable category names */
.category-preview h2 a {
    color: #fa4762;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.2rem;
}

.category-preview h2 a:hover {
    color: #fa4762;
}
.category-preview h2 a i {
    font-size: 0.9rem;
}

/* See more card */
.see-more-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ff728714;
    transition: background-color 0.3s ease;
    margin-right: 1rem;
}

.see-more-card:hover {
    background-color: #e0d0c6;
}

.see-more-card a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fa4762;
}

.see-more-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fa4762;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.see-more-icon i {
    color: #fff;
    font-size: 20px;
}

.see-more-card p {
    font-weight: 500;
    text-align: center;
}


.share-button {
    margin-left: 10px;
}

#shareBtn {
    background-color: transparent;
    color: #222222;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

#shareBtn:hover {
    background-color: #fa4762;
}

.info-button {
    margin-left: 10px;
}

.info-button a {
    color: #333;
    font-size: 1.2em;
    text-decoration: none;
}

.info-button a:hover {
    color: #007bff;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 0.9rem;
    text-align: center;
    padding: 2rem 2rem 5rem;
    color: #443c3d;
    gap: 10px;
}
footer a {
    color: #443c3d;
    text-decoration: none;
    font-weight: 500;
}


/* Promotions styles */
.promotions {
    overflow: hidden;
    margin: 0 1rem;
    border-radius: 10px;
}

.promotion-item {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.promotion-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.promotion-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.promotion-item h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #5a2d0c;
}

.promotion-item p {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
}
.promotion-link {
    display: inline-block;
    font-weight: 500;
    color: #fa4762;
    background-color: #FFF;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 10px;
    margin: 10px 0;
}
.promotion-item .product-name {
    font-weight: bold;
    display: block;
    margin-bottom: 0.25rem;
}

.promotion-item .product-price {
    font-weight: bold;
    color: #4CAF50;
}

/* Responsive design for promotions */
@media (min-width: 768px) {
    .promotions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .promotion-item {
        flex: 0 0 calc(50% - 0.5rem);
        margin-bottom: 0;
    }

    .promotion-item.banner {
        flex: 0 0 100%;
    }
}

@media (min-width: 1024px) {
    .promotion-item:not(.banner) {
        flex: 0 0 calc(33.333% - 0.667rem);
    }
}

.promotions-slider {
    width: 100%;
    height: 400px; /* Adjust as needed */
}
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}
.promotion-content {
    color: #fff;
    padding: 1rem 1rem 2rem 1rem;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: rgb(20,6,41);
    background: -moz-linear-gradient(0deg, rgba(20,6,41,1) 0%, rgba(20,6,41,0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(20,6,41,1) 0%, rgba(20,6,41,0) 100%);
    background: linear-gradient(0deg, rgba(20,6,41,1) 0%, rgba(20,6,41,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FEFCFF",endColorstr="#FEFCFF",GradientType=1);    color: #fff;
}
.promotion-content h3 {
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: #FFF;
}
.promotion-content p {
    font-size: 1rem;
    line-height: 1rem;
}

.promotion-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.promotion-link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.promotion-type {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img,
.swiper-slide video {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.preview-media-container {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.preview-image,
.preview-video {
    max-width: 200px;
    max-height: 200px;
}

.delete-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
}


/* Landing Page Styles */
#landing main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Special Buttons */
.special-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
}

.special-button {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fa4762;
    border: 2px solid #fa4762;
    line-height: 1rem;
    padding: 0.6rem 0.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 600;   
    text-transform: uppercase;
}


.special-button i + span{
    margin-left: 0.5rem;
}

.hero {
    margin: 20px 0 40px;
}

/* Google Reviews */
.google-reviews {
    background-color: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.overall-rating {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.review {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
}

.reviewer-name {
    font-weight: bold;
}

.review-rating {
    margin: 0.5rem 0;
}

.review-text {
    font-size: 0.9rem;
}

.leave-review-button a {
    display: block;
    width: 200px;
    margin: 2rem auto 0;
    padding: 1rem;
    background-color: #4285f4;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Opening Hours */
.opening-hours {
    margin: 2rem 0;
}

.opening-hours ul {
    list-style-type: none;
    padding: 0;
}

.opening-hours li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

/* Location Map */
.location-map {
    margin: 2rem 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}
.map-container iframe {width: 100%; height: 300px;}

/* Social Media Links */
.social-media {
    text-align: center;
    margin: 2rem 0;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #fa4762;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    #landing main {
        padding: 1rem;
    }
    /* .special-button {
        width: 100%;
    } */

    .reviews-container {
        flex-direction: column;
    }

    .review {
        flex-basis: 100%;
    }

    .social-icons {
        flex-wrap: wrap;
    }
}

#menu main {text-align: center;}
#menu .price-options{
    margin: 1rem 0;
}
#menu h2 {margin-bottom: 0.5rem; text-transform: uppercase;}
#menu h1 + p {margin-bottom: 1rem;}
#menu .menu-section {margin-bottom: 2rem;}
.booking-button-container {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.booking-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.booking-button:hover {
    background-color: #45a049;
}

.booking-button i {
    margin-right: 10px;
}

/* Adjustments for larger screens */
@media (min-width: 1024px) {
    .reviews-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
     body {
        max-width: 530px;
        margin: 0 auto;
     }
}


.list-style {
    display: flex;
    flex-direction: column;
}
section.list-style + section.list-style {
    margin-top: 50px;
}
.list-style .product-slider {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}
.list-style .product-card, .list-style .product-grid .product-card {
    flex: inherit !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    background-color: transparent !important;
    overflow: unset;
}
.product-card.no-image {
    background-color: transparent !important;
    display: flex;
    padding-left: 0px;
}
	
.list-style .product-card a {
    display: flex;
    width: 100%;
    height: 80px !important;
    text-align: left;
    text-decoration: none;
    align-items: center;
    gap: 10px;
}
.list-style .product-card.no-image a {
    height: auto !important;
    margin-top: 20px;
    justify-content: space-between;
}

.list-style .category-preview {
    margin-bottom: 2rem;
}
.list-style .product-card img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    z-index: 0;
    border-radius: 10px;
}
.list-style .product-card h3 {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 400;
    color: #241a49;
    margin: 0 0 0 10px;
    background: transparent !important;
    width: calc(100% - 170px) !important;
    max-width: 50%;
    position: relative;
    padding: 0;
    text-align: left;
}
#home.list-style .price-option, #category.list-style .price-option{
    font-size: 1.2rem;
    font-weight: 500;
    color: #582afe;
    padding: 0;
    height: 100%;
    align-items: end;
    justify-content: center;
    margin-left: 10px;
    display: flex;
    margin-bottom: 0;
    width: 100px;
    text-align: right;
}
#home.list-style .price-option +.price-option, #category.list-style .price-option +.price-option, #product.list-style .related-products .price-option +.price-option {display: none;}
.list-style .product-card .price {
    display: block;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 500;
    color: #582afe;
    position: relative;
    background: transparent !important;
    padding: 0;
    top: inherit;
    right: inherit;
}
.list-style .see-more-card {
    display: flex;
    background-color: #ff728714 !important;
    transition: background-color 0.3s ease;
    border-radius: 10px;
    margin: 20px 0 0 0 !important;
    width: 100%;
    height: 40px !important;
    padding: 20px;
    overflow: unset;
}
.list-style .product-card a {
    flex-direction: row;
    height: auto;
}
.list-style .product-card a .see-more-icon {
    width: 20px;
    height: 20px;
    margin: 0;
}
.list-style .product-card a i {
    margin: 0;
    font-size: 12px;
}
.list-style#home main{
    padding: 1rem 1rem 5rem 1rem !important; 
}

.list-style .related-products .wrapper {
    flex-direction: column;
}
.list-style .related-products .price-option {
    margin-bottom: 0;
}

#toggleViewBtn {
    background: none;
    border: none;
    color: #222222;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

#toggleViewBtn:hover {
    color: #222222;
}
#toggleViewBtn span {
    color: #222;
    display: block;
    font-size: 10px;
    text-transform: uppercase;
}