/* ========================================
   COMPREHENSIVE UI ENHANCEMENTS
   For: Home, Menu, Cart, Wishlist, Products, Dashboard
   ======================================== */

/* ============================================
   1. PRODUCT CARDS - CLEAN MODERN DESIGN
   ============================================ */

.featured-item {
    position: relative;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Product Image Container */
.featured-item-img {
    position: relative;
    overflow: hidden;
    height: 280px;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 3/2;
    background: #F8F9FA;
}

.featured-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-item:hover .featured-item-img img {
    transform: scale(1.05);
}

/* Hide Popular Badge */
.featured-item-img-populer {
    display: none !important;
}

/* Overlay Effects - Minimal */
.featured-item-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-item:hover .featured-item-img-overlay {
    opacity: 1;
}

/* Wishlist Heart Icon */
.featured-item-img-over-text {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 11;
}

.left-text .icon {
    width: 44px;
    height: 44px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.left-text .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(254, 114, 76, 0.2);
}

/* Removed SVG color change on hover */

/* Hide Discount Badge */
.right-text {
    display: none !important;
}

/* Product Details Section */
.featured-item-text {
    padding: 30px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    gap: 18px;
}

/* Price, Name, and Checkmark in ONE LINE */
.text-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(229, 230, 235, 0.4);
    padding-bottom: 12px;
    padding: 10px;
}

.text-item .left h3 {
    font-size: 24px;
    font-weight: 700;
    color: #f01543;
    margin: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Product Title - Same line */
.text-item-center {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.text-item-center h3 {
    font-size: 15px;
    font-weight: 800;
    color: #1E293B;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-item-center h3 a {
    color: #1E293B;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Single Checkmark - Same line */
.text-item-center-item-box {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 0;
    flex-shrink: 0;
}

.text-item-center-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.text-item-center-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.text-item-center-item .icon svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.text-item-center-item .text {
    display: none;
    /* Hide text */
}

/* Show only first specification icon */
.text-item-center-item:not(:first-child) {
    display: none;
}

/* Add to Cart Button - FULL WIDTH */
.featured-item-btn {
    margin-top: auto;
    width: 100%;
}

.main-btn-three,
.main-btn-five,
.quick-add-btn {
    width: 100%;
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(254, 114, 76, 0.25);
}

.main-btn-three:hover,
.main-btn-five:hover,
.quick-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 114, 76, 0.35);
}

.main-btn-three:active,
.main-btn-five:active {
    transform: translateY(0);
}

.main-btn-three span svg,
.main-btn-five span svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   2. CATEGORY CARDS - MODERN DESIGN
   ============================================ */

.categories-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.categories-item:hover {
    transform: translateY(-6px);
    border-color: #FE724C;
    box-shadow: 0 12px 32px rgba(254, 114, 76, 0.12);
}

.categories-icon .circle-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid #F8F9FA;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.categories-item:hover .circle-image {
    border-color: #FE724C;
    transform: scale(1.05);
}

.categories-item-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

/* ============================================
   3. POPULAR ITEMS (LIST VIEW)
   ============================================ */

.popular-item-box {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    gap: 16px;
    padding: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.popular-item-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(254, 114, 76, 0.12);
}

.popular-item-box-img {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.popular-item-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.popular-item-box:hover .popular-item-box-img img {
    transform: scale(1.1);
}

.popular-inner-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.popular-item-box-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 12px;
}

.popular-inner-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.popular-inner-item-btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #E5E6EB;
}

.popular-inner-item-btm .text h3 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.popular-inner-item-btn {
    display: flex;
    gap: 8px;
}

/* ============================================
   4. SEARCH & FILTER SECTION - ENHANCED
   ============================================ */

