.overlay {
    display: none;
}

.best-selling-dishes-section {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
}
.best-selling-dishes-section .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFC107;
}
.best-selling-dishes-section .dishes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}
.best-selling-dishes-section .dish-card {
    background-color: #1E2326;
    border-radius: 10px;
    overflow: hidden;
    width: calc(20% - 16px);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
}
.best-selling-dishes-section .dish-card:hover {
    transform: translateY(-5px);
}
.best-selling-dishes-section .dish-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.best-selling-dishes-section .dish-info {
    padding: 15px;
    text-align: center;
}
.best-selling-dishes-section .dish-name {
    font-size: 1.2em;
    margin-bottom: 5px;
}
.best-selling-dishes-section .dish-description {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 5px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.best-selling-dishes-section .dish-price {
    color: #FF4C30;
    font-weight: bold;
    margin-bottom: 10px;
}
.best-selling-dishes-section .dish-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.best-selling-dishes-section .see-icon,
.best-selling-dishes-section .add-to-cart {
    background-color: #2A3236;
    color: #FFFFFF;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}
.best-selling-dishes-section .see-icon {
    display: flex;
    align-items: center;
}
.best-selling-dishes-section .see-icon i {
    margin-right: 5px;
}
.best-selling-dishes-section .add-to-cart {
    background-color: #FF4C30;
}
.best-selling-dishes-section .see-icon:hover {
    background-color: #3A4246;
}
.best-selling-dishes-section .add-to-cart:hover {
    background-color: #e63a1e;
}
.best-selling-dishes-section .view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 30px auto 0;
    padding: 10px 20px;
    background-color: #FF4C30;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.best-selling-dishes-section .view-all-btn:hover {
    background-color: #e63a1e;
}
.best-selling-dishes-section .view-all-btn i {
    margin-left: 10px;
}
.best-selling-dishes-section .bookmark-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.best-selling-dishes-section .bookmark-btn i {
    color: #333;
}
.best-selling-dishes-section .bookmark-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}
.best-selling-dishes-section .bookmarked {
    background-color: #FFC107;
}
.best-selling-dishes-section .bookmarked i {
    color: #FFFFFF;
}
.best-selling-dishes-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}
.best-selling-dishes-section .dish-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.best-selling-dishes-section .star {
    color: #FFC107;
    font-size: 1.2em;
    margin: 0 2px;
}
.best-selling-dishes-section .in-cart {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}
.best-selling-dishes-section .add-to-cart.in-cart {
    background-color: #4CAF50;
}
.best-selling-dishes-section .add-to-cart.in-cart:hover {
    background-color: #45a049;
}
.item-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.popup-content {
    background-color: #1E2326;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}
.close-popup {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-popup:hover,
.close-popup:focus {
    color: #FFC107;
    text-decoration: none;
    cursor: pointer;
}
#popup-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
#popup-name {
    color: #FFC107;
    margin-bottom: 10px;
}
#popup-description,
#popup-price,
#popup-ingredients,
#popup-calories,
#popup-preparation-time,
#popup-allergens {
    margin-bottom: 10px;
}
#popup-price {
    color: #FF4C30;
    font-weight: bold;
}
@media (max-width: 1200px) {
    .best-selling-dishes-section .dish-card {
        width: calc(25% - 15px);
    }
}
@media (max-width: 992px) {
    .best-selling-dishes-section .dish-card {
        width: calc(33.33% - 13.33px);
    }
}
@media (max-width: 768px) {
    .best-selling-dishes-section .dish-card {
        width: calc(50% - 10px);
    }
}
@media (max-width: 480px) {
    .best-selling-dishes-section .dish-card {
        width: 100%;
    }
}
.dishes-container .dish-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.dishes-container .dish-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    margin: 100px;
}
.item-popup .popup-content #popup-image {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.dish-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.4em; /* Adjust based on your line-height */
    line-height: 1.2em; /* Adjust as needed */
}

