.foodAndBeveragesContainer {
    font-family: var(--inter-font);
}

.foodAndBeveragesContainer :where(.banner, .banner img) {
    background-color: #f05f17;
}

.foodAndBeveragesContainer .banner {
    background-image: url("/images/foodAndBeverages/backgroundImage.svg");
    background-repeat: repeat-x;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.foodAndBeveragesContainer .banner h1 {
    color: var(--white-clr);
    margin-inline: auto;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--poppins-font);
}

.foodAndBeveragesContainer .filter {
    width: fit-content;
    display: none;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    border-radius: 20px;
    padding: 15px 20px;
    background-color: var(--white-clr);
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #0000000f inset;
    font-family: var(--poppins-font);
    margin-bottom: -10px;
}

.foodAndBeveragesContainer .filter img {
    width: 18px;
}

.foodAndBeveragesContent {
    padding: 70px 5% 40px;
    background: #f4861f0f;
    display: flex;
    gap: 30px;
}

.contentItem.left {
    min-width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 70px;
    height: fit-content;
}

.contentItem .rating,
.contentItem .categories {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 20px;
    border: 1px solid #f05f17;
    width: 100%;
    border-radius: 20px;
    background-color: var(--white-clr);
}

.contentItem .rating h4,
.contentItem .categories h4 {
    font-weight: 600;
}

.contentItem .rating .image {
    max-width: 260px;
}

.contentItem .rating .image img {
    width: 100%;
    opacity: 0.44;
}

.contentItem .categories button {
    padding-inline: 30px;
    font-size: 14px;
}

.reviewsList,
.sublist,
.sublist .subItem,
.reviewCard .cardItem,
.accoridian,
.accoridian .accoridianItem,
.accoridian .accoridianItem .contact,
.reviewProfile {
    display: flex;
}

.subDetail {
    background-color: var(--white-clr);
    border-radius: 20px;
    padding: 15px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0px 4px 4px 0px #0000000f inset;
}

.contentItem .subDetail > h4 {
    padding-inline: 12px;
    font-weight: 600;
}

.subDetail section {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 50px;
    border-radius: 10px;
    appearance: none;
    font-family: var(--inter-font);
    box-shadow: 0px 4px 4px 0px #0000000f inset;
    background-color: #fff2e6;
    cursor: pointer;
}

.subDetail .dropdown select {
    appearance: none;
    font-family: var(--inter-font);
    width: 100%;
    height: 100%;
    padding: 15px;
    background-color: transparent;
    position: relative;
    display: flex;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    cursor: pointer;
    font-size: clamp(13px, 1vw, 17px);
    font-weight: 300;
}

.subDetail .dropdown::after {
    content: "";
    position: absolute;
    top: 0;
    right: 15px;
    width: 18px;
    height: 100%;
    background: url("/images/footer/downArrow.svg") no-repeat center center;
    background-size: contain;
    cursor: pointer;
    pointer-events: none;
    transition: 0.25s all ease;
}

.subDetail .subItem {
    padding: 15px;
}

.subDetail .subItem h4 {
    font-weight: 300;
}

.subDetail .subItem input {
    height: 100%;
    background-color: transparent;
    font-size: clamp(13px, 1vw, 17px);
    font-weight: 300;
}

.subDetail .subItem input::placeholder {
    color: #000000;
}

.subDetail .subItem img,
.subDetail .subItem input[type="radio"] {
    width: 23px;
    height: 23px;
}

.subDetail .subItem input[type="radio"] {
    color: rgba(94, 94, 94, 1);
    accent-color: rgba(240, 95, 23, 1);
    display: none;
    cursor: pointer;
}

.subDetail .subItem label {
    position: relative;
    padding-left: 23px;
    cursor: pointer;
    transition: color 0.3s;
    cursor: pointer;
}

.subDetail .subItem label:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #f05f17;
    background-color: transparent;
    transition: background-color 0.3s;
}

.subDetail .subItem input[type="radio"]:checked + label:before {
    background: #f05f17;
}

.relatedCategories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.relatedCategories li {
    border-radius: 20px;
    padding: 20px 25px;
    background-color: var(--white-clr);
    cursor: pointer;
    box-shadow: 0px 4px 4px 0px #0000000f inset;
}

.contentItem .categories {
    background-color: #f05f17;
    color: var(--white-clr);
}

.contentItem .categories button {
    background-color: var(--white-clr);
    color: var(--black-clr);
}

.contentItem.right {
    width: 100%;
}

.reviewsList {
    flex-direction: column;
    gap: 20px;
}

.reviewsList .reviewsItem {
    background-color: var(--white-clr);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0px 4px 4px 0px #0000000f inset;
}

.sublist,
.accoridian {
    gap: 15px;
    justify-content: space-between;
}

.reviewsItem,
.reviewsItem .subItem {
    gap: 20px;
}

.reviewsItem .subItem .subItemImage {
    max-width: 130px;
    min-width: 80px;
}

.reviewsItem .subItem .subItemImage img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.reviewsItem .subItem .mainContent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 7px;
    padding-top: 10px;
}

.reviewsItem .subItem .mainContent h5 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviewCard {
    border: 1px solid #f05f17;
    box-shadow: 0px 4px 4px 0px #00000017 inset;
    padding: 15px;
    border-radius: 10px;
    max-width: 380px;
}