.food-details-btn-box {
    background: #FFFFFF;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.food-details-btn-box-item {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* Enhanced Category Dropdown */
.food-details-btn-box select {
    flex: 0 0 200px;
    padding: 14px 40px 14px 16px;
    border: 2px solid #E5E6EB;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #1E293B;
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23FE724C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.food-details-btn-box select:hover {
    border-color: #FE724C;
    box-shadow: 0 0 0 4px rgba(254, 114, 76, 0.1);
}

.food-details-btn-box select:focus {
    border-color: #FE724C;
    outline: none;
    box-shadow: 0 0 0 4px rgba(254, 114, 76, 0.1);
    background-color: #FFF5F1;
}

/* Dropdown Options Styling */
.food-details-btn-box select option {
    padding: 12px 16px;
    font-size: 15px;
    color: #1E293B;
    background-color: #FFFFFF;
}

.food-details-btn-box select option:hover,
.food-details-btn-box select option:checked {
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    color: #FFFFFF;
}

.food-details-btn-box select option:first-child {
    color: #64748B;
    font-weight: 600;
}

/* Search Box */
.food-details-btn-search-box {
    flex: 1;
    position: relative;
    min-width: 250px;
}

.food-details-btn-search-box input {
    width: 100%;
    padding: 14px 60px 14px 16px;
    border: 2px solid #E5E6EB;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.food-details-btn-search-box input::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.food-details-btn-search-box input:hover {
    border-color: #FE724C;
    box-shadow: 0 0 0 4px rgba(254, 114, 76, 0.05);
}

.food-details-btn-search-box input:focus {
    border-color: #FE724C;
    outline: none;
    box-shadow: 0 0 0 4px rgba(254, 114, 76, 0.1);
    background-color: #FFF5F1;
}

.food-details-btn-search-btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.food-details-btn-search-btn button {
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-details-btn-search-btn button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(254, 114, 76, 0.3);
}

.food-details-btn-search-btn button:active {
    transform: scale(0.98);
}

.food-details-btn-search-btn button svg {
    width: 20px;
    height: 20px;
}

/* View Toggle Buttons */
.food-details-btn-box-right-btn .nav-link {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid #E5E6EB;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.food-details-btn-box-right-btn .nav-link.active,
.food-details-btn-box-right-btn .nav-link:hover {
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    border-color: #FE724C;
}

.food-details-btn-box-right-btn .nav-link svg,
.food-details-btn-box-right-btn .nav-link i {
    color: #64748B;
    transition: color 0.3s ease;
}

.food-details-btn-box-right-btn .nav-link.active svg,
.food-details-btn-box-right-btn .nav-link.active i,
.food-details-btn-box-right-btn .nav-link:hover svg,
.food-details-btn-box-right-btn .nav-link:hover i {
    color: #FFFFFF;
}

/* ============================================
   5. CATEGORY FILTER TABS - LARGER SIZE
   ============================================ */

.shaf-filter {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0;
    list-style: none;
}

.shaf-filter li {
    padding: 14px 28px;
    background: #FFFFFF;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #E5E6EB;
    font-weight: 600;
    font-size: 16px;
    color: #64748B;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.shaf-filter li:hover,
.shaf-filter li.active {
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    border-color: #FE724C;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(254, 114, 76, 0.3);
}

/* ============================================
   6. BANNER SECTION
   ============================================ */

.banner {
    /* background: linear-gradient(135deg, #FFF5F1 0%, #FFFFFF 100%); */
    /* padding: 80px 0; */
    overflow: hidden;
}

.banner-taiteL h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 24px;
}

.banner-taiteL h1 span {
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
}

.banner-taiteL-btn {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.main-btn-four {
    padding: 16px 32px;
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(254, 114, 76, 0.2);
}

.main-btn-four:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254, 114, 76, 0.35);
}

.banner-img img {
    width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ============================================
   7. SECTION HEADERS
   ============================================ */

/* Fix for Suggested Products Section Title */
.menu-page .section-title {
    display: block !important;
    text-align: center !important;
}

.menu-page .section-title h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1E293B;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
    margin-bottom: 0;
}

.menu-page .section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .menu-page .section-title h2 {
        font-size: 28px;
    }
}

/* Google Login Config */
.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: #FFFFFF;
    color: #374151;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
    gap: 12px;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.google-login-btn:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: #111827;
    transform: translateY(-1px);
}

.google-login-btn img {
    width: 24px;
    height: 24px;
}

.login-separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0 0;
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
}

.login-separator::before,
.login-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #E5E7EB;
}

.login-separator::before {
    margin-right: 16px;
}

.login-separator::after {
    margin-left: 16px;
}


.featured-head h2,
.categories-head h2,
.traditional-head h2,
.work-head h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 16px;
}

.featured-head h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    border-radius: 2px;
}