/*.best-selling-dishes-section {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
}
.best-selling-dishes-section .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFC107;
}
.best-selling-dishes-section .dishes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}
.best-selling-dishes-section .dish-card {
    background-color: #1E2326;
    border-radius: 10px;
    overflow: hidden;
    width: calc(20% - 16px);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    position: relative;
}
.best-selling-dishes-section .dish-card:hover {
    transform: translateY(-5px);
}
.best-selling-dishes-section .dish-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.best-selling-dishes-section .dish-info {
    padding: 15px;
    text-align: center;
}
.best-selling-dishes-section .dish-name {
    font-size: 1.2em;
    margin-bottom: 5px;
}
.best-selling-dishes-section .dish-description {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 5px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.best-selling-dishes-section .dish-price {
    color: #FF4C30;
    font-weight: bold;
    margin-bottom: 10px;
}
.best-selling-dishes-section .dish-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}
.best-selling-dishes-section .see-icon,
.best-selling-dishes-section .add-to-cart {
    background-color: #2A3236;
    color: #FFFFFF;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}
.best-selling-dishes-section .see-icon {
    display: flex;
    align-items: center;
}
.best-selling-dishes-section .see-icon i {
    margin-right: 5px;
}
.best-selling-dishes-section .add-to-cart {
    background-color: #FF4C30;
}
.best-selling-dishes-section .see-icon:hover {
    background-color: #3A4246;
}
.best-selling-dishes-section .add-to-cart:hover {
    background-color: #e63a1e;
}
.best-selling-dishes-section .view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 30px auto 0;
    padding: 10px 20px;
    background-color: #FF4C30;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.best-selling-dishes-section .view-all-btn:hover {
    background-color: #e63a1e;
}
.best-selling-dishes-section .view-all-btn i {
    margin-left: 10px;
}
.best-selling-dishes-section .bookmark-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.best-selling-dishes-section .bookmark-btn i {
    color: #333;
}
.best-selling-dishes-section .bookmark-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}
.best-selling-dishes-section .bookmarked {
    background-color: #FFC107;
}
.best-selling-dishes-section .bookmarked i {
    color: #FFFFFF;
}
.best-selling-dishes-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}
.best-selling-dishes-section .dish-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.best-selling-dishes-section .star {
    color: #FFC107;
    font-size: 1.2em;
    margin: 0 2px;
}
.best-selling-dishes-section .in-cart {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}
.best-selling-dishes-section .add-to-cart.in-cart {
    background-color: #4CAF50;
}
.best-selling-dishes-section .add-to-cart.in-cart:hover {
    background-color: #45a049;
}
.item-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.popup-content {
    background-color: #1E2326;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}
.close-popup {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-popup:hover,
.close-popup:focus {
    color: #FFC107;
    text-decoration: none;
    cursor: pointer;
}
#popup-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}
#popup-name {
    color: #FFC107;
    margin-bottom: 10px;
}
#popup-description,
#popup-price,
#popup-ingredients,
#popup-calories,
#popup-preparation-time,
#popup-allergens {
    margin-bottom: 10px;
}
#popup-price {
    color: #FF4C30;
    font-weight: bold;
}
@media (max-width: 1200px) {
    .best-selling-dishes-section .dish-card {
        width: calc(25% - 15px);
    }
}
@media (max-width: 992px) {
    .best-selling-dishes-section .dish-card {
        width: calc(33.33% - 13.33px);
    }
}
@media (max-width: 768px) {
    .best-selling-dishes-section .dish-card {
        width: calc(50% - 10px);
    }
}
@media (max-width: 480px) {
    .best-selling-dishes-section .dish-card {
        width: 100%;
    }
}*/

