/* ===== PREMIUM PARTY HERO ===== */

/* ===== PREMIUM PARTY HERO - REFINED ===== */

.party-hero {
    position: relative;
    width: 100%;
    height: 100svh; /* Perfect height on mobile browsers */
    min-height: 800px; /* Room for all content */
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns content toward top for better visibility */
    padding: 0 20px;
    overflow: hidden;
    text-align: center;
}

.party-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://assets.mithora.in/images/party-thali-10-15.webp') center/cover no-repeat;
    z-index: 1;
}

.party-hero-overlay {
    position: absolute;
    inset: 0;
    /* 0% (Top): 98% black - hides image edges near header
       50% (Center): 75% black - heavily tints the photo for text clarity 
       100% (Bottom): 100% pure black - makes buttons glow like light
    */
    background: linear-gradient(180deg, 
        rgba(0,0,0,0.98) 0%, 
        rgba(0,0,0,0.75) 50%, 
        rgba(0,0,0,1) 100%);
    z-index: 2;
}

/* Optional: Add a subtle glow to the gold text for extra contrast */
.text-gold {
    color: #F4C430;
    text-shadow: 0 0 30px rgba(244, 196, 48, 0.4);
}

.party-hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    color: #ffffff;
    padding-top: 12vh; /* Ensures text starts below your navigation bar */
}

/* BADGE STYLING */
.hero-badge-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.hero-badge {
    background: rgba(244, 196, 48, 0.15);
    border: 1px solid rgba(244, 196, 48, 0.4);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #F4C430;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    white-space: nowrap;
}

.party-title {
    font-size: clamp(2.2rem, 9vw, 3.8rem);
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 900;
}

.text-gold {
    color: #F4C430;
    /* Subtle glow effect for premium feel */
    text-shadow: 0 0 20px rgba(244, 196, 48, 0.2);
}