/* ============================================
   8. MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .banner-taiteL h1 {
        font-size: 36px;
    }

    .featured-head h2,
    .categories-head h2 {
        font-size: 32px;
    }

    .featured-item-img {
        aspect-ratio: 1/1;
    }

    .text-item .left h3 {
        font-size: 20px;
    }

    .food-details-btn-box-item {
        flex-direction: column;
    }

    .food-details-btn-box select {
        width: 100%;
    }

      .popular-inner-box .button-box {
        margin-left: 50px !important;
        margin-top: 50px !important;
        width: 100%;
        display: flex;
        justify-content: center;
        /* Center button */
    }
}

/* Expanded media query to cover Tablets and Small Laptops */
@media (max-width: 1199px) {
    .popular-item-box {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px !important;
        gap: 15px !important;
        height: auto !important;
        /* Override inline height */
    }

    .popular-item-box-img {
        width: 100% !important;
        height: 200px !important;
        flex: none !important;
        margin-bottom: 0px;
        border-radius: 12px;
    }

    .popular-inner-box {
        padding: 0 !important;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: auto !important;
    }

    .popular-inner-box .content-left {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .popular-inner-box .button-box {
        margin-left: 30px !important;
        margin-top: 30px !important;
        width: 100%;
        display: flex;
        justify-content: center;
        /* Center button */
    }

    .popular-item-box-text h3 {
        font-size: 18px !important;
        margin-bottom: 6px !important;
        white-space: normal !important;
        /* Allow text wrapping */
        text-align: center !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
    }

    .price-box h3 {
        font-size: 20px !important;
        /* text-align: center !important; */
        color: #FE724C !important;
        font-weight: 800 !important;
    }

    /* Fixed Button Styling */
    .button-box a {
        padding: 10px 24px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        display: inline-block !important;
        width: auto !important;
    }
}

/* FAQ Section Tablet Fix */
@media (max-width: 991px) {
    .faq-img .img-animetion img {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin-top: 20px;
    }

    .faq-img-two .faq-img-overlay,
    .faq-img-two .faq-img-overlay-two {
        width: 100% !important;
    }

    .faq-main {
        width: 100% !important;
    }
}

/* Contact Us Mobile Styling */
@media (max-width: 991px) {
    .contact-us-item {
        width: 100% !important;
        padding: 30px 20px !important;
        text-align: center;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .contact-us-item .contact-us-inner {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
    }

    .contact-us-item .icon {
        margin-bottom: 10px;
    }

    .contact-us-item .text,
    .contact-us-item .text-two {
        text-align: center !important;
        width: 100%;
    }

    .contact-us-item .text h5,
    .contact-us-item .text-two h5 {
        margin-bottom: 8px;
        font-size: 22px !important;
    }

    .contact-us-item .text p,
    .contact-us-item .text a p,
    .contact-us-item .text-two p,
    .contact-us-item .text-two a p {
        text-align: center !important;
        display: block;
        margin: 0 auto;
    }
}

/* ============================================
   9. USER DASHBOARD & SIDEBAR
   ============================================ */

/* Main Dashboard Section Fix - Premium Framing */
section.dashboard {
    padding: 60px 0 100px 0 !important;
    background-color: #f8fafc !important;
    min-height: 80vh;
}

.dashboard-menu {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #F1F5F9;
    position: sticky;
    top: 100px;
}

/* Redesigned Sidebar Profile Area */
.dashboard-menu-profile-main {
    padding: 35px 20px !important;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%) !important;
    border-bottom: 1px solid #E2E8F0 !important;
    text-align: center;
}

.dashboard-menu-profile-img {
    width: 110px !important;
    height: 110px !important;
    margin: 0 auto 15px !important;
    border-radius: 50% !important;
    padding: 6px !important;
    background: #FFFFFF !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
}

.dashboard-menu-profile-img img {
    border-radius: 50% !important;
}

.dashboard-menu-profile-text h4 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0F172A !important;
    margin-bottom: 4px !important;
}

.dashboard-menu-profile-text p {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #64748B !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Statistic Cards - Premium Overhaul */
.dashboard-item {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 28px !important;
    border: 1px solid #F1F5F9 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-bottom: 24px !important;
}

.dashboard-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(254, 114, 76, 0.2) !important;
}