/* Best selling section */
/*.best-selling-dishes-section {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
    padding-top: 20px; !* Add some padding to the top *!
    padding-bottom: 20px; !* Add some padding to the bottom *!
}

.best-selling-dishes-section::before,
.best-selling-dishes-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}

.best-selling-dishes-section::before {
    top: 0;
}

.best-selling-dishes-section::after {
    bottom: 0;
}

.best-selling-dishes-section .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFC107;
}

.best-selling-dishes-section .dishes-container {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 20px;
}

.best-selling-dishes-section .dish-card {
    background-color: #1E2326;
    border-radius: 10px;
    overflow: hidden;
    width: calc(20% - 16px);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.best-selling-dishes-section .dish-card:hover {
    transform: translateY(-5px);
}

.best-selling-dishes-section .dish-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.best-selling-dishes-section .dish-info {
    padding: 15px;
    text-align: center;
}

.best-selling-dishes-section .dish-name {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.best-selling-dishes-section .dish-description {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 5px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.best-selling-dishes-section .dish-price {
    color: #FF4C30;
    font-weight: bold;
    margin-bottom: 10px;
}

.best-selling-dishes-section .dish-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.best-selling-dishes-section .see-icon,
.best-selling-dishes-section .add-to-cart {
    background-color: #2A3236;
    color: #FFFFFF;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}

.best-selling-dishes-section .see-icon {
    display: flex;
    align-items: center;
}

.best-selling-dishes-section .see-icon i {
    margin-right: 5px;
}

.best-selling-dishes-section .add-to-cart {
    background-color: #FF4C30;
}

.best-selling-dishes-section .see-icon:hover {
    background-color: #3A4246;
}

.best-selling-dishes-section .add-to-cart:hover {
    background-color: #e63a1e;
}

.best-selling-dishes-section .view-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 30px auto 0;
    padding: 10px 20px;
    background-color: #FF4C30;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.best-selling-dishes-section .view-all-btn:hover {
    background-color: #e63a1e;
}

.best-selling-dishes-section .view-all-btn i {
    margin-left: 10px;
}

.best-selling-dishes-section .bookmark-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.best-selling-dishes-section .bookmark-btn i {
    color: #333;
}

.best-selling-dishes-section .bookmark-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.best-selling-dishes-section .bookmarked {
    background-color: #FFC107;
}

.best-selling-dishes-section .bookmarked i {
    color: #FFFFFF;
}

.best-selling-dishes-section .dish-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.best-selling-dishes-section .star {
    color: #FFC107;
    font-size: 1.2em;
    margin: 0 2px;
}

.best-selling-dishes-section .in-cart {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #4CAF50;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
}

.best-selling-dishes-section .add-to-cart.in-cart {
    background-color: #4CAF50;
}

.best-selling-dishes-section .add-to-cart.in-cart:hover {
    background-color: #45a049;
}

@media (max-width: 1200px) {
    .best-selling-dishes-section .dish-card {
        width: calc(25% - 15px);
    }
}

@media (max-width: 992px) {
    .best-selling-dishes-section .dish-card {
        width: calc(33.33% - 13.33px);
    }
}

@media (max-width: 768px) {
    .best-selling-dishes-section .dishes-container {
        justify-content: center;
        padding-left: 0;
    }

    .best-selling-dishes-section .dish-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .best-selling-dishes-section .dishes-container {
        justify-content: center;
    }

    .best-selling-dishes-section .dish-card {
        width: 100%;
        max-width: 300px;
    }
}*/

.item-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.popup-content {
    background-color: #1E2326;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

.close-popup {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-popup:hover,
.close-popup:focus {
    color: #FFC107;
    text-decoration: none;
    cursor: pointer;
}

#popup-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

#popup-name {
    color: #FFC107;
    margin-bottom: 10px;
}

#popup-description,
#popup-price,
#popup-ingredients,
#popup-calories,
#popup-preparation-time,
#popup-allergens {
    margin-bottom: 10px;
}

#popup-price {
    color: #FF4C30;
    font-weight: bold;
}

/* Meal of the Week Section */
/* Meal of the Week Section */
.meal-of-the-week {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
}

.meal-of-the-week::before,
.meal-of-the-week::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}

.meal-of-the-week::before {
    top: 0;
}

.meal-of-the-week::after {
    bottom: 0;
}

.meal-of-the-week .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFC107;
}

.meal-of-the-week .daily-offer {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 20px auto;
    background-color: #1E2326;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.meal-of-the-week .offer-image {
    flex: 1;
    max-width: 50%;
}

.meal-of-the-week .offer-image img {
    width: 100%;
    height: auto;
    display: block;
}

.meal-of-the-week .offer-details {
    flex: 1;
    padding: 20px;
}

.meal-of-the-week .offer-tag {
    color: #FF4C30;
    font-weight: bold;
    margin-bottom: 10px;
}

.meal-of-the-week .offer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFC107;
}

