/*
 * Food Menu Products Styles
 */

 .fmp-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: 'Inter', 'Roboto', sans-serif; /* Modern typography */
}

/* Filter Bar Styles */
.fmp-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    position: sticky;
    top: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.fmp-filter-btn {
    background: transparent;
    border: 2px solid #f0f0f0;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.fmp-filter-btn:hover {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.fmp-filter-btn.active {
    background: #b0d025;
    border-color: #b0d025;
    color: #fff;
    box-shadow: 0 4px 15px rgba(176, 208, 37, 0.4);
}

/* Grid Styles */
.fmp-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    min-height: 500px; /* Prevents jarring layout jumps */
}

.fmp-menu-item {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
}

.fmp-menu-item.fmp-hiding {
    opacity: 0;
    transform: scale(0.95);
}

.fmp-menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fmp-item-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f4f4f4; /* Fallback color */
}

.fmp-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fmp-menu-item:hover .fmp-item-image img {
    transform: scale(1.05); /* Slight zoom on hover */
}

.fmp-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    background: #f0f0f0;
}

.fmp-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.fmp-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    border-bottom: 2px dashed #f0f0f0;
    padding-bottom: 10px;
}

.fmp-item-title {
    margin: 0;
    font-size: 1.25rem;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
}

.fmp-item-prices {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.fmp-price-box {
    background: #fff5f5;
    border: 1px solid #ffe3e3;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fmp-price-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.fmp-price-value {
    font-weight: 700;
    color: #ff6b6b;
    font-size: 1.1rem;
    white-space: nowrap;
}

.fmp-item-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.fmp-item-description p {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fmp-menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .fmp-filter-bar {
        position: static;
        padding: 0;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px; /* for scrollbar space */
    }
    
    .fmp-filter-btn {
        flex: 0 0 auto;
    }
    
    .fmp-order-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
}

/* Order Buttons */
.fmp-order-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.fmp-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    color: #fff !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fmp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.fmp-btn-zomato {
    background-color: #E23744;
}

.fmp-btn-zomato:hover {
    background-color: #c92c37;
}

.fmp-btn-swiggy {
    background-color: #FC8019;
}

.fmp-btn-swiggy:hover {
    background-color: #e56d08;
}

/* ==========================================================
   PREMIUM MEGA MENU REDESIGN
   ========================================================== */

/* 1. Floating Box Aesthetic */
li.fmp-premium-mega-menu .sub-menu, 
li.fmp-premium-mega-menu .dt-mega-menu-wrap {
    border-radius: 16px !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    background-color: #ffffff !important;
    padding: 15px 10px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* 2. Brand Highlights (Main Column Headers) */
li.fmp-premium-mega-menu .fmp-mega-col-title > a {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #b0d025 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-bottom: 2px dashed #f0f0f0 !important;
    padding-bottom: 12px !important;
    margin-bottom: 15px !important;
    display: block !important;
    text-align: left !important;
}

/* 3. Sub-category Badges (Pills) */
li.fmp-premium-mega-menu .fmp-mega-sub-badge > a {
    display: inline-block !important;
    background-color: #f7f9f2 !important;
    color: #555 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    margin-top: 10px !important;
    margin-bottom: 5px !important;
    letter-spacing: 0.5px !important;
    border: 1px solid #eaeaea !important;
    text-transform: uppercase !important;
}

/* 4. Product Links with Micro-Animations */
li.fmp-premium-mega-menu .fmp-mega-product-link > a {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #444 !important;
    padding: 8px 12px !important;
    border-radius: 8px !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    display: block !important;
}

li.fmp-premium-mega-menu .fmp-mega-product-link > a:hover {
    background-color: #f7faeb !important; /* Very light brand green */
    color: #b0d025 !important;
    transform: translateX(6px) !important; /* Smooth slide right */
    box-shadow: -2px 0 0 #b0d025 !important; /* Left highlight */
}

/* 5. Promotional Image (Bypassing theme strips) */
li.fmp-premium-mega-menu .fmp-mega-promo-col {
    background-image: url('/wp-content/uploads/2026/07/mega_menu_promo_1785181922540.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 12px !important;
    min-width: 220px !important;
    min-height: 250px !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}

li.fmp-premium-mega-menu .fmp-mega-promo-col:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

/* Hide the placeholder text of the promo column */
li.fmp-premium-mega-menu .fmp-mega-promo-col > a {
    display: none !important;
}

/* ==========================================================
   USER CUSTOM CSS
   ========================================================== */
.phantom-sticky .sticky-on.masthead:not(.masthead-mobile) {
    background: #def086 none repeat center center !important;
    background-size: auto;
}
.sticky-on .main-nav > li:not(.wpml-ls-item) > a .menu-text, 
#phantom .main-nav > li:not(.wpml-ls-item) > a .menu-text {
    color: #000000;
}
.sticky-on .main-nav.level-arrows-on > li.has-children > a .menu-text:after, 
#phantom .main-nav.level-arrows-on > li.has-children > a .menu-text:after {
    color: #000000;
}
.sticky-on .mini-widgets .start-pro {
    color: #000000 !important;
    border: 2px solid #000000;
}

/* Make menu font into About from menu (Capitalize) */
.masthead .main-nav > li > a .menu-text {
    text-transform: capitalize !important;
}

/* ==========================================================
   FOOTER REDESIGN
   ========================================================== */
.footer {
    background-image: none !important;
    background-color: #def086 !important; /* Match menu theme */
    color: #000000 !important;
    padding: 60px 0 !important;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer .widget-title {
    color: #000000 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px;
    margin-bottom: 25px !important;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    display: inline-block;
}

.footer, .footer p, .footer span, .footer div, .footer a {
    color: #000000 !important;
}

/* Clean up links */
.footer a {
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #4F6F1B !important; /* Dark green accent */
    transform: translateX(3px);
    display: inline-block;
}

/* Footer menus */
.footer .menu li {
    border-bottom: 1px dashed rgba(0,0,0,0.2) !important;
    padding: 10px 0 !important;
}

.footer .menu li:last-child {
    border-bottom: none !important;
}

/* Footer logo text */
.footer-logo-text h4 {
    color: #000000 !important;
    font-weight: 800 !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
}

/* Address and Contact */
.footer .address, .footer .contect {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer .fa, .footer .fas {
    color: #4F6F1B !important;
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Quick Inquiry Button */
.footer .qi-home a {
    display: inline-block;
    background-color: #000000 !important;
    color: #def086 !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.footer .qi-home a:hover {
    background-color: #4F6F1B !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000000 !important;
    color: #def086 !important;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social-icons .social-icon:hover {
    background-color: #4F6F1B !important;
    color: #ffffff !important;
    transform: translateY(-5px);
}

/* Bottom Bar (Copyright) */
.bottom-bar {
    background-color: #000000 !important;
    color: #def086 !important;
    padding: 20px 0;
    text-align: center;
}

.bottom-bar p, .bottom-bar span, .bottom-bar a {
    color: #def086 !important;
    margin: 0;
}

/* Fix WPBakery columns in footer */
.footer .contect {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
}
.footer .contect .wpb_column {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer .address p {
    margin: 0 !important;
}
.footer .widget {
    margin-bottom: 40px !important;
}