.dashboard-item-inner {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.dashboard-item-icon {
    width: 70px !important;
    height: 70px !important;
    background: #FFF5F1 !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 70px !important;
}

.dashboard-item-icon i,
.dashboard-item-icon svg {
    font-size: 32px !important;
    color: #FE724C !important;
}

.dashboard-item-text h3 {
    font-size: 34px !important;
    font-weight: 800 !important;
    margin-bottom: 2px !important;
    color: #0F172A !important;
}

.dashboard-item-text p {
    font-size: 14px !important;
    color: #64748B !important;
    margin: 0 !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Settings/Dashboard Main Layout Improvements */
.dashboard-item-taitel {
    margin-bottom: 40px !important;
}

.dashboard-item-taitel h4 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    margin-bottom: 8px !important;
}

.dashboard-item-taitel p {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #FE724C !important;
}

/* ============================================
   10. WISHLIST & DASHBOARD CONTENT
   ============================================ */

.popular-item-box.row-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
    margin-bottom: 20px;
    align-items: center;
}

.popular-item-box-img {
    width: 120px;
    height: 120px;
    min-width: 120px;
    border-radius: 12px;
    overflow: hidden;
}

.popular-inner-box {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popular-item-box-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
}

.popular-inner-item-btm .text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #FE724C;
    margin: 0;
}

/* Empty State Styling - Premium */
.cart_empty_area {
    padding: 60px 20px;
    background: #FFFFFF !important;
    border-radius: 24px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid #F1F5F9;
}

.sorry-img {
    max-width: 280px;
    margin-bottom: 30px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.sorry-text {
    font-size: 32px;
    font-weight: 800;
    color: #1E293B;
}

.cart_empty_area .main-btn-four {
    padding: 16px 40px;
    border-radius: 14px;
    background: #1E293B;
    transition: all 0.3s ease;
}

.cart_empty_area .main-btn-four:hover {
    background: #FE724C;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 114, 76, 0.3);
}

/* ============================================
   11. UTILITIES & ANIMATIONS
   ============================================ */

.line-clamp-1 {
    display: -webkit-box;
    /* -webkit-line-clamp: 1; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.featured-item,
.categories-item,
.popular-item-box {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   12. ADDRESS CARDS & FORMS
   ============================================ */

.dashboard-address-item {
    background: #FFFFFF !important;
    border-radius: 20px !important;
    padding: 24px !important;
    border: 1px solid #F1F5F9 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 24px !important;
    height: 100%;
}

.dashboard-address-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(254, 114, 76, 0.2) !important;
}

.shopping-cart-address-one-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px dashed #E2E8F0 !important;
}

.shopping-cart-address-one-item h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1E293B !important;
    margin: 0 !important;
}

.delet-btn span {
    width: 38px !important;
    height: 38px !important;
    background: #FFF5F5 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.delet-btn span:hover {
    background: #F01543 !important;
}

.delet-btn span:hover svg path {
    stroke: #FFFFFF !important;
}

.dashboard-address-item address {
    font-style: normal !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #64748B !important;
}

.dashboard-address-item address b {
    color: #1E293B !important;
    font-weight: 600 !important;
    margin-left: 5px !important;
}

/* Forms Styling */
.shopping-cart-new-address-from {
    background: #FFFFFF !important;
    border-radius: 24px !important;
    padding: 10px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid #F1F5F9 !important;
}

.shopping-cart-new-address-from label {
    font-weight: 600 !important;
    color: #1E293B !important;
    margin-bottom: 10px !important;
    font-size: 15px !important;
}

.shopping-cart-new-address-from .form-control {
    padding: 14px 20px !important;
    border-radius: 12px !important;
    border: 2px solid #F1F5F9 !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.shopping-cart-new-address-from .form-control:focus {
    border-color: #FE724C !important;
    box-shadow: 0 0 0 4px rgba(254, 114, 76, 0.1) !important;
    outline: none !important;
}

/* ============================================
   13. FLOATING CART & QUICK ADD
   ============================================ */

.floating-cart-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 65px !important;
    height: 65px !important;
    background: linear-gradient(135deg, #FF4757 0%, #FF6B81 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #FFFFFF !important;
    font-size: 24px !important;
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.4) !important;
    z-index: 1000 !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 3px solid #FFFFFF !important;
    text-decoration: none !important;
}

.floating-cart-btn:hover {
    transform: scale(1.1) translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5) !important;
}