.meal-of-the-week .offer-description {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.meal-of-the-week .dish-actions {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.meal-of-the-week .see-icon,
.meal-of-the-week .add-to-cart,
.meal-of-the-week .bookmark-btn {
    background-color: #2A3236;
    color: #FFFFFF;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9em;
}

.meal-of-the-week .see-icon:hover,
.meal-of-the-week .add-to-cart:hover,
.meal-of-the-week .bookmark-btn:hover {
    background-color: #3A4246;
}

.meal-of-the-week .add-to-cart {
    background-color: #FF4C30;
}

.meal-of-the-week .add-to-cart:hover {
    background-color: #e63a1e;
}

/* New styles for bookmarked state */
.meal-of-the-week .bookmark-btn.bookmarked {
    background-color: #FFC107;
    color: #0A0E0D;
}

.meal-of-the-week .bookmark-btn.bookmarked:hover {
    background-color: #FFD54F;
}

.meal-of-the-week .product-info {
    background-color: #2A3236;
    border-radius: 5px;
    padding: 10px;
    margin-top: 20px;
}

.meal-of-the-week .product-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #FFC107;
}

.meal-of-the-week .product-rating {
    color: #FFC107;
    margin-bottom: 5px;
}

.meal-of-the-week .product-details {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.meal-of-the-week .product-price {
    font-weight: bold;
    margin-top: 5px;
}

.meal-of-the-week .original-price {
    text-decoration: line-through;
    color: #888;
    margin-right: 10px;
}

.meal-of-the-week .discounted-price {
    color: #FF4C30;
}

/* Responsive design for Meal of the Week section */
@media (max-width: 768px) {
    .meal-of-the-week .daily-offer {
        flex-direction: column;
    }

    .meal-of-the-week .offer-image {
        max-width: 100%;
    }

    .meal-of-the-week .offer-details {
        padding: 20px;
    }
}

/* Chefs Section */
.chefs-section {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
}

.chefs-section::before,
.chefs-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}

.chefs-section::before {
    top: 0;
}

.chefs-section::after {
    bottom: 0;
}

.chefs-section .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFC107;
}

.chefs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.chef-card {
    background-color: #1E2326;
    border-radius: 10px;
    overflow: hidden;
    width: calc(33.33% - 20px);
    min-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.chef-card:hover {
    transform: translateY(-5px);
}

.chef-image {
    width: 100%;
    height: 350px;
    object-fit: fill;
}

.chef-name {
    font-size: 1.5em;
    margin: 15px 0 5px;
    text-align: center;
    color: #FFC107;
}

.chef-specialty {
    font-size: 1em;
    color: #FF4C30;
    text-align: center;
    margin-bottom: 10px;
}

.chef-description {
    font-size: 0.9em;
    color: #888;
    text-align: center;
    padding: 0 15px;
    margin-bottom: 15px;
}

.chef-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-bottom: 15px;
}

.social-icon {
    color: #FFC107;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #FF4C30;
}

@media (max-width: 992px) {
    .chef-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .chef-card {
        width: 100%;
    }
}

/* Working Hours Section */
.working-hours-section {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
}

.working-hours-section::before,
.working-hours-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}

.working-hours-section::before {
    top: 0;
}

.working-hours-section::after {
    bottom: 0;
}

.working-hours-section .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFC107;
}

.hours-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #1E2326;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.day-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #2A3236;
}

.day-row:last-child {
    border-bottom: none;
}

.day-icon {
    font-size: 1.2em;
    margin-right: 10px;
}

.day-name {
    flex: 1;
    font-weight: bold;
}

.day-hours {
    color: #FF4C30;
}

.contact-us-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 30px auto 0;
    padding: 10px 20px;
    background-color: #FF4C30;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-us-btn:hover {
    background-color: #e63a1e;
}

.contact-us-btn i {
    margin-left: 10px;
}

@media (max-width: 768px) {
    .hours-container {
        padding: 15px;
    }

    .day-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
    }

    .day-icon {
        margin-bottom: 5px;
    }

    .day-name {
        margin-bottom: 5px;
    }
}

/* Updated styles for the Achievements section */
.achievements-section {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
}

.achievements-section::before,
.achievements-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}

.achievements-section::before {
    top: 0;
}

.achievements-section::after {
    bottom: 0;
}

.achievements-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.achievements-title {
    font-size: 1.2em;
    color: #FFC107;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 10px;
    background-color: #FF4C30;
    border-radius: 5px;
}

.achievements-subtitle {
    font-size: 2.2em;
    color: #FFFFFF;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements-description {
    font-size: 1.1em;
    color: #CCCCCC;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
}

