:root {
    --dark: #0A0B0A;
    --orange: #FF8500;
    --orange-light: #FF9F0D;
    --blue-dark: #042349;
    --white: #F6F6F6;
    --gray-light: #f5f5f5;
    --gray: rgba(77, 77, 77, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-light);
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--dark);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

.text-dark {
    color: var(--dark) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.header-desktop {
    background-color: var(--white);
    padding: 10px 0;
}

.header-desktop .navbar {
    padding: 0;
}

.header-desktop .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-desktop .logo {
    height: 65px;
    width: auto;
}

.header-desktop .nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-desktop .navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-desktop .nav-link {
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.header-desktop .nav-link:hover {
    color: var(--orange);
}

.header-desktop .nav-link.active {
    background-color: var(--orange);
    color: var(--white);
}

.header-desktop .nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-desktop .search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--orange);
    border-radius: 25px;
    overflow: hidden;
    padding: 3px;
    padding-left: 15px;
}

.header-desktop .search-box input {
    font-size: 12px;
    width: 130px;
    padding: 3px 0;
    outline: none;
    border: none;
    box-shadow: none;
}

.header-desktop .search-box input::placeholder {
    color: #aaa;
}

.header-desktop .search-box .search-btn {
    background-color: var(--orange);
    border: none;
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.header-desktop .search-box .search-btn:hover {
    background-color: var(--orange-light);
}

.header-desktop .btn-cart {
    background-color: var(--orange);
    font-size: 14px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.header-desktop .btn-cart:hover {
    background-color: var(--orange-light);
    color: var(--white);
}

.cart-count-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 25px;
    height: 25px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    color: var(--white);
    background-color: var(--blue-dark);
    border-radius: 12px;
    border: 1px solid var(--white);
}

[dir="rtl"] .cart-count-badge {
    left: unset ;
    right: -4px;
}

.mobile-bottom-nav .cart-count-badge {
    top: -2px;
    right: calc(50% - 11px);    
    width:20px;
    height:20px;
    border-radius: 9px;

}

[dir="rtl"] .mobile-bottom-nav .cart-count-badge {
    right: unset;
    left: calc(50% + 5px);
}

.header-mobile {
    background-color: var(--white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-mobile .mobile-top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    background-color: var(--white);
}

.header-mobile .logo {
    height: 50px;
    width: auto;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 14px 0 14px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray);
    font-size: 11px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav-item.active {
    color: var(--orange);
}

.mobile-nav-item:hover {
    color: var(--orange);
}

.mobile-nav-item img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    transition: filter 0.3s ease;
    /* Gray filter approximately matching var(--gray) #3a3a3a */
    filter: invert(21%) sepia(12%) saturate(14%) hue-rotate(352deg) brightness(94%) contrast(92%);
}

.mobile-nav-item.active img,
.mobile-nav-item:hover img {
    /* Orange filter approximately matching var(--orange) #FF8500 */
    filter: invert(61%) sepia(69%) saturate(2462%) hue-rotate(1deg) brightness(103%) contrast(104%);
}

.mobile-menu-offcanvas {
    width: 100% !important;
    max-width: 100% !important;
    background-color: var(--gray-light);
}

.mobile-menu-offcanvas .offcanvas-body {
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    min-height: min-content;
    flex: 1 0 auto;
}

.mobile-menu-content .btn-back {
    background-color: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-content .btn-back:hover {
    background-color: var(--orange);
    color: var(--white);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

.mobile-menu-list li {
    margin-bottom: 20px;
}

.mobile-menu-list li a {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu-list li a:hover {
    color: var(--orange);
}

.mobile-language-switcher {
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.mobile-language-switcher .btn-group {
    display: flex;
    gap: 10px;
}

.mobile-language-switcher .btn-group .btn {
    flex: 1;
    min-width: 0;
}

.mobile-language-switcher .btn{
    padding: 10px 20px;
}

.mobile-search-box {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 25px;
    overflow: hidden;
    padding: 3px;
    padding-inline-start: 15px;
    width: 100%;
    max-width: 300px;
    margin: 30px 0;
}

.mobile-search-box input {
    outline: none;
    border: none;
    box-shadow: none !important;
    font-size: 14px;
    flex: 1;
    padding: 12px 0;
}

.mobile-search-box input::placeholder {
    color: #aaa;
}

.mobile-search-box .search-btn {
    background-color: var(--orange);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-search-box .search-btn:hover {
    background-color: var(--orange-light);
}

.mobile-social-links {
    display: flex;
    gap: 5px;
    margin: 80px 0;
}

.mobile-social-links .social-link {
    width: 45px;
    height: 45px;
    border: 1px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 18px;
    transition: all 0.3s ease;
}

.mobile-social-links .social-link:hover {
    background-color: var(--orange);
    color: var(--white);
}

.mobile-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    width: 100%;
}

.mobile-footer .copyright {
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 15px;
}

.mobile-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.mobile-footer .footer-links a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-footer .footer-links a:hover {
    color: var(--orange);
}

@media (max-width: 991.98px) {
    body {
        padding-top: 60px;
        padding-bottom: 70px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .header-desktop .nav-link {
        font-size: 12px;
        padding: 6px 8px;
    }

    .header-desktop .search-box input {
        width: 100px;
    }

    .header-desktop .btn-cart {
        font-size: 12px;
        padding: 8px 15px;
    }
}

.hero-section {
    padding: 15px 0 60px;
}

.hero-image-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.todays-special-section {
    padding: 20px 0 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    color: var(--orange);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.special-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.special-item {
    position: relative;
    height: 100%;
}

.special-item-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 18px;
}

.special-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.special-item:hover .special-item-image img {
    transform: scale(1.05);
}

.special-item-content {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--white);
    padding: 6px 6px 6px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 10px;
}

/* Curved notch effect on the top-right of image */
.special-item-content::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 18px;
    height: 30px;
    background: transparent;
    border-bottom-right-radius: 20px;
    box-shadow: 10px 10px 0 10px var(--white);
}

/* Curved notch effect on the left side */
.special-item-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 100%;
    width: 30px;
    height: 18px;
    background: transparent;
    border-bottom-right-radius: 20px;
    box-shadow: 10px 10px 0 10px var(--white);
}

.special-item-title {
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: var(--blue-dark);
    z-index: 888;
}

.special-item-btn {
    width: 40px;
    height: 25px;
    min-width: 40px;
    background-color: var(--orange);
    border-radius: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 55;
    color: var(--white);
}

.special-item-btn:hover {
    background-color: var(--orange);
    color: var(--white);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 15px 0 20px;
    }

    .hero-image-wrapper {
        border-radius: 15px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .special-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .special-item-title {
        font-size: 14px;
    }

    .special-item-btn {
        width: 35px;
        height: 28px;
        min-width: 30px;
    }

    /* .special-item-content {
        padding: 8px 8px 8px 15px;
        gap: 8px;
        border-top-left-radius: 35px;
    } */

    .special-item-content::before,
    .special-item-content::after {
        width: 20px;
        height: 20px;
        box-shadow: 8px 8px 0 8px var(--white);
    }
}

@media (max-width: 600px) {
    .special-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .special-item-image {
        max-height: 250px;
    }
}

.top-meals-section {
    padding: 0 0 60px;
}

.top-meals-hero {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
}

.top-meals-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.top-meals-section .section-header {
    margin-bottom: 50px;
}

.btn-more-meals {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: var(--orange);
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 6px 20px 6px 20px;
    border-radius: 30px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-more-meals:hover {
    background-color: var(--orange);
    color: var(--white);
}

.btn-more-meals .btn-more-icon {
    width: 32px;
    height: 32px;
    background-color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-more-meals:hover .btn-more-icon {
    background-color: var(--white);
    color: var(--orange);
}

.meals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.meals-grid.v2 {
    grid-template-columns: repeat(3, 1fr);
}

.meal-card {
    background: linear-gradient(to top, #fadfc6 0%, #FBF7F0 50%, #F6F6F6 100%);
    border-radius: 20px;
    padding: 25px 20px 30px;
    text-align: center;
    position: relative;
}

.meal-card-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 25px;
}

.meal-card-arc {
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 230px;
    height: auto;
    z-index: 1;
}

.meal-card-image {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: none;
}

.meal-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meal-card-price {
    position: absolute;
    bottom: -5px;
    right: 40px;
    width: 65px;
    height: 65px;
    background-color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid var(--white);
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.meal-card-info {
    padding: 5px 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.meal-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-avatars {
    display: flex;
}

.rating-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.rating-avatars img:first-child {
    margin-left: 0;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.rating-score i {
    color: var(--orange);
    font-size: 18px;
}

.meal-card-title {
    color: var(--orange);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.meal-card-desc {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0 5px;
}

.meal-card-actions {
    position: absolute;
    bottom: -2.9rem;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: auto;
}

.btn-order {
    background-color: var(--orange);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.btn-order:hover {
    /* background-color: var(--orange-light); */
    color: var(--white);
}

.btn-favorite {
    width: 48px;
    height: 40px;
    background-color: rgba(246, 246, 246, 1);
    border: 1px solid var(--orange);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-favorite:hover {
    transform: scale(1.05);
}

@media (max-width: 1199.98px) {
    .meals-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .meals-grid.v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991.98px) {
    .top-meals-section {
        padding: 0 0 40px;
    }

    .meals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }


    .meal-card {
        padding: 15px;
    }

    .meal-card-arc {
        width: 205px;
        top: 3px;
    }

    .meal-card-price {
        width: 55px;
        height: 55px;
        font-size: 12px;
        right: 50px;
        border: 3px solid var(--white);
    }

    .meal-card-image {
        width: 160px;
        height: 160px;
    }

    .meal-card-title {
        font-size: 16px;
    }

    .meal-card-desc {
        font-size: 12px;
    }

    .meal-card-actions {
        bottom: -2rem;
    }

    .btn-order {
        padding: 10px 25px;
        font-size: 13px;
    }

    .btn-favorite {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .meals-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 1rem auto;
    }

    .meals-grid.v2 {
        grid-template-columns: repeat(1, 1fr);
    }
}

.about-section {
    padding: 60px 0 100px;
    background-color: var(--gray-light);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    padding-left: 30px;
}

.about-tagline {
    font-family: 'Satisfy', cursive;
    color: var(--orange-light);
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.about-title {
    color: var(--orange);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-text {
    color: var(--dark);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: justify;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--orange);
    color: var(--blue-dark);
    font-size: 16px;
    font-weight: 600;
    padding: 6px 6px 6px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-about:hover {
    background-color: var(--orange-light);
    color: var(--blue-dark);
}

.btn-about .btn-about-icon {
    width: 40px;
    height: 40px;
    background-color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: all 0.3s ease;
}

.btn-about:hover .btn-about-icon {
    transform: translateX(3px);
}

/* Customer Feedback Section */
.feedback-section {
    padding: 80px 0 100px;
    overflow: hidden;
}

.feedback-container {
    max-width: 100%;
    margin: 0 auto;
}

.feedback-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 15px;
}

.feedback-subtitle {
    color: var(--dark);
    font-size: 16px;
    font-weight: 400;
}

.feedback-section .section-header {
    margin-bottom: 30px;
}

.feedback-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
}

.nav-btn {
    width: 50px;
    height: 40px;
    border-radius: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.prev-btn {
    background-color: var(--white);
    border: 1px solid var(--orange);
    color: var(--dark);
}

.prev-btn:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.next-btn {
    background-color: var(--orange);
    border: 1px solid var(--orange);
}

.next-btn:hover {
    background-color: var(--orange-light);
    border-color: var(--orange-light);
}

.feedback-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 60px 0 20px;
}

.feedback-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-left: calc(50% - 230px);
    padding-right: 50px;
}

.review-card {
    flex: 0 0 460px;
    min-width: 660px;
    padding: 0;
    position: relative;
}

.review-card-inner {
    padding: 30px 25px 25px;
}

.review-card-header {
    display: flex;
    gap: 12px;
    position: absolute;
    top: -2rem;
    left: 3rem;
    z-index: 100;
}

.reviewer-avatar {
    width: 70px;
    height: 90px;
    border-radius: 5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info {
    flex: 1;
    padding-top: 0.8rem;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    margin: 0 0 5px 0;
}

.review-rating {
    color: var(--orange);
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 14px;
}

.review-body {
    position: relative;
    padding: 1rem 2.5rem;
    padding-left: 100px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    background-color: var(--white);
    border-radius: 20px;

}

.quote-icon {
    display: inline-block;
}

.quote-start {
    margin-bottom: 10px;
}

.quote-start img {
    width: 35px;
    height: auto;
    transform: rotate(180deg);
}

.quote-end {
    display: block;
    text-align: right;
    margin-top: 10px;
}

.quote-end img {
    width: 35px;
    height: auto;
}

.review-text {
    color: var(--dark);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .feedback-track {
        padding-left: calc(50% - 180px);
    }

    .review-card {
        flex: 0 0 360px;
        min-width: 460px;
    }
}

@media (max-width: 991.98px) {
    .feedback-track {
        padding-left: calc(50% - 140px);
    }

    .review-card {
        flex: 0 0 280px;
        min-width: 480px;
    }

    .feedback-title {
        font-size: 32px;
    }

    .review-card-header {
        top: -2.2rem
    }

    .reviewer-avatar {
        height: 90px !important;
        width: 70px !important;
    }

    .review-body {
        padding: 3rem 1.5rem 1.5rem;
    }
}

/* Feedback Pagination */
.feedback-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--orange);
    transform: scale(1.2);
}

@media (max-width: 767.98px) {
    .feedback-section {
        padding: 50px 0 70px;
    }

    .feedback-nav {
        gap: 10px;
        margin-bottom: 20px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .feedback-track {
        padding-left: 20px;
        gap: 15px;
    }

    .review-card {
        flex: 0 0 calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: 400px;
    }

    /* Center the card if screen is wider than max-width */
    @media (min-width: 440px) {
        .feedback-track {
            padding-left: calc(50% - 200px);
            /* 400px / 2 */
        }
    }

    .review-card-inner {
        padding: 20px 15px;
    }

    .reviewer-avatar {
        width: 60px;
        height: 70px;
    }

    .reviewer-name {
        font-size: 14px;
    }

    .review-rating i {
        font-size: 12px;
    }

    .review-text {
        font-size: 12px;
    }

    .quote-start img,
    .quote-end img {
        width: 22px;
    }
}

/* Questions Section */
.questions-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.questions-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.questions-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.questions-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay */
    z-index: 1;
}

.questions-title {
    color: var(--white);
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 5px;
}

.questions-subtitle {
    color: var(--white);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--orange);
    color: var(--blue-dark);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 8px 8px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-contact:hover {
    background-color: var(--orange-light);
    color: var(--blue-dark);
}

.btn-contact .btn-contact-icon {
    width: 30px;
    height: 30px;
    background-color: var(--blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: all 0.3s ease;
}

.btn-contact:hover .btn-contact-icon {
    transform: translateX(3px);
}

/* Footer */
.main-footer {
    background-color: #F9F9F9;
    padding: 40px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    background-color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--orange);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--dark);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

@media (max-width: 991.98px) {
    .questions-title {
        font-size: 28px;
    }

    .questions-subtitle {
        font-size: 16px;
    }

    .questions-section {
        padding: 60px 0;
    }
}

/* About Page Styles */

/* About Hero */
.about-hero {
    position: relative;
    height: 480px;
    /* Taller hero as per image */
    width: 100%;
    overflow: hidden;
    margin-top: 1rem;
}

.about-hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.about-hero-image img:not(.hero-logo) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    /* Lighter overlay */
}

.about-hero-content {
    position: absolute;
    bottom: 5rem;
    left: 10%;
    display: flex;
    justify-content: start;
    z-index: 2;
}



.hero-logo {
    height: 100px;
    /* Larger logo */
    width: auto;
    display: block;
}

.hero-text-about {
    color: var(--white);
    font-size: 60px;
    font-weight: 700;
    display: flex;
    align-items: end;
    margin-left: 1rem;
    gap: 1rem;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    overflow: hidden;
    /* Prevent negative margins from causing overflow */
}


.story-image-offset {
    margin-top: -18rem;
    /* Pull image up significantly */
    position: relative;
    z-index: 2;
}


@media (max-width: 1300px) {
    .story-image-offset {
        margin-top: -10rem;
        /* Pull image up significantly */
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 1200px) {
    .story-image-offset {
        margin-top: 0rem;
        /* Pull image up significantly */
        position: relative;
        z-index: 2;
    }
}

.our-story-image-wrapper img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.who-we-are-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden;
}



.section-tagline {
    color: var(--orange);
    font-family: 'Satisfy', cursive;
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    color: var(--orange);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.section-text {
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 991.98px) {
    .who-we-are-section {
        display: none;
    }

    .section-title {
        font-size: 32px;
    }

    .who-we-are-content {
        padding-left: 0 !important;
    }

    .about-hero-content {
        bottom: 2rem;
    }

    .hero-text-about {
        font-size: 40px;
    }

    .hero-logo {
        height: 70px;
    }
}

@media (max-width: 575.98px) {
    .about-hero-content {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 2rem !important;
        /* Override inline style if necessary, though now inline is 3rem so maybe not needed, but good for mobile spacing */
        align-items: center;
        text-align: center;
    }

    .hero-text-about {
        width: 100%;
        display: block;
    }
}

/* Delicious Section */
.delicious-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    margin: 60px 0;
    border-radius: 30px;
    /* Rounded corners for this section as per image? No, image 3 looks full width usually or container. Let's maximize width but maybe container based? 
    Wait, uploaded_image_1 shows it inside a container with rounded corners. */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.delicious-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.delicious-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.delicious-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 30px;
}

.delicious-title {
    color: var(--white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.delicious-subtitle {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

.btn-play {
    width: 60px;
    height: 60px;
    background-color: rgba(4, 35, 73, 1);
    /* Play button black background */
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-play i {
    font-size: 24px;
    color: var(--white);
    margin-left: 3px;
    /* visual adjustment */
}

/* Our Story Section */
.our-story-section {
    padding: 60px 0 100px;
}

.our-story-images img {
    border-radius: 20px;
    width: 100%;
    margin-bottom: 20px;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .about-hero {
        height: 350px;
    }

    .delicious-section {
        width: 100%;
        border-radius: 0;
        margin: 40px 0;
    }

    .delicious-bg img,
    .delicious-overlay {
        border-radius: 0;
    }

    .who-we-are-image {
        margin-top: 30px;
    }
}

/* --- Sub Menu Page Styles --- */

/* Mobile Filter Button */
.btn-filter-mobile {
    background-color: var(--orange);
    color: var(--blue-dark);
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 20px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-filter-mobile-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--orange);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-filter-mobile-circle:active {
    transform: scale(0.95);
}



/* Sidebar Styles */
.filter-sidebar {
    background-color: transparent;
}

.filter-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.filter-group.border-0 {
    border-bottom: none;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}

.filter-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    margin: 0;
}

.filter-header i {
    color: var(--dark);
    transition: transform 0.3s;
}

.filter-header[aria-expanded="false"] i {
    transform: rotate(180deg);
}

/* Custom Radio */
.custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid var(--orange);
    border-radius: 50%;
}

.custom-radio input:checked~.checkmark {
    background-color: var(--white);
}

.custom-radio input:checked~.checkmark:after {
    display: block;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--orange);
}

.custom-radio .label-text {
    flex-grow: 1;
}

.custom-radio .count {
    color: var(--orange);
    font-size: 13px;
    margin-left: 5px;
}


/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark-box {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid var(--orange);
    border-radius: 3px;
}

.custom-checkbox input:checked~.checkmark-box {
    background-color: var(--orange);
}

.custom-checkbox input:checked~.checkmark-box:after {
    display: block;
}

.checkmark-box:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Stars in checkbox label */
.stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.stars i {
    font-size: 14px;
}


/* Range Slider */
.custom-range {
    height: 6px;
    border-radius: 5px;
    background: #FFDDC2;
    outline: none;
    width: 100%;
    /* Ensure width */
}

.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--orange);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.custom-range::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--orange);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}


/* Tags */
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #fff;
    border: 1px solid #eee;
    /* Changed border to be subtle */
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Slight shadow */
    transition: all 0.3s;
    font-weight: 500;
}

.tag.active,
.tag:hover {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}


/* --- Menu Item Card Styles (New) --- */
.menu-item-card {
    background-color: #fbf5ee;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    padding-bottom: 25px;
    transition: transform 0.3s;
    border: 1px solid transparent;
    /* To avoid layout shift if border added later */
}

.menu-item-card:hover {
    transform: translateY(-5px);
}

.menu-card-top {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin-bottom: 15px;
}

.menu-card-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-price {
    position: absolute;
    bottom: 0;
    right: 30px;
    /* Position needs adjustment based on card */
    width: 70px;
    height: 70px;
    background-color: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
    z-index: 2;
}

/* Adjust price position to be more floating */
@media(min-width: 1200px) {
    .menu-card-price {
        right: 40px;
    }
}

.menu-card-body {
    padding: 0 20px;
}

.rating-avatars {
    display: flex;
    align-items: center;
    gap: 0px;
}

.avatars-group {
    display: flex;
    padding-left: 10px;
}

.avatar-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover;
    margin-left: -10px;
}

.rating-val span {
    font-weight: 700;
    font-size: 15px;
    color: #222;
    margin-left: 4px;
}

.menu-card-title {
    color: var(--orange);
    font-size: 20px;
    font-weight: 800;
    margin: 10px 0;
}

.menu-card-desc {
    color: #777;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
    /* Ensure consistent height */
}

.menu-card-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.btn-menu-order {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    font-size: 14px;
}

.btn-menu-order:hover {
    background-color: #e68a00;
    color: var(--white);
}

.btn-menu-fav {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    background: transparent;
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-menu-fav:hover {
    background-color: var(--orange);
    color: var(--white);
}

.price-range {
    text-align: center;
}

.price-values {
    font-size: 14px;
    color: #333;
}

/* --- Meal Details Page Styles --- */

/* Product Gallery Carousel */
#productGalleryCarousel {
    position: relative;
    padding: 20px 0;
    min-height: 450px;
    width: 100%;
}

#productGalleryCarousel .carousel-control-prev,
#productGalleryCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
    z-index: 10;
}

#productGalleryCarousel .carousel-control-prev {
    left: 15px;
}

#productGalleryCarousel .carousel-control-next {
    right: 15px;
}