.floating-cart-count {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: #FFD93D !important;
    color: #000000 !important;
    width: 24px !important;
    height: 24px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    border: 2px solid #FFFFFF !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.floating-cart-price {
    position: absolute !important;
    bottom: -2px !important;
    right: -2px !important;
    top: auto !important;
    left: auto !important;
    background: #1E293B !important;
    color: #FFFFFF !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border: 3px solid #FFFFFF !important;
    z-index: 10 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    transform: scale(0.5) !important;
    transform-origin: bottom right !important;
    pointer-events: none !important;
}

.floating-cart-btn:hover .floating-cart-price {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
}

/* ============================================
   14. ORDERS TABLE & STATUS BADGES
   ============================================ */

.order-reorderingmain-box {
    background: #FFFFFF !important;
    border-radius: 24px !important;
    padding: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #F1F5F9 !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}

.order-reorderingmain-box-item {
    margin-bottom: 25px !important;
    border-bottom: 1px solid #F1F5F9 !important;
    padding-bottom: 20px !important;
}

.order-reorderingmain-box-item h4 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1E293B !important;
    margin: 0 !important;
}

.order-reorderingmain-box-tabel .table {
    border-collapse: separate !important;
    border-spacing: 0 10px !important;
}

.order-reorderingmain-box-tabel thead th {
    background: #F8FAFC !important;
    border: none !important;
    padding: 15px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #64748B !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.order-reorderingmain-box-tabel tbody tr {
    transition: all 0.3s ease !important;
}

.order-reorderingmain-box-tabel tbody td {
    background: #FFFFFF !important;
    border-top: 1px solid #F1F5F9 !important;
    border-bottom: 1px solid #F1F5F9 !important;
    padding: 20px !important;
    vertical-align: middle !important;
    font-size: 15px !important;
    color: #1E293B !important;
}

.order-reorderingmain-box-tabel tbody tr td:first-child {
    border-left: 1px solid #F1F5F9 !important;
    border-top-left-radius: 12px !important;
    border-bottom-left-radius: 12px !important;
    font-weight: 700 !important;
    color: #FE724C !important;
}

.order-reorderingmain-box-tabel tbody tr td:last-child {
    border-right: 1px solid #F1F5F9 !important;
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
}

.order-reorderingmain-box-tabel tbody tr:hover td {
    background: #FFFAF8 !important;
    border-color: rgba(254, 114, 76, 0.2) !important;
}

/* Status Badges */
.delete-action a.cancel {
    background: #FFF5F1 !important;
    color: #FE724C !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.delete-action a.active {
    background: #EBF5FF !important;
    color: #3B82F6 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.delete-action a.successful {
    background: #ECFDF5 !important;
    color: #10B981 !important;
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-block !important;
}

.view-btn {
    width: 42px !important;
    height: 42px !important;
    background: #F1F5F9 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    color: #475569 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.view-btn:hover {
    background: #FE724C !important;
    color: #FFFFFF !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(254, 114, 76, 0.3) !important;
}

.view-btn i {
    font-size: 16px !important;
}

/* ============================================
   15. SINGLE PRODUCT PAGE ENHANCEMENTS
   ============================================ */

.product-details-page {
    background-color: #F8FAFC;
}

.food-details-head {
    margin-bottom: 30px;
}

.food-details-head h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #1E293B !important;
    margin-bottom: 10px !important;
}

.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-rating-summary .stars i {
    color: #CBD5E1;
    font-size: 16px;
}

.product-rating-summary .stars i.filled {
    color: #FFC403;
}

.product-rating-summary span {
    color: #64748B;
    font-size: 14px;
    font-weight: 500;
}

/* Image Slider Styling */
.food-details-slick-wrapper {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
}

.slider-for-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.slider-for-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    margin-top: 20px;
}

.slider-nav-img {
    padding: 0 10px;
    cursor: pointer;
}

.slider-nav-img img {
    border-radius: 12px;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.slick-current .slider-nav-img img {
    border-color: #FE724C !important;
}

/* Tabs Section */
.custom-tabs .nav-pills {
    background: #FFFFFF !important;
    padding: 8px !important;
    border-radius: 16px !important;
    display: inline-flex !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
    border: none !important;
}

.custom-tabs .nav-link {
    color: #64748B !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    background: transparent !important;
    border: none !important;
}

.custom-tabs .nav-link.active {
    background: #FE724C !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 12px rgba(254, 114, 76, 0.2) !important;
}

/* Selection Sidebar */
.product-selection-sidebar {
    background: #FFFFFF !important;
    padding: 30px !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05) !important;
    position: sticky !important;
    top: 100px !important;
    border: 1px solid #F1F5F9 !important;
}