.subtitle-underline {
    height: 2px;
    background-color: #FFFFFF;
    margin-bottom: 30px;
    width: 100%;
}

.achievements-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.achievement-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.achievement-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #FFC107;
}

.achievement-number {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.achievement-label {
    font-size: 1em;
    color: #CCCCCC;
}

@keyframes countUp {
    from {
        content: "0";
    }
    to {
        content: attr(data-target);
    }
}

@media (max-width: 768px) {
    .achievements-subtitle {
        font-size: 1.8em;
    }

    .achievement-item {
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .achievements-subtitle {
        font-size: 1.5em;
    }

    .achievement-item {
        flex-basis: 100%;
    }

    .achievement-number {
        font-size: 1.8em;
    }
}

/* Contact Us Section */
.contact-us-section {
    font-family: Arial, sans-serif;
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
    overflow-x: hidden;
}

.contact-us-section::before,
.contact-us-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}

.contact-us-section::before {
    top: 0;
}

.contact-us-section::after {
    bottom: 0;
}

.contact-us-section .section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #FFC107;
}

.contact-us-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.contact-item {
    flex: 1 1 250px;
    max-width: 300px;
    min-width: 0;
    background-color: #1E2326;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5em;
    color: #FFC107;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 1.2em;
    color: #FF4C30;
    margin-bottom: 10px;
}

.contact-text {
    font-size: 1em;
    color: #F5F5F5;
    word-wrap: break-word;
}

@media (max-width: 1200px) {
    .contact-us-container {
        justify-content: space-around;
    }

    .contact-item {
        flex-basis: calc(50% - 40px);
        max-width: none;
    }
}

@media (max-width: 768px) {
    .contact-us-section .section-title {
        font-size: 2em;
    }

    .contact-us-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contact-item {
        width: 100%;
        max-width: 400px;
        flex-basis: auto;
    }
}

@media (max-width: 480px) {
    .contact-us-section .section-title {
        font-size: 1.8em;
    }

    .contact-icon {
        font-size: 2.2em;
    }

    .contact-title {
        font-size: 1.1em;
    }

    .contact-text {
        font-size: 0.9em;
    }
}

/* Testimonials section specific styles */
.testimonials-section {
    background-color: #0A0E0D;
    color: #F5F5F5;
    padding: 40px 20px;
    position: relative;
}
.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-image: linear-gradient(to right, white 50%, transparent 50%);
    background-size: 20px 100%;
    background-repeat: repeat-x;
}
.testimonials-section::before {
    top: 0;
}
.testimonials-section::after {
    bottom: 0;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-section h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #FFC107;
}
.subtitle {
    text-align: center;
    color: #888;
    font-size: 1em;
    margin-bottom: 40px;
}
.testimonials-container {
    overflow: hidden;
    margin-bottom: 30px;
}
.testimonials {
    display: flex;
    transition: transform 0.5s ease;
}
.card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #1E2326;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin: 0 10px;
}
.card.middle {
    background-color: #2A3236;
    transform: translateY(-10px);
    position: relative;
}
.card.middle::before {
    content: '"';
    position: absolute;
    top: -30px;
    left: 20px;
    font-size: 5em;
    color: #FF4C30;
    font-family: Georgia, serif;
    line-height: 1;
}
.card h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #FFC107;
}
.card p {
    color: #F5F5F5;
    line-height: 1.6;
    margin-bottom: 15px;
}
.author {
    display: flex;
    align-items: center;
}
.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}
.author-info {
    font-size: 0.9em;
}
.author-name {
    font-weight: bold;
    display: block;
    color: #FFC107;
}
.author-date {
    color: #888;
}
.cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.more-btn {
    background-color: #FF4C30;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
}
.more-btn:hover {
    background-color: #e63a1e;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dot {
    width: 10px;
    height: 10px;
    background-color: #2A3236;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.dot.active {
    background-color: #FF4C30;
}
.navigation {
    display: flex;
    align-items: center;
}
.nav-arrow {
    background: none;
    border: none;
    color: #F5F5F5;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0 10px;
    transition: color 0.3s ease;
}
.nav-arrow:hover {
    color: #FF4C30;
}
@media (max-width: 1024px) {
    .card {
        flex: 0 0 calc(100% - 20px);
    }
    .card.middle {
        transform: none;
    }
}