.vernacular-quote {
    font-size: 1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 auto 30px;
    max-width: 450px;
    opacity: 0.95;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn {
    width: 100%;
    max-width: 320px;
    height: 60px;
    border-radius: 50px; 
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary {
    background: #F4C430;
    color: #2D1B14;
    box-shadow: 0 10px 25px rgba(244, 196, 48, 0.3);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* WHATSAPP HOOK */
.hero-whatsapp-hook {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.whatsapp-prompt {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.wa-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    background: rgba(37, 211, 102, 0.15);
    padding: 10px 22px;
    border-radius: 50px;
    border: 1px solid rgba(37, 211, 102, 0.4);
}

.wa-icon-circle {
    background: #25D366;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FOOTER LINKS */
.hero-special-link-wrapper {
    margin-top: 30px;
}

.hero-special-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
}

/* DESKTOP REFINEMENTS */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
    .party-hero-content {
        padding-top: 15vh;
        max-width: 900px;
    }
    .hero-desc {
        font-size: 1.15rem;
    }
}

/* Updated Trust Section - Removing bottom space */
.mithora-trust-section {
    background: #FCF8F0; /* Your Champagne Color */
    padding: 60px 20px 0px 20px; /* Changed bottom from 60px to 0px */
    border-top: 2px solid #F4C430;
    position: relative;
    z-index: 10;
}

/* Updated Glass Card - Removing top margin and matching background */
.carousel-intro-glass {
    max-width: 700px;
    /* margin: 40px auto;  <-- REMOVE THIS OLD LINE */
    margin: 0 auto 40px auto; /* Sets top margin to 0 */
    background: #ffffff; 
    border: 1px solid #e2e8f0;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    
    /* Pull it slightly UP to overlap the champagne background for a tight fit */
    position: relative;
    top: -20px; 
    z-index: 20;
}

.intro-flex {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.intro-icon {
    font-size: 2rem;
    background: #FCF8F0; /* Matches the Trust Section background */
    width: 65px;
    height: 65px;
    display: flex;
    flex-direction: column; /* Center emoji properly */
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(244, 196, 48, 0.2);
}

.intro-text strong {
    display: block;
    font-size: 1.2rem;
    color: #2D1B14; /* Match your deep theme color */
    margin-bottom: 6px;
    font-family: 'Playfair Display', serif; /* Keeps it premium */
}

.intro-text p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Mobile Tweak - Compact & Clean */
@media (max-width: 600px) {
    .carousel-intro-glass {
        margin: -15px 15px 30px; /* Side margins for mobile breathability */
        padding: 20px;
    }
    
    .intro-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .intro-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .intro-text strong {
        font-size: 1.1rem;
    }

    .intro-text p {
        font-size: 0.88rem;
    }
}
/* Pocket Friendly */
:root {
    --primary: #059669;
    --text-main: #1e293b;
}

.heritage-tag-v3 {
    display: inline-block; 
    margin-bottom: 12px; 
    border: 1.5px solid #059669; 
    color: #059669; 
    font-size: 11px; 
    font-weight: 800; 
    letter-spacing: 1.5px; 
    padding: 4px 12px; 
    border-radius: 6px; 
    text-transform: uppercase;
}

.mithora-premium-card {
    max-width: 400px;
    margin: 15px auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.segmented-control {
    position: relative;
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 14px;
    margin-bottom: 24px;
}
.tab-slider {
    position: absolute;
    width: calc(33.33% - 4px);
    height: calc(100% - 8px);
    background: white;
    border-radius: 11px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tab-btn {
    flex: 1;
    position: relative;
    z-index: 1;
    border: none;
    background: none;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: color 0.3s;
}
.tab-btn.active { color: var(--text-main); }

.pkg-header { text-align: center; margin-bottom: 20px; }
.status-badge { 
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px;
    color: var(--primary); background: #ecfdf5; padding: 4px 10px; border-radius: 100px; font-weight: 800;
}
.pkg-header h3 { font-size: 24px; margin: 8px 0 4px; color: var(--text-main); font-weight: 900; }
.rate-tag { font-size: 12px; color: #94a3b8; font-weight: 500; }

.price-stack { display: flex; flex-direction: column; gap: 10px; }
.price-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px; border-radius: 16px; border: 1px solid #f1f5f9;
    transition: transform 0.2s;
}
.price-row.featured {
    background: #fffbeb; border-color: #fde68a; transform: scale(1.02);
}
.meta .count { font-weight: 800; font-size: 16px; color: var(--text-main); }
.meta .details { font-size: 11px; color: #64748b; margin-top: 2px; }
.cur { display: block; font-weight: 900; font-size: 18px; color: var(--text-main); }
.old { font-size: 12px; color: #cbd5e1; text-decoration: line-through; }

.card-footer { margin-top: 24px; text-align: center; }
.promo-pill {
    display: inline-block; background: #fff1f2; color: #e11d48;
    padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 800; margin-bottom: 16px;
}
.wa-button {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #059669; color: white !important; text-decoration: none;
    padding: 16px; border-radius: 100px;
    font-weight: 800; font-size: 16px;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    transition: 0.3s;
}
.wa-button:hover { transform: translateY(-2px); }
.helper-text { font-size: 11px; color: #94a3b8; margin-top: 12px; }

.content-fade { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Mithora Promise*/
/* Wrapper & Header */
.mithora-trust-wrapper {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, sans-serif;
    max-width: 1100px;
    margin: 0 auto;
}

.header-content { text-align: center; margin-bottom: 40px; }

.trust-badge {
    font-size: 11px;
    font-weight: 800;
    color: #059669;
    letter-spacing: 1.5px;
    background: #ecfdf4;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.header-content h2 {
    font-size: 32px;
    color: #0f172a;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtext {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium Compact Grid */
.premium-reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 on Desktop */
    gap: 20px;
}

.reason-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.reason-card:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.06);
    border-color: #059669;
}

/* Icons */
.card-side-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 14px;
    background: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.green-glow { color: #059669; }
.amber-glow { color: #d97706; }
.purple-glow { color: #7c3aed; }
.blue-glow { color: #2563eb; }

/* Text Content */
.card-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
}

.card-info p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.card-info p strong {
    color: #334155;
}

/* Mobile Polish - Compact Stack */
@media (max-width: 768px) {
    .premium-reason-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 12px;
    }

    .mithora-trust-wrapper {
        padding: 40px 15px;
    }

    .header-content h2 {
        font-size: 26px;
    }

    .reason-card {
        padding: 18px;
        gap: 14px;
    }

    .card-side-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 20px;
    }

    .card-info h3 {
        font-size: 16px;
    }

    .card-info p {
        font-size: 13px;
    }
}
/* Party Thali Packages */



/* CLEAN SEO SECTION */
.db-seo-section {
    padding: 30px 15px 10px; /* Slight top padding increase since icon is gone */
    text-align: center;
    max-width: 440px;
    margin: 0 auto;
    font-family: var(--brand-font-main);
}

.db-status-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: #f0fdf4; color: var(--brand-green);
    padding: 5px 14px; border-radius: 50px;
    font-size: 10px; font-weight: 800; letter-spacing: 0.8px;
    margin-bottom: 20px; border: 1px solid #dcfce7;
}

.db-dot {
    width: 7px; height: 7px; background: var(--brand-green);
    border-radius: 50%; animation: db-blink 1.5s infinite;
}

.db-seo-title {
    font-family: var(--brand-font-title);
    font-size: 24px; color: var(--brand-dark);
    line-height: 1.25; margin-bottom: 12px;
    font-weight: 900;
}

.db-seo-desc { 
    font-size: 14.5px; color: #4b5563; line-height: 1.6; 
    margin-bottom: 18px; padding: 0 5px;
}
.db-seo-desc strong { color: var(--brand-dark); font-weight: 700; }

.db-location-tag {
    font-size: 11px; font-weight: 700; color: #64748b;
    background: #f1f5f9; padding: 10px; border-radius: 12px;
    line-height: 1.4;
}

/* PACKAGE STYLING */
.mithora-catering-v3 {
    max-width: 440px; margin: 10px auto 40px; padding: 25px 15px;
    background: #ffffff; border-radius: 28px; border: 1px solid #f1f5f9;
    font-family: var(--brand-font-main);
    box-shadow: 0 15px 45px rgba(45, 27, 20, 0.08);
}

.heritage-tag-v3 { font-size: 10px; font-weight: 800; color: #b45309; letter-spacing: 1.2px; display: block; text-align: center; }

.catering-header h1 { 
    font-family: var(--brand-font-title); font-size: 26px; 
    color: var(--brand-dark); text-align: center; margin: 8px 0;
    font-weight: 900;
}
.catering-header p { font-size: 13px; color: #64748b; text-align: center; font-weight: 500; }

.package-tabs-v3 {
    position: relative; display: flex; background: #f8fafc; 
    padding: 4px; border-radius: 12px; margin: 20px 0; border: 1px solid #f1f5f9;
}
.tab-slider-v3 {
    position: absolute; width: calc(33.33% - 8px); height: calc(100% - 8px);
    background: var(--brand-dark); border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tab-btn-v3 {
    flex: 1; position: relative; z-index: 1; border: none; background: none;
    padding: 12px 0; font-size: 11px; font-weight: 700; color: #64748b; cursor: pointer;
}
.tab-btn-v3.active { color: #ffffff; }

.menu-card-v3 { background: #ffffff; border-radius: 20px; border: 1px solid #f1f5f9; overflow: hidden; }
.card-top-v3 { padding: 20px; }
.tag-v3 { font-size: 10px; font-weight: 800; color: #b45309; margin-bottom: 6px; display: block; }
.menu-card-v3 h3 { font-family: var(--brand-font-title); font-size: 20px; color: var(--brand-dark); margin: 0 0 15px 0; font-weight: 900; }

.menu-grid-v3 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.menu-item-v3 { font-size: 12.5px; color: #374151; font-weight: 500; }
.menu-item-v3 span { color: var(--brand-gold); font-weight: bold; }

.price-section-v3 { padding: 18px; background: var(--brand-cream); border-top: 1px dashed #cbd5e1; text-align: center; }
.price-label-v3 { font-size: 10px; color: #64748b; font-weight: 700; text-transform: uppercase; display: block; letter-spacing: 0.5px; }
.price-total-v3 { font-size: 32px; font-weight: 800; color: var(--brand-dark); letter-spacing: -0.5px; }

.btn-whatsapp-v3 {
    display: flex; flex-direction: column; background: #25D366; 
    color: white !important; text-decoration: none; padding: 15px; border-radius: 14px;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
    text-align: center;
}
.cta-main { font-size: 17px; font-weight: 800; }
.cta-sub { font-size: 11px; opacity: 0.95; margin-top: 1px; font-weight: 400; }

.scarcity-v3 { font-size: 11px; color: #94a3b8; margin-top: 10px; font-style: italic; text-align: center; }
.ghee-stamp-v3 { font-size: 13px; font-weight: 700; color: var(--brand-green); margin-bottom: 12px; text-align: center; }
.check-icon-v3 { background: var(--brand-green); color: white; padding: 1px 4px; border-radius: 50%; font-size: 9px; }

@keyframes db-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.fade-in-v3 { animation: fadeInUp 0.4s ease both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 380px) { 
    .menu-grid-v3 { grid-template-columns: 1fr; }
    .db-seo-title { font-size: 21px; }
}
/* Quick Bite & Starters */

.ff-seo-block{
    max-width:750px;
    margin:25px auto 10px;
    padding:20px 22px;
    background:#f0fdf4;
    border-left:5px solid #059669;
    border-radius:12px;
    font-size:14px;
    line-height:1.7;
    color:#334155;
    box-shadow:0 6px 16px rgba(0,0,0,0.04);
}

.ff-seo-block strong{
    color:#065f46;
    font-weight:700;
}

.ff-seo-small{
    margin-top:10px;
    font-size:13px;
    color:#64748b;
}
/* Mithora Fast Food Section Styles */
.fast-food-container {
    padding: 60px 20px;
    background: #ffffff;
    max-width: 1100px;
    margin: 0 auto;
}

.ff-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.ff-menu-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 25px;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.ff-menu-card:hover {
    border-color: #059669; /* Using Mithora's primary green */
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.ff-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    border-bottom: 2px solid #F4C430; /* Using Mithora's gold */
    padding-bottom: 10px;
}

.ff-icon { font-size: 24px; }

.ff-card-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.ff-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ff-item-list li {
    padding: 10px 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px dashed #e2e8f0;
}

.ff-item-list li:last-child { border-bottom: none; }

.ff-cta-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .fast-food-container { padding: 40px 15px; }
    .ff-menu-grid { grid-template-columns: 1fr; gap: 15px; }
}
/* Estimator*/

#mithora-app-sheet { position: fixed; bottom: -100%; left: 0; width: 100%; height: 90vh; background: white; z-index: 2001; transition: bottom 0.4s; border-radius: 24px 24px 0 0; display: flex; flex-direction: column; }
#mithora-app-sheet.active { bottom: 0; }
#mithora-app-container { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.steps-wrapper { flex: 1; overflow-y: auto; padding: 15px; }
.items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.item-card { background: #fff; border-radius: 18px; padding: 8px; border: 1px solid #eee; position: relative; }
.item-card.selected { border-color: #F4C430; background: #FFFDF2; }
.item-card img { width: 100%; height: 100px; border-radius: 14px; object-fit: cover; }
.item-info strong { font-size: 13px; display: block; margin-top: 8px; color: #2D1B14; }
.qty-badge, .comp-badge { position: absolute; top: 6px; left: 6px; color: white; font-size: 9px; padding: 3px 7px; border-radius: 6px; z-index: 2; }
.qty-badge { background: rgba(0,0,0,0.6); }
.comp-badge { background: #F4C430; color: #2D1B14; font-weight: 800; }
.add-btn { width: 100%; background: #F4C430; border: none; padding: 9px; border-radius: 12px; font-weight: 700; margin-top: 5px; }
.qty-controls { display: flex; justify-content: space-between; align-items: center; background: #f0f0f0; border-radius: 12px; padding: 4px; margin-top: 6px; }
.qty-btn { width: 30px; height: 30px; border: none; background: #fff; border-radius: 8px; font-weight: 800; }
.custom-slider { width: 100%; accent-color: #F4C430; height: 35px; }
.step { display: none; }
.step.active { display: block; }
.step-title { font-size: 20px; font-weight: 800; margin-bottom: 15px; }
.hidden { display: none; }
@media (min-width: 768px) { #mithora-app-sheet { width: 450px; left: 50%; transform: translateX(-50%); } #mithora-app-sheet.active { bottom: 5vh; transform: translateX(-50%); } }
/* Loader */
.shimmer {
    background: linear-gradient(90deg, #eff1f3 4%, #e2e2e2 25%, #eff1f3 36%);
    background-size: 1000px 100%;
    animation: shimmer 1.5s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Bin Button Style */
.bin-btn { 
    position: absolute; 
    top: 8px; 
    right: 8px; 
    background: #fff; 
    border: 1.5px solid #ff00002b; /* Subtle red border */
    border-radius: 8px; 
    width: 32px; /* Slightly larger for better tap target */
    height: 32px; 
    z-index: 10; 
    cursor: pointer; 
    color: #d11; 
    font-size: 14px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 2px 8px rgba(209, 17, 17, 0.15); 
    transition: all 0.2s ease;
}

.bin-btn:active {
    transform: scale(0.9);
    background: #fff0f0;
}

.bin-btn.hidden { display: none !important; }
@keyframes confettiPop {
    0% { transform: translate(-50%, -50%) scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(10deg); opacity: 0; }
}
@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100vh) scale(0.5) rotate(360deg); opacity: 0; }
}
/* Popular Part Food */

.party-alt-menu {
    padding: 60px 20px;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
}

.header-content { text-align: center; margin-bottom: 40px; }
.party-alt-menu h2 { font-size: 32px; font-weight: 800; letter-spacing: -1px; margin-bottom: 10px; color: #0f172a; }
.section-subtext { color: #64748b; font-size: 16px; max-width: 600px; margin: 0 auto; line-height: 1.5; }

/* MOBILE-FIRST STACKED GRID */
.alt-menu-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column for stacking on mobile */
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card Styling */
.alt-menu-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Interactive Hover */
.alt-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
}

.alt-badge {
    position: absolute;
    top: -12px; left: 25px;
    padding: 5px 14px; border-radius: 30px;
    font-size: 10px; font-weight: 800; color: #fff;
    text-transform: uppercase;
}
.orange { background: #f97316; box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3); }
.gold { background: #d97706; box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3); }

.card-title-row { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.alt-menu-card h3 { font-size: 20px; font-weight: 700; color: #1e293b; margin: 0; line-height: 1.3; }
.emoji-icon { font-size: 24px; }

.quantity-list { list-style: none; padding: 0; margin: 0 0 25px 0; flex-grow: 1; }
.quantity-list li {
    display: flex; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid #f1f5f9;
    font-size: 14.5px; color: #475569;
}
.quantity-list li strong { color: #0f172a; font-weight: 600; }

.price-footer { margin-bottom: 20px; }
.price-label { font-size: 10px; font-weight: 700; color: #94a3b8; margin-bottom: 2px; display: block; }
.alt-price { font-size: 24px; font-weight: 800; color: #059669; letter-spacing: -0.5px; }
.alt-meta { font-size: 12px; color: #64748b; font-weight: 500; }

.btn-party-action {
    display: block; text-align: center; color: #fff !important;
    text-decoration: none; padding: 16px; border-radius: 16px;
    font-weight: 700; font-size: 16px; transition: all 0.2s;
}
.btn-emerald { background: #059669; box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2); }
.btn-amber { background: #d97706; box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2); }

.alt-footer-note { text-align: center; color: #94a3b8; font-size: 12px; margin-top: 40px; }

/* DESKTOP VIEW: Use 3 columns */
@media (min-width: 992px) {
    .alt-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* TABLET VIEW: Use 2 columns */
@media (min-width: 600px) and (max-width: 991px) {
    .alt-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Party Catering for All Occasion*/

.occasion-catering{
padding:60px 20px;
background:#fafafa;
text-align:center;
}

.occasion-catering h2{
font-size:28px;
margin-bottom:15px;
color:#1f2937;
}

.occasion-intro{
max-width:750px;
margin:auto;
color:#64748b;
font-size:15px;
line-height:1.6;
margin-bottom:35px;
}

.occasion-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
max-width:1000px;
margin:auto;
}

.occasion-card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 4px 14px rgba(0,0,0,0.06);
text-align:left;
}

.occasion-card h3{
font-size:18px;
margin-bottom:10px;
}

.occasion-card p{
font-size:14px;
color:#475569;
line-height:1.6;
}
/* delievry Zones*/

.delivery-zones-section {
    max-width: 480px;
    margin: 40px auto;
    padding: 0 15px;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.delivery-header {
    margin-bottom: 25px;
}

.delivery-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

.delivery-zones-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #2D1B14;
    margin: 0 0 10px 0;
    font-weight: 900;
}

.delivery-zones-section p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}

.area-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.area-pill {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* Highlights Murlipura/Core zones */
.area-pill.core {
    border-color: #cbd5e1;
    color: #334155;
    background: #f8fafc;
}

/* The "All Jaipur" highlight pill */
.area-pill.highlight {
    background: #2D1B14;
    color: #ffffff;
    border-color: #2D1B14;
    width: 90%; /* Makes it stand out as a footer for the pills */
    margin-top: 5px;
}

@media (max-width: 400px) {
    .area-pill {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* Mithora Review */

/* ===== MITHORA REVIEW CAROUSEL (MITHORA V3) ===== */

/* Section Setup */
.mithora-reviews-section {
    padding: 60px 0;
    background: var(--brand-cream);
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    font-family: var(--brand-font-main);
}

.reviews-header { text-align: center; padding: 0 20px; margin-bottom: 40px; }
.reviews-header h2 { 
    font-family: var(--brand-font-title); font-size: 32px; 
    color: var(--brand-dark); font-weight: 900; letter-spacing: -1px; 
}
.reviews-header p { font-size: 14px; color: #64748b; margin-top: 6px; }

/* THE CAROUSEL CONTAINER (MOBILE-FIRST) */
.reviews-carousel {
    width: 100%;
    overflow-x: auto; /* ENABLES HORIZONTAL SWIPE */
    overflow-y: hidden;
    display: flex;
    scroll-snap-type: x mandatory; /* ESSENTIAL: SNAPS INTO PLACE */
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px 40px; /* Space for shadows & dots hint */
    scrollbar-width: none; /* Hides scrollbar on Firefox */
}
.reviews-carousel::-webkit-scrollbar { display: none; } /* Hides scrollbar on Chrome/Safari */

.carousel-track {
    display: flex;
    gap: 16px;
    width: max-content; /* Critical: Track expands horizontally */
}

/* THE REVIEW CARD */
.review-card {
    min-width: 310px; /* UX PEEK: Standard mobile width */
    scroll-snap-align: center; /* SNAPS TO THE CENTER */
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 25px -10px rgba(45,27,20,0.08);
}

/* "Uploaded Image" Faking */
.card-image-top {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    position: relative;
    overflow: hidden;
}
.card-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops image to fit the container */
    transition: 0.3s;
}
.review-card:hover .card-image-top img { transform: scale(1.05); }

.photo-stamp {
    position: absolute; top: 12px; right: 12px;
    background: rgba(45,27,20,0.8); color: white;
    font-size: 9px; font-weight: 700; text-transform: uppercase;
    padding: 4px 10px; border-radius: 50px;
    letter-spacing: 0.5px; backdrop-filter: blur(2px);
}

/* Card Content */
.card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }

.stars-gold-v3 { color: var(--brand-gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 8px; }

.card-content h3 { font-size: 16px; font-weight: 800; color: var(--brand-dark); margin: 0 0 10px; line-height: 1.3; }

.card-content p { font-size: 13.5px; color: #4b5563; line-height: 1.6; margin-bottom: 20px; flex-grow: 1; font-style: italic; }

.author-meta-v3 { border-top: 1px solid #f1f5f9; padding-top: 12px; }
.author-meta-v3 strong { font-size: 14px; color: var(--brand-dark); display: block; font-weight: 700; }
.author-meta-v3 span { font-size: 11px; color: #94a3b8; font-weight: 500; }

/* DESKTOP REFINEMENT (Full Grid) */
@media (min-width: 1024px) {
    .reviews-carousel { overflow: visible; padding: 20px 15px; width: 100%; }
    .carousel-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* FORCES 3 COLUMNS */
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        gap: 30px;
    }
    .review-card { min-width: 0; width: 100%; } /* Cards are no longer fixed-width */
}
/* FAQ */
.mithora-faq-section {
    max-width: 480px;
    margin: 50px auto;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
}

.faq-header { text-align: center; margin-bottom: 30px; }
.faq-header h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 28px; 
    color: #2D1B14; 
    font-weight: 900; 
}

.faq-grid { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #F4C430;
    box-shadow: 0 10px 20px rgba(45, 27, 20, 0.05);
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 14.5px;
    font-weight: 700;
    color: #2D1B14;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 18px;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #F4C430;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fdfaf5;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
    border-top: 1px solid #f1f5f9;
}

.faq-answer p {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.6;
    margin: 10px 0;
}
/* More from our kitchen */
.mithora-cross-sell {
    max-width: 480px;
    margin: 60px auto;
    padding: 40px 20px;
    background: #fdfaf5; /* Mithora Cream */
    border-radius: 32px;
    font-family: 'Inter', sans-serif;
}

.cross-sell-header {
    text-align: center;
    margin-bottom: 30px;
}

.cross-sell-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #2D1B14;
    font-weight: 900;
    margin: 8px 0;
}

.cross-sell-header p {
    font-size: 14px;
    color: #64748b;
}

.cross-sell-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cross-sell-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    text-decoration: none;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.cross-sell-card:hover {
    transform: translateY(-3px);
    border-color: #F4C430;
    box-shadow: 0 10px 20px rgba(45, 27, 20, 0.05);
}

.card-icon-v3 {
    font-size: 32px;
    background: #fdfaf5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.card-info-v3 h3 {
    font-size: 17px;
    color: #2D1B14;
    margin: 0 0 4px 0;
    font-weight: 800;
}

.card-info-v3 p {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.card-link-v3 {
    font-size: 12px;
    font-weight: 700;
    color: #b45309; /* Deep Gold/Orange */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 1024px) {
    .mithora-cross-sell { max-width: 900px; }
    .cross-sell-grid { flex-direction: row; }
    .cross-sell-card { flex: 1; }
}
/* Mithora Final */
.mithora-final-cta {
    background: #2D1B14; /* Deep Brand Brown */
    padding: 80px 20px;
    text-align: center;
    border-radius: 40px 40px 0 0; /* Creates a nice transition from the body */
    margin-top: 40px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.cta-container-v3 {
    max-width: 600px;
    margin: 0 auto;
}

.mithora-final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin: 15px 0;
    font-weight: 900;
}

.mithora-final-cta p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-primary-v3 {
    background: #25D366;
    color: white;
    text-decoration: none;
    width: 100%;
    max-width: 340px;
    padding: 18px 25px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
}

.btn-primary-v3:active { transform: scale(0.98); }

.btn-icon { font-size: 24px; }

.btn-text { text-align: left; display: flex; flex-direction: column; }
.btn-main-txt { font-size: 17px; font-weight: 800; line-height: 1.2; }
.btn-sub-txt { font-size: 11px; opacity: 0.8; font-weight: 400; }

.btn-secondary-v3 {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-secondary-v3:hover { background: rgba(255,255,255,0.1); }

.trust-badge-v3 {
    margin-top: 40px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .cta-button-group { flex-direction: row; justify-content: center; }
}

/* Party Gallery carousel marquee */

/* --- Party Gallery Overhaul --- */
.party-gallery-section {
    padding: 60px 0;
    background: #FAF9F6; /* Ivory Background */
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.gallery-intro { text-align: center; padding: 0 20px; margin-bottom: 40px; }
.glass-pill { 
    display: inline-block; padding: 6px 16px; background: #fff; 
    border-radius: 50px; font-size: 0.75rem; font-weight: 800; color: #D4A017;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 15px;
}
.gallery-title { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; line-height: 1.1; color: #1A1A1A; }
.gallery-title span { color: #D4A017; }

/* Marquee Logic */
.marquee-wrapper {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.scroll-left { animation: scrollLeft 30s linear infinite; }
.scroll-right { animation: scrollRight 30s linear infinite; }

@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Modern Food Cards */
.food-card {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.food-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.food-card span {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(0, 0, 0, 0.4); backdrop-filter: blur(4px);
    color: #fff; font-size: 0.7rem; font-weight: 700;
    padding: 10px; text-align: center;
}

/* Actions */
.gallery-actions { text-align: center; margin-top: 40px; padding: 0 20px; }
.trust-note { font-size: 0.8rem; color: #777; margin-bottom: 20px; }
.btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-outline { 
    border: 1.5px solid #1A1A1A; color: #1A1A1A; text-decoration: none;
    padding: 14px 25px; border-radius: 14px; font-weight: 800; font-size: 0.9rem;
}
.btn-whatsapp { 
    background: #25D366; color: #fff; text-decoration: none;
    padding: 14px 25px; border-radius: 14px; font-weight: 800; font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

/* Responsive */
@media (min-width: 992px) {
    .food-card { width: 220px; height: 220px; }
    .food-card span { font-size: 0.85rem; padding: 15px; }
}

/* Party combo menu */
.mithora-v2-section-party {
    --gold: #D4AF37;
    --hero-orange: #fb923c; /* Similar to Hero Explore Plan */
    --wa-green: #25D366;
    --bg-light: #ffffff;
    --slate-dark: #1e293b;
    --slate-muted: #64748b;
    background-color: var(--bg-light) !important;
    padding: 60px 20px !important;
    font-family: 'Inter', sans-serif !important;
}
.m-v2-container { max-width: 1200px; margin: 0 auto; }
.m-v2-header { text-align: center; margin-bottom: 50px; }
.m-v2-badge { color: var(--gold); font-weight: 800; text-transform: uppercase; font-size: 12px; letter-spacing: 1px; }
.m-v2-title { font-size: 2.2rem !important; color: var(--slate-dark) !important; margin: 10px 0 !important; font-weight: 800 !important; }
.m-v2-subtitle { color: var(--slate-muted) !important; font-size: 1.1rem !important; }
.m-v2-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* FLIP CARD CORE */
.m-v2-card { perspective: 1000px; }
.m-v2-card-inner { position: relative; width: 100%; height: 320px; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; }
.m-v2-card.is-flipped .m-v2-card-inner { transform: rotateY(180deg); }
.m-v2-front, .m-v2-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.m-v2-back { background: white; transform: rotateY(180deg); padding: 25px; display: flex; flex-direction: column; justify-content: center; border: 1px solid #eee; }

.m-v2-price { position: absolute; top: 15px; right: 15px; background: white; padding: 5px 12px; border-radius: 8px; font-weight: 900; font-size: 1.1rem; z-index: 5; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.gold-bg { background: var(--gold); color: white; }
.m-v2-slider { display: flex; overflow-x: auto; height: 100%; scrollbar-width: none; }
.m-v2-slider img { flex: 0 0 100%; width: 100%; height: 100%; object-fit: cover; }
.m-v2-gold-title { color: var(--gold); margin-bottom: 10px; font-weight: 800; }
.m-v2-back ul { list-style: none; padding: 0; margin-bottom: 15px; }
.m-v2-back li { font-size: 0.9rem; padding: 5px 0; border-bottom: 1px dotted #eee; color: #444; }

.m-v2-btn-close { background: #f8fafc; border: 1px solid #e2e8f0; color: var(--slate-dark); font-weight: 700; cursor: pointer; padding: 8px; border-radius: 8px; margin-top: 10px; }

.m-v2-details { padding: 15px 5px; }
.m-v2-item-name { font-size: 1.25rem; font-weight: 800; color: var(--slate-dark); margin-bottom: 15px; }

/* BUTTONS */
.m-v2-actions { display: flex; gap: 8px; }
.m-v2-btn-pri, .m-v2-btn-sec { 
    flex: 1; 
    padding: 12px 5px; 
    border-radius: 10px; 
    font-weight: 700; 
    text-decoration: none; 
    text-align: center; 
    font-size: 0.85rem; 
    border: none; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
}

/* WA Icon Fix */
.wa-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1); /* Makes the black icon white */
}

.m-v2-btn-pri { background: var(--wa-green); color: white; }
.m-v2-btn-pri:hover { opacity: 0.9; }

/* Hero Explore Plan Style (Orange) */
.hero-style {
    background-color: var(--hero-orange) !important;
}

.m-v2-btn-sec { background: #f1f5f9; color: var(--slate-dark); }
.featured-m { border-top: 4px solid var(--gold); }

@media (max-width: 600px) { .m-v2-title { font-size: 1.8rem !important; } }

/* --- ESTIMATOR APP SHELL --- */
#mithora-app-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%; /* Full screen on mobile */
    background: #ffffff;
    z-index: 2500;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}
#mithora-app-sheet.active { bottom: 0; }

/* --- HEADER ZONE (Sticky Content) --- */
.mth-app-header {
    flex-shrink: 0; /* Prevents header from squishing */
    background: #fff;
    padding: 10px 15px 12px;
    border-bottom: 1px solid #f0f0f0;
    z-index: 10;
}

.mth-price-bar {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.mth-stat-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 6px 10px;
    border: 1px solid #eee;
}

.mth-total-card {
    flex: 2;
    background: #FFFDF2;
    border: 1px solid #F4C430;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- STICKY MILESTONE BANNER --- */
.mth-milestone-sticky {
    background: #2D1B14;
    padding: 10px 12px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid rgba(244, 196, 48, 0.3);
}

.mth-progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.mth-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #F4C430, #10B981);
    width: 0%;
    transition: width 0.5s ease;
}

/* --- SCROLLABLE AREA --- */
#mithora-app-container {
    flex: 1; /* Takes up remaining space */
    overflow-y: auto;
    background: #fcfcfc;
    -webkit-overflow-scrolling: touch;
}

.mth-steps-wrapper {
    padding: 15px 15px 40px; /* Padding for bottom content */
}

/* --- ITEM CARDS --- */
.items-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
    margin-top: 10px;
}

.mth-item-card {
    background: #fff;
    border-radius: 18px;
    padding: 10px;
    border: 1px solid #f0f0f0;
    position: relative;
}

.mth-item-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    object-fit: cover;
}

/* --- FOOTER ACTION BAR --- */
.mth-app-footer {
    flex-shrink: 0;
    padding: 12px 15px calc(12px + env(safe-area-inset-bottom));
    background: #fff;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.mth-btn-primary {
    flex: 1;
    height: 52px;
    background: #2D1B14;
    color: #F4C430;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 15px;
}

.mth-btn-back {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    font-size: 18px;
}

.step { display: none; }
.step.active { display: block; }

@media (min-width: 768px) {
    #mithora-app-sheet { width: 450px; height: 90vh; left: 50%; transform: translateX(-50%); bottom: -100%; }
    #mithora-app-sheet.active { bottom: 5vh; }
}