.side-item-header {
    border-bottom: 1px solid #F1F5F9 !important;
    padding-bottom: 20px !important;
    margin-bottom: 25px !important;
}

.side-item-header .price {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.side-item-header .currency {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #FE724C !important;
}

.side-item-header .amount {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #1E293B !important;
}

.selection-box {
    margin-bottom: 25px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px dashed #E2E8F0 !important;
}

.box-title h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1E293B !important;
    margin-bottom: 15px !important;
}

.box-title .optional {
    color: #94A3B8 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

/* Size Options */
.size-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.size-option-item input {
    display: none !important;
}

.size-option-item label {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 20px !important;
    background: #F8FAFC !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
}

.size-option-item input:checked+label {
    background: #FFF5F1 !important;
    border-color: #FE724C !important;
}

.size-option-item .name {
    font-weight: 700 !important;
    color: #1E293B !important;
}

.size-option-item .price-add {
    color: #64748B !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.size-option-item input:checked+label .name {
    color: #FE724C !important;
}

/* Addon Options */
.addon-options {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.addon-option-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.addon-option-item .left {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.addon-option-item .form-check-input {
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #CBD5E1 !important;
    cursor: pointer !important;
}

.addon-option-item .form-check-input:checked {
    background-color: #FE724C !important;
    border-color: #FE724C !important;
}

.addon-option-item .form-check-label {
    font-weight: 600 !important;
    color: #475569 !important;
    cursor: pointer !important;
}

.addon-option-item .addon-price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #94A3B8 !important;
    margin-left: 10px !important;
}

/* Quantity Control */
.qty-control,
.qty-main {
    display: flex !important;
    align-items: center !important;
    background: #F1F5F9 !important;
    border-radius: 10px !important;
    padding: 5px !important;
}

.btn-qty {
    width: 32px !important;
    height: 32px !important;
    border: none !important;
    background: #FFFFFF !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    color: #FE724C !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
}

.btn-qty:hover {
    background: #FE724C !important;
    color: #FFFFFF !important;
}

.qty-val,
#main-qty {
    width: 40px !important;
    text-align: center !important;
    font-weight: 700 !important;
    color: #1E293B !important;
}

#main-qty {
    border: none !important;
    background: transparent !important;
}

/* Add to Cart Button Full */
.quantity-add-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}

.qty-main {
    padding: 10px !important;
    justify-content: space-between !important;
}

.qty-main .btn-qty {
    width: 44px !important;
    height: 44px !important;
    font-size: 16px !important;
}

.add-to-cart-btn-full {
    width: 100% !important;
    padding: 18px !important;
    background: linear-gradient(135deg, #FF4757 0%, #FF6B81 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    color: #FFFFFF !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    box-shadow: 0 10px 25px rgba(255, 71, 87, 0.3) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.add-to-cart-btn-full:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.4) !important;
}

/* Star Rating Selector in Form */
.rating-group {
    display: inline-flex !important;
    flex-direction: row-reverse !important;
}

.rating-input {
    display: none !important;
}

.rating-group label {
    font-size: 28px !important;
    color: #CBD5E1 !important;
    cursor: pointer !important;
    padding: 0 5px !important;
}

.rating-input:checked~label,
.rating-group label:hover,
.rating-group label:hover~label {
    color: #FFC403 !important;
}

/* Related Products Section */
.related-products-section {
    padding-top: 80px !important;
    border-top: 1px solid #E2E8F0 !important;
}

/* Promo Cards */
.promo-card {
    border-radius: 20px !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease !important;
}

.promo-card:hover {
    transform: scale(1.02) !important;
}


/* Video Styles */
.vedio-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(254, 114, 76, 0.9);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(254, 114, 76, 0.4);
    animation: pulse-orange 2s infinite;
}

.video-play-btn:hover {
    background: #FE724C;
    color: #FFFFFF;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 114, 76, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(254, 114, 76, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(254, 114, 76, 0);
    }
}