#productGalleryCarousel .carousel-control-prev:hover,
#productGalleryCarousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--orange);
}

#productGalleryCarousel .carousel-control-prev-icon,
#productGalleryCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

#productGalleryCarousel .carousel-indicators {
    margin-bottom: 15px;
}

#productGalleryCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--orange);
    margin: 0 5px;
    transition: all 0.3s;
}

#productGalleryCarousel .carousel-indicators button.active {
    background-color: var(--orange);
    border-color: var(--orange);
    transform: scale(1.2);
}

#productGalleryCarousel .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 400px;
}

#productGalleryCarousel .carousel-item {
    min-height: 400px;
    text-align: center;
}

#productGalleryCarousel .carousel-item > .carousel-image-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#productGalleryCarousel .carousel-image-wrapper {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

#productGalleryCarousel .carousel-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Single image container (when no gallery) */
.single-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    width: 100%;
}

.single-image-container .carousel-image-wrapper {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.single-image-container .carousel-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    #productGalleryCarousel .carousel-image-wrapper,
    .single-image-container .carousel-image-wrapper {
        width: 300px;
        height: 300px;
    }
    
    #productGalleryCarousel .carousel-control-prev,
    #productGalleryCarousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    #productGalleryCarousel .carousel-control-prev {
        left: 5px;
    }
    
    #productGalleryCarousel .carousel-control-next {
        right: 5px;
    }
    
    .single-image-container {
        min-height: 300px;
    }
}