.reviewCard .ratingImages img {
    max-width: 100%;
}

.reviewCard .ratingImages.rating-1 img {
    max-width: calc(380px - 335px);
}

.reviewCard .ratingImages.rating-2 img {
    max-width: calc(380px - 275px);
}

.reviewCard .ratingImages.rating-3 img {
    max-width: calc(380px - 210px);
}

.reviewCard .ratingImages.rating-4 img {
    max-width: calc(380px - 150px);
}

.reviewCard img {
    width: 100%;
}

.reviewCard .cardItem h2 span {
    font-size: clamp(10px, 2vw, 13px);
}

.reviewCard .cardItem h2 span:nth-child(1) {
    color: var(--black-clr);
    font-weight: 700;
}

.accoridianContainer,
.accoridianContentCTR {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accoridian {
    box-shadow: 0px 4px 4px 0px #0000000f inset;
    background-color: #fff2e6;
    padding: 10px 15px;
    border-radius: 13px;
    margin-top: 15px;
}

.accoridianItem {
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.accoridianItem .contact {
    gap: 5px;
    margin-right: 20px;
}

.accoridianItem .contact section {
    width: 35px;
    height: 35px;
    padding: 8px;
    border-radius: 50%;
    background-color: #f05f17;
}

.accoridianItem .contact section img {
    width: 100%;
    height: 100%;
}

.accoridianItem:last-child h5 {
    font-weight: 800;
}

/* Hide accordion content by default */
.accoridianContentCTR {
    display: none;
    /* Or max-height: 0; overflow: hidden; if you are animating it */
}

/* Show it when the JavaScript adds the 'active' class */
.accoridianContentCTR.active {
    display: block;
}

/* Optional: Rotate the down arrow when active */
.accoridian.active img[alt="Toggle"] {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.accoridianContent {
    border-bottom: 1px solid #f05f17;
    padding-bottom: 15px;
    padding-top: 15px;
}

.accoridianContent:last-child {
    border-bottom: 0px;
    padding-bottom: 5px;
}

.reviewProfile {
    gap: 15px;
    align-items: center;
}

.reviewProfile .profile {
    max-width: 41px;
    min-width: 30px;
}

.reviewProfile .profile img {
    width: 100%;
    aspect-ratio: 1/1;
}

.profileContent h2 {
    font-size: clamp(18px, 2vw, 25px);
}

.profileContent h6 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.reviewProfile .rate {
    max-width: 190px;
    margin-left: 20px;
}

.reviewProfile .rate img {
    width: 100%;
}

.reviewProfile h5 {
    margin-left: auto;
    white-space: nowrap;
}

.description {
    margin-top: 10px;
    line-height: 130%;
}

@media screen and (max-width: 1200px) {
    .foodAndBeveragesContainer .filter {
        display: flex;
    }

    .foodAndBeveragesContent {
        flex-direction: column;
    }

    .contentItem.left {
        display: none;
        position: initial;
    }
}

@media screen and (max-width: 768px) {
    .foodAndBeveragesContent {
        padding: 40px 5% 10px;
    }

    .sublist {
        flex-direction: column;
    }

    .reviewsItem .subItem {
        gap: 10px;
    }

    .reviewsItem .subItem .subItemImage {
        max-width: 100px;
    }

    .reviewsItem .subItem .mainContent h1 {
        font-size: 25px;
    }

    .accoridianItem:first-child h5 {
        display: none;
    }

    .reviewProfile {
        gap: 10px;
    }

    .reviewProfile .rate {
        margin-left: 0px;
    }
}

/* Update this block so the SVG is centered and takes up the top space */
.reviewCard .ratingImages {
    display: flex;
    align-items: center;
    justify-content: center; /* Changed from 'right' to 'center' */
    width: 100%;
    margin-bottom: 20px; /* Gives space between eggs and text */
}

/* Update the layout for the text and button row */
.reviewCard .cardItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Adjust the typography to perfectly match the screenshot */
.reviewCard .cardItem h2 {
    display: flex;
    align-items: center;
    gap: 6px; /* Spacing between the numbers and the divider */
}

.reviewCard .cardItem h2 .ratingNumber {
    font-weight: 500;
    font-size: clamp(20px, 2.5vw, 28px); /* slightly larger for emphasis */
    color: #f05f17;
}

.reviewCard .cardItem h2 .reviewLabelBlack {
    font-size: clamp(12px, 2vw, 15px);
    color: var(--black-clr);
    font-weight: 700;
}

.reviewCard .cardItem h2 .divider {
    color: #cecece; /* Gives the subtle gray pipe between sections */
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
}

.reviewCard .cardItem h2 .reviewCount {
    font-size: clamp(16px, 2vw, 22px);
    color: #f05f17;
    font-weight: 500;
}

.reviewCard .cardItem h2 .reviewLabelOrange {
    font-size: clamp(12px, 2vw, 15px);
    color: #f05f17;
    font-weight: 400;
}

/* Styling the EXCELLENT button to look bolder */
.reviewCard .cardItem button {
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 8px 16px;
    background-color: var(--white-clr);
    color: var(--black-clr);
    border: 2px solid #333; /* Dark border from screenshot */
    box-shadow: 2px 3px 0px 0px #333; /* Adds that nice offset shadow effect */
}