/* Review Item Styling */
.food-review-item {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.food-review-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.food-review-item-top .stars i {
    color: #CBD5E1;
    font-size: 14px;
}

.food-review-item-top .stars i.filled {
    color: #FFC403;
}

.food-review-item-top .text span {
    color: #94A3B8;
    font-size: 13px;
}

.food-review-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #F8FAFC;
}

.food-review-inner-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.food-review-inner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-review-inner-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin: 0;
}

/* Review Form Enhancements */
.comment-from-box-main {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.comment-from-box-text h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 10px;
}

.comment-from-box-text p {
    color: #64748B;
    font-size: 14px;
}

/* ============================================
   10. CART PAGE PREMIUM ENHANCEMENTS
   ============================================ */

/* Banner Section */
.inner-banner {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%) !important;
    padding: 140px 0 80px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    min-height: 280px;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(254, 114, 76, 0.15), transparent 60%);
    z-index: 1;
}

.inner-banner-head h1 {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 2;
}

.inner-banner-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.inner-banner-item .left a {
    color: #94A3B8;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-banner-item .left a:hover {
    color: #FE724C;
}

.inner-banner-item .icon span svg path {
    stroke: #64748B;
}

.inner-banner-item .left span {
    color: #FE724C;
    font-weight: 700;
    font-size: 16px;
}

/* Cart Section Layout */
.shopping-cart {
    background: #F8FAFC;
    padding: 0px 0 0px;
}

.tabel-main {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    padding: 20px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
}

@media (min-width: 992px) {
    .tabel-main {
        padding: 40px;
    }
}

/* Table Styling */
.table {
    margin-bottom: 0;
    vertical-align: middle;
}