.main-product-image {
    width: 60%;
    margin: 0 auto;
    display: block;
    height: auto;
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.gallery-indicators .indicator {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-indicators .indicator.active {
    background-color: var(--orange);
    transform: scale(1.2);
}

.main-meal-title-large {
    color: var(--orange);
    font-weight: 800;
    font-size: 48px;
    line-height: 1.1;
    text-align: left;
    /* Default left */
}

.text-orange {
    color: var(--orange);
}

.section-subtitle.text-orange {
    color: var(--orange) !important;
    font-size: 24px;
}

.btn-nav-round {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-nav-round:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.additions-nav {
    display: flex;
    gap: 10px;
}

.addition-card {
    min-width: 140px;
    width: 140px;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.addition-card:hover,
.addition-card.selected {
    border-color: var(--orange-light);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.1);
}

.addition-img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.addition-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.addition-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: auto;
}

.addition-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
}

.addon-sizes {
    width: 100%;
    margin-bottom: 8px;
}

.addon-size-option {
    cursor: pointer;
    padding: 4px 8px;
    border: 1px solid var(--orange);
    border-radius: 6px;
    font-size: 10px;
    transition: all 0.3s;
    display: inline-block;
    background: #fff;
    color: var(--orange);
}

.addon-size-option input[type="radio"] {
    display: none;
}

.addon-size-option.checked {
    background-color: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.addon-size-option:hover {
    background-color: var(--orange-light);
    color: #fff;
    border-color: var(--orange-light);
}

.btn-add-mini {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: var(--orange);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Size Selection Modal */
.size-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.size-modal-header {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
    border-bottom: none;
    padding: 20px 25px;
}

.size-modal-header .modal-title {
    color: var(--white);
    font-size: 20px;
    margin: 0;
}

.size-modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s;
}

.size-modal-header .btn-close:hover {
    opacity: 1;
}

.size-modal-body {
    padding: 25px;
}

.size-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.size-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.size-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.size-option:hover {
    border-color: var(--orange-light);
    background: #fff8f0;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 133, 0, 0.1);
}

/* Custom tooltip for size notes – show on hover */
.size-options,
.size-section .d-flex,
.size-selection {
    overflow: visible;
}

.size-option[data-size-note] {
    overflow: visible;
}

.size-option[data-size-note]::after {
    content: attr(data-size-note);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-10px);
    padding: 10px 14px;
    max-width: 280px;
    width: max-content;
    font-size: 13px;
    line-height: 1.45;
    color: var(--white);
    background: var(--dark);
    border: 1px solid var(--orange);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(10, 11, 10, 0.25), 0 0 0 1px rgba(255, 133, 0, 0.2);
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    z-index: 1050;
    text-align: center;
}

.size-option[data-size-note]:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-8px);
}

.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.size-option-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.size-name {
    font-size: 16px;
    color: var(--dark);
    transition: color 0.3s;
}

.size-price {
    font-size: 18px;
    color: var(--orange);
    transition: color 0.3s;
}

.size-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.size-checkmark i {
    font-size: 18px;
    color: var(--white);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

/* Selected state - when radio is checked */
.size-option:has(input[type="radio"]:checked) {
    background: var(--orange) !important;
    box-shadow: 0 4px 16px rgba(255, 133, 0, 0.15);
}
.size-option.selected .size-price {
    color: var(--white) !important;
}

.size-option:has(input[type="radio"]:checked)::before {
    transform: scaleY(1);
}

.size-option:has(input[type="radio"]:checked) .size-name {
    color: var(--white) !important;
}

.size-option:has(input[type="radio"]:checked) .size-checkmark {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

.size-option:has(input[type="radio"]:checked) .size-checkmark i {
    opacity: 1;
    transform: scale(1);
}

/* Fallback for browsers that don't support :has() */
.size-option.selected {
    border-color: var(--orange);
    color: var(--white) !important;
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    box-shadow: 0 4px 16px rgba(255, 133, 0, 0.15);
}
.size-option.selected > * {
    color: var(--white) !important;
}


.size-option.selected::before {
    transform: scaleY(1);
}

.size-option.selected .size-name {
    color: var(--orange);
}

.size-option.selected .size-checkmark {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

.size-option.selected .size-checkmark i {
    opacity: 1;
    transform: scale(1);
}

.size-modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
    background: var(--white);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 133, 0, 0.3);
}

.size-modal-footer .btn-orange-fill {
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.size-modal-footer .btn-orange-fill:hover:not(:disabled) {
    background-color: var(--orange-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 133, 0, 0.3);
}

.size-modal-footer .btn-orange-fill:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Customization options (chips/pills) */
.customization-options-wrap {
    margin-top: 0.5rem;
}
.customization-options-wrap .customization-options-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.6rem;
    display: block;
}
.customization-options-wrap .customization-options-label .text-muted {
    font-weight: 400;
    font-size: 0.85rem;
}
.customization-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.customization-option {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    color: #444;
}
.customization-option:hover {
    border-color: var(--orange-light, #ffb366);
    background: #fff8f0;
    color: #333;
}
.customization-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.customization-option .customization-check {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.customization-option .customization-check i {
    font-size: 11px;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}
.customization-option:has(input:checked) {
    border-color: var(--orange, #ff8500);
    background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
    color: var(--orange, #ff8500);
}
.customization-option:has(input:checked) .customization-check {
    background: var(--orange, #ff8500);
    border-color: var(--orange, #ff8500);
}
.customization-option:has(input:checked) .customization-check i {
    opacity: 1;
    transform: scale(1);
}
.cart-note-section .form-label,
.customization-options-wrap + .cart-note-section .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.4rem;
}
.cart-note-section .form-control.cart-item-note-input {
    border-radius: 10px;
    border: 2px solid #e8e8e8;
    padding: 0.6rem 1rem;
    transition: border-color 0.2s ease;
}
.cart-note-section .form-control.cart-item-note-input:focus {
    border-color: var(--orange, #ff8500);
    box-shadow: 0 0 0 3px rgba(255, 133, 0, 0.15);
}

/* Quantity Input */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--blue-dark);
    border-radius: 8px;
    overflow: hidden;
    height: 48px;
    background-color: transparent;
}

.qty-btn {
    width: 40px;
    height: 100%;
    border: none;
    outline: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
     background-color: transparent;
}

@media (max-width: 575.98px) {
    .mobile-btn-text {
        font-size: 13px !important;
        /* Slightly smaller to ensure fit on very small screens */
        padding-left: 4px !important;
        padding-right: 4px !important;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


}

.qty-btn:hover {
    background: #eee;
}

.qty-input {
    width: 50px;
    height: 100%;
    border: none;
     background-color: transparent;
     outline: none;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-add-cart {
    background-color: var(--orange);
    color: var(--white);
    font-weight: 700;
    border: none;
    border-radius: 8px;
    height: 48px;
    transition: background 0.3s;
}

.btn-add-cart:hover {
    background-color: #e68a00;
}

.btn-order-now-outline {
    background-color: transparent;
    color: #333;
    border: 1px solid var(--orange-light);
    font-weight: 600;
    border-radius: 8px;
    height: 48px;
    padding: 0 30px;
    transition: all 0.3s;
}

.btn-order-now-outline:hover {
    border-color: var(--dark);
}

.btn-orange-square {
    background-color: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    width: 48px;
    height: 48px;
    /* Match texture height effectively if needed, usually smaller for inline input */
    height: 38px;
    /* Adjusted to fit input height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-input-group .form-control:focus {
    box-shadow: none;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .main-product-image {
        width: 80%;
        margin-bottom: 20px;
    }

    .main-meal-title-large {
        text-align: center;
        margin-bottom: 30px;
    }

    .gallery-indicators {
        margin-bottom: 30px;
    }

    .product-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .rating-large {
        align-self: flex-start;
    }
}

/* --- Contact Us Page Styles --- */

.contact-item {
    font-size: 15px;
    color: #444;
}

.social-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: all 0.3s;
}

.social-circle:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.bg-beige {
    background-color: rgba(239, 231, 210, 0.5);
    border: 1px solid transparent;
}


.bg-beige:focus {
    background-color: #fff;
    border-color: var(--orange);
    box-shadow: none;
}

.btn-orange-fill {
    background-color: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 8px;
    /* Corrected radius */
    transition: background 0.3s;
}

.btn-orange-fill:hover {
    background-color: #e68a00;
    color: var(--white);
}

.btn-show-route {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-show-route:hover {
    transform: translateY(-5px);
}

/* --- Cart Page Styles --- */
.cart-page-container {
    min-height: 100vh;
}

/* --- Cart/Order Hero Updates --- */
.cart-hero-wrapper {
    position: relative;
    height: calc(100% - 40px);
    min-height: 600px;
    /* Add spacing */
    margin: 20px;
    /* Add space around */
    border-radius: 30px;
    /* Rounded corners */
    overflow: hidden;
}

.cart-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    /* Slight darken */
}

.cart-hero-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
}

.cart-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1rem;
}

.cart-hero-content .text {
    font-size: 70px !important;
}

.cart-items-container {
    height: 100%;
    overflow-y: auto;
    /* If content is long */
}

/* Cart Item Styling */
.cart-item-row {
    border-bottom: 1px dashed #eee;
    padding-bottom: 20px;
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-img-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.cart-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart Item Refinement */
.cart-item-title {
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
}

.cart-item-price {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}

.cart-item-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.cart-dotted-line {
    border-bottom: 2px dotted #eee;
    margin: 10px 0;
    width: 100%;
}

.quantity-selector.small-qty {
    height: 40px;
    width: 150px;
    border: 1px solid var(--orange);
}

.quantity-selector.small-qty .qty-btn {
    width: 50px;
    font-size: 18px;
    background: transparent;
    color: var(--orange);

}

.quantity-selector.small-qty .qty-input {
    font-size: 14px;
    width: 50px;
    background: transparent;
    outline: none;
    color: var(--orange);

}

/* Mobile Cart Specifics */
.cart-img-wrapper-mobile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-img-wrapper-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-info-mobile {
    flex-grow: 1;
}

.cart-item-mobile {
    padding-bottom: 5px;
}

/* --- Orders Page Styles --- */
.orders-page-container {
    min-height: 100vh;
}

.order-img-wrapper {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    /* border: 5px solid #fff; */
    position: relative;
}

.order-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editOrder {
    cursor: pointer;
}

.order-title {
    font-size: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-price {
    font-size: 22px;
    color: #333;
}

.order-dotted-line {
    border-bottom: 2px dotted #e0e0e0;
    /* Dotted line */
    width: 100%;
    height: 1px;
}

.btn-outline-dark {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    border-color: var(--dark);
    background: #f9f9f9;
}

/* Mobile Order Styles */
.order-card-mobile {
    background: transparent;
}

.order-img-wrapper-mobile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-img-wrapper-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Checkout Page Styles --- */
.checkout-page-container {
    min-height: 100vh;
}

.checkout-hero-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.checkout-hero-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Add border/space effect requested? 
       Actually user said "part 1 image with border and space". 
       Let's assume just full height split screen like cart but maybe with some padding if needed?
       Wait, let's keep it consistent with cart/order hero for now unless specific visual shows otherwise in desktop image which is full bleed.
    */
    overflow: hidden;
}

.checkout-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.checkout-hero-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
}

.checkout-section-card {
    /* For desktop, it's just block sections. For mobile I added card styling inline or utility classes. */
    /* Let's default to standard block mb */
}

/* Address Card */
.address-card {
    border: 1px solid #f0f0f0;
    /* Default border */
    border-radius: 15px;
    background: #fff;
    transition: all 0.3s;
}

/* Selected address state styling if needed, currently using radio checked logic in HTML structure/JS */

.form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

/* Payment Methods */
.payment-option {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--orange);
    background: #fffbf5;
}

.payment-icon {
    width: 40px;
    display: flex;
    justify-content: center;
    color: #555;
}

/* --- Track Order Page Styles --- */
.track-page-container {
    min-height: 100vh;
}

.track-hero-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.track-hero-img-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.track-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.track-hero-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
}

.bg-light-orange {
    background-color: #fbf5ee;
    /* Match design subtle background */
}

.border-orange-dashed {
    border: 2px dashed var(--orange) !important;
    background: #fff;
    color: var(--orange);
}

/* Wizard Styles */
.wizard-container {
    /* Container for the line and steps */
    padding-top: 24px;
    /* Maintain padding equal to py-4 */
    padding-bottom: 24px;
    padding-left: 0 !important;
    /* Reset padding for calculation */
    padding-right: 0 !important;
}

.wizard-line-bg {
    position: absolute;
    top: 44px;
    /* Align with icon center */
    left: 0;
    right: 0;
    height: 8px;
    background: #eee;
    transform: translateY(-50%);
    z-index: 0;
    /* Behind icons */
    margin: 0 12%;
    /* Adjusted margin for better centering with columns */
    border-radius: 4px;
}

.wizard-line-progress {
    position: absolute;
    top: 44px;
    /* Align with icon center */
    left: 12%;
    /* Match bg margin - start from first icon center */
    height: 8px;
    background: var(--orange);
    transform: translateY(-50%);
    z-index: 0;
    /* Behind icons */
    border-radius: 4px;
    /* Width is set inline as percentage of the line width (76%) */
    /* The line spans from 12% to 88% = 76% of container width */
    /* Progress width should not exceed the line width */
    max-width: 76%;
}

/* RTL Support for wizard progress bar */
[dir="rtl"] .wizard-line-progress {
    left: auto;
    right: 12%;
    /* In RTL, start from right side */
}

.wizard-step {
    z-index: 2;
    /* Content above lines */
    position: relative;
    padding: 0;
    /* Reset column padding */
}

.wizard-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    color: #aeaeae;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    z-index: 2;
    /* Ensure icon background covers line */
}

@media (max-width: 991.98px) {
    .wizard-label {
        font-size: 10px;
        /* Smaller text on mobile */
        white-space: nowrap;
        /* Prevent wrapping if possible, or allow naturally */
    }

    .wizard-line-bg,
    .wizard-line-progress {
        margin: 0 10%;
        top: 32px;
        /* Adjusted for smaller icon (32px/2=16) + padding (16px) = 32px */
    }
    
    .wizard-line-progress {
        left: 10% !important;
        max-width: calc(80% - 10%);
        /* Total line width is 80% (100% - 10% left - 10% right), progress starts at 10% */
    }
    
    /* RTL Support for mobile wizard progress bar */
    [dir="rtl"] .wizard-line-progress {
        left: auto !important;
        right: 10% !important;
    }

    .wizard-container {
        padding-left: 0;
        padding-right: 0;
        padding-top: 16px !important;
        /* Force py-3 equivalent to match top calculation */
        padding-bottom: 16px !important;
    }

    .wizard-step {
        padding: 0 2px;
        /* Minimal padding */
    }
}

.wizard-label {
    font-size: 12px;
    color: #aeaeae;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}

/* Completed Step */
.wizard-step.completed .wizard-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.wizard-step.completed .wizard-label {
    color: var(--orange);
    font-weight: 700;
}

/* Active Step */
.wizard-step.active .wizard-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.2);
}

.wizard-step.active .wizard-label {
    color: var(--orange);
    font-weight: 700;
}

/* Future/Inactive Step */
.wizard-step:not(.completed):not(.active) .wizard-icon {
    background: #fff;
    border: 2px dashed var(--orange);
    color: #aeaeae;
}

.wizard-step:not(.completed):not(.active) .wizard-label {
    color: #aeaeae;
    font-weight: 500;
}

/* Items Table */
.bg-light-gray {
    background-color: #f9f9f9;
}

/* Mobile Wizard Tweaks */
.wizard-icon.small-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.wizard-label.small-label {
    font-size: 10px;
}

/* --- About Page Experience Section --- */

.experience-badge {
    background: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    display: inline-flex;
    align-items: center;
    gap: 15px;
    position: relative;
    margin-top: 20px;
    /* Orange bar on left */
    border-left: 8px solid var(--orange);
}

.experience-number {
    font-family: 'Cairo', sans-serif;
    /* Ensure font matches */
    font-size: 42px;
    font-weight: 800;
    /* Extra bold */
    color: var(--orange);
    line-height: 1;
}

.experience-labels {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.experience-label-top {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    line-height: 1.2;
}

.experience-label-bottom {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}


/* --- About Page Image Collage --- */

.about-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Left col wider */
    gap: 15px;
    align-items: center;
}

.collage-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.collage-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

/* Specific heights/aspect ratios for variety */
.img-tall {
    height: 300px;
}

.img-medium {
    height: 200px;
}

.img-small {
    height: 140px;
}

@media (max-width: 991.98px) {
    .about-collage {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        margin-top: 40px;
    }

    .img-tall,
    .img-medium,
    .img-small {
        height: auto;
        aspect-ratio: 16/9;
        /* Standardize on mobile */
    }
}

.border-orange {
    border: 1px solid var(--orange) !important;
}

.shadow-premium {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

/* SweetAlert2 Custom Styling - Smaller Size */
.swal2-popup {
    width: 90% !important;
    max-width: 400px !important;
    padding: 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 15px !important;
}

.swal2-title {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    padding: 0 !important;
}

.swal2-html-container {
    font-size: 0.875rem !important;
    margin: 0.5rem 0 1rem 0 !important;
    padding: 0 !important;
}

.swal2-icon {
    width: 3.5rem !important;
    height: 3.5rem !important;
    margin: 0 auto 1rem auto !important;
}

.swal2-icon .swal2-icon-content {
    font-size: 2.5rem !important;
    line-height: 3.5rem !important;
}

.swal2-actions {
    margin: 1rem 0 0 0 !important;
    gap: 0.5rem !important;
}

.swal2-confirm,
.swal2-cancel {
    padding: 0.5rem 1.5rem !important;
    font-size: 0.875rem !important;
    border-radius: 8px !important;
}

.swal2-footer {
    margin-top: 0.75rem !important;
    padding-top: 0.75rem !important;
}

@media (max-width: 576px) {
    .swal2-popup {
        width: 95% !important;
        max-width: 350px !important;
        padding: 1.25rem !important;
    }
    
    .swal2-title {
        font-size: 1.1rem !important;
    }
    
    .swal2-html-container {
        font-size: 0.8rem !important;
    }
    
    .swal2-icon {
        width: 3rem !important;
        height: 3rem !important;
    }
    
    .swal2-icon .swal2-icon-content {
        font-size: 2rem !important;
        line-height: 3rem !important;
    }
    
    .swal2-confirm,
    .swal2-cancel {
        padding: 0.4rem 1.25rem !important;
        font-size: 0.8rem !important;
    }
}
.carousel-indicators {
bottom: -20px;
}

/* --- rtl style --- */
[dir="rtl"] {
    .main-meal-title-large{
        text-align: right;
    }
    .modal-header .btn-close{
        margin: unset;
    }
    /* Mobile menu RTL */
    
   
    .about-hero-content{
        left:unset;
        right: 10%;
    }
    .dropdown-item{
        text-align: right !important;
    }
}