.table thead th {
    background: #F8FAFC;
    border: none;
    border-radius: 12px;
    color: #64748B;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 16px 24px;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.table tbody td {
    padding: 16px 12px;
    /* Reduced padding from 24px 16px */
    border-bottom: 1px solid #F1F5F9;
    vertical-align: middle;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

/* ... (keep existing styles) ... */

/* Action Buttons */
.tabel-modal-btn {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    /* Align right by default */
}

@media (min-width: 992px) {
    .tabel-modal-btn {
        gap: 8px;
        /* Consistent gap */
    }
}

.view-btn {
    background: #FFF5F1;
    color: #FE724C;
    border: none;
    height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.view-btn span svg {
    width: 18px;
    height: 18px;
}

.view-btn span svg path {
    fill: #FE724C;
    transition: fill 0.3s ease;
}

.view-btn:hover {
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 114, 76, 0.2);
}

.view-btn:hover span svg path {
    fill: white;
}

.tabel-modal-btn a {
    background: #FEF2F2;
    /* Light red */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tabel-modal-btn a span svg {
    width: 16px;
    height: 16px;
}

.tabel-modal-btn a span svg path {
    fill: #EF4444;
    /* Red */
    transition: fill 0.3s ease;
}

.tabel-modal-btn a:hover {
    background: #EF4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.tabel-modal-btn a:hover span svg path {
    fill: white;
}

/* Process to Checkout Button */
.tabel-main-btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
    border-top: 2px solid #F1F5F9;
    padding-top: 32px;
}

/* Ensure Main Buttons Overrides */
a.main-btn-six,
button.main-btn-six {
    background: linear-gradient(135deg, #FE724C 0%, #FF8A5B 100%) !important;
    color: white !important;
    padding: 16px 36px !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    box-shadow: 0 10px 30px rgba(254, 114, 76, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

@media (min-width: 768px) {

    a.main-btn-six,
    button.main-btn-six {
        padding: 20px 48px !important;
        border-radius: 16px !important;
        font-size: 18px !important;
    }
}

a.main-btn-six:hover,
button.main-btn-six:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(254, 114, 76, 0.45) !important;
    color: white !important;
}

a.main-btn-six span svg,
button.main-btn-six span svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

a.main-btn-six:hover span svg,
button.main-btn-six:hover span svg {
    transform: translateX(6px);
}

/* ============================================
   15. MODAL SCROLLBAR & BODY LOCK FIX
   ============================================ */

/* Forcefully hide body scrollbar when any modal is active */
body.modal-open {
    overflow: hidden !important;
    overflow-y: hidden !important;
    position: fixed !important;
    /* Extremely robust way to lock scroll */
    width: 100% !important;
    height: 100% !important;
}

/* Hide scrollbar tracks across browsers when modal is active */
body.modal-open::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

/* Ensure modal content handles its own scroll only if needed */
.modal {
    padding: 15px !important;
    background: rgba(0, 0, 0, 0.5);
    /* Dimmed background for better focus */
}

/* Fix About Us Stats Alignment on Mobile */
@media (max-width: 991px) {
    .about-us-item {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
        text-align: left !important;
        padding: 10px 0;
    }

    .about-us-item .icon {
        flex-shrink: 0 !important;
        margin-top: -15px !important;
        /* Ensure icon doesn't shrink */
    }

    .about-us-item .text {
        padding-top: 0 !important;
        /* Remove inherited padding causing misalignment */
    }

    .about-us-item .text h3 {
        margin-bottom: 5px !important;
        /* Spacing between title and subtitle */
    }
}

.modal-dialog {
    margin: 1.75rem auto;
}

/* Specific fix for the Modern Product Modal layout */
.modern-product-modal {
    max-height: 98vh;
    border-radius: 20px;
    overflow: hidden !important;
}

@media (min-width: 992px) {
    .product-modal-details {
        max-height: 85vh;
        overflow-y: auto !important;
        scrollbar-width: thin;
        scrollbar-color: #FE724C #f1f5f9;
        padding-right: 15px !important;
    }

    .product-modal-details::-webkit-scrollbar {
        width: 6px;
    }

    .product-modal-details::-webkit-scrollbar-thumb {
        background: #FE724C;
        border-radius: 10px;
    }
}

.featured-item {
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 12px !important;
}

.featured-item-img {
    height: 280px !important;
    overflow: hidden !important;
}

.featured-item-img img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

.featured-item-text {
    padding: 15px !important;
}

.featured-item-btn {
    padding: 0 15px 15px 15px !important;
}

/* Text Item Styling */
.featured-item .text-item {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    align-items: stretch !important;
}

/* Title Row */
.featured-item-text .d-flex.align-items-center.justify-content-between {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Title */
.featured-item .text-item-center {
    text-align: left !important;
    flex: 1 !important;
}

.featured-item .text-item-center h3 {
    margin-bottom: 0 !important;
    display: block !important;
}

.featured-item .text-item-center h3 a {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    text-decoration: none !important;
    display: block !important;
    white-space: normal !important;
    line-height: 1.3;
    text-align: left !important;
}

/* Icons (Checkmark etc) */
.featured-item .text-item-center-item-box {
    display: flex !important;
    margin-left: 10px !important;
}

.featured-item .text-item-center-item .icon svg path {
    stroke: #FE724C !important;
}

/* Price - Left Aligned */
.featured-item .left {
    margin-top: 5px !important;
    width: 100% !important;
    text-align: left !important;
    justify-content: flex-start !important;
    display: flex !important;
}

.featured-item .left h3 {
    font-size: 18px !important;
    color: #FE724C !important;
    font-weight: 800 !important;
    margin: 0 !important;
}

/* Add to Cart Button */
.featured-item-btn .main-btn-three {
    padding: 10px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    width: 100% !important;
    border-radius: 12px !important;
    background: #FE724C !important;
    color: #fff !important;
    border: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-transform: capitalize !important;
    box-shadow: 0 4px 10px rgba(254, 114, 76, 0.25) !important;
    gap: 8px;
    transition: all 0.3s ease;
}

.featured-item-btn .main-btn-three:hover {
    background: #e65b35 !important;
    box-shadow: 0 6px 15px rgba(254, 114, 76, 0.35) !important;
    transform: translateY(-2px);
}

/* Ensure consistent styling across all responsive breakpoints */
@media (max-width: 991px) {
    .featured-item {
        padding: 0 !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

    .featured-item-img {
        height: 280px !important;
        overflow: hidden !important;
    }

    .featured-item-img img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .featured-item-text {
        padding: 15px !important;
    }

    .featured-item-btn {
        padding: 0 15px 15px 15px !important;
    }
}

@media (max-width: 767px) {
    .featured-item {
        padding: 0 !important;
        overflow: hidden !important;
        border-radius: 12px !important;
    }

    .featured-item-img {
        height: 280px !important;
        overflow: hidden !important;
    }

    .featured-item-img img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .featured-item-text {
        padding: 15px !important;
    }

    .featured-item-btn {
        padding: 0 15px 15px 15px !important;
    }
}