/* =========================================================
   Level Three Page - Bangalore New UI
   Scope: .levelthree-bangalore-new-ui
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.levelthree-bangalore-new-ui {
    font-family: 'Inter', sans-serif;
    color: #333333;
    background: #FFFFFF;
    line-height: 1.5;
    padding-top: 150px;
}

.levelthree-bangalore-new-ui * {
    box-sizing: border-box;
}

.levelthree-bangalore-new-ui .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.levelthree-seo-content {
    margin-top: 32px;
}

/* --- Hero Section --- */
.levelthree-bangalore-new-ui .hero-section {
    padding: 40px 0 30px;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.levelthree-bangalore-new-ui .hero-content {
    flex: 1 1 0%;
    min-width: 0;
}

.levelthree-bangalore-new-ui .hero-image-wrap {
    flex: 0 0 450px;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
}

.levelthree-bangalore-new-ui .hero-image-wrap img,
.levelthree-bangalore-new-ui .hero-image-wrap video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 350px;
    border-radius: 12px;
}

.levelthree-bangalore-new-ui .rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #333;
}

.levelthree-bangalore-new-ui .rating-badge .star {
    color: #FF9800;
}

.levelthree-bangalore-new-ui h1.page-title {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.25;
    color: #1A1A1A;
}

.levelthree-bangalore-new-ui .hero-subtitle {
    font-size: 15px;
    color: #555555;
    margin-bottom: 16px;
}

.levelthree-bangalore-new-ui .starting-price {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
}

.levelthree-bangalore-new-ui .trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.levelthree-bangalore-new-ui .trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 219, 209, 0.25);
    padding: 14px 8px;
    border-radius: 8px;
    font-size: 11px;
    color: #444;
}

.levelthree-bangalore-new-ui .trust-badge-item img {
    width: 26px;
    height: 26px;
    margin-bottom: 6px;
}

/* --- Section Shared --- */
.levelthree-bangalore-new-ui .section-title {
    font-size: 20px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #1A1A1A;
}

/* --- Service Cards Hybrid Layout --- */
.levelthree-bangalore-new-ui .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.levelthree-bangalore-new-ui .service-card {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    background: #fff;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.levelthree-bangalore-new-ui .service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.levelthree-bangalore-new-ui .service-card.has-image {
    padding: 0;
}

.levelthree-bangalore-new-ui .service-card.has-image img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    background: #f5f5f5;
}

.levelthree-bangalore-new-ui .service-card.has-image .service-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.levelthree-bangalore-new-ui .service-card.no-card-image {
    min-height: 0;
}

.levelthree-bangalore-new-ui .service-card.no-card-image .service-content {
    min-height: 0;
}

/* --- List View Styles (Applied conditionally below) --- */
.levelthree-bangalore-new-ui .service-info {
    flex: 1;
}

/* Desktop: First 3 as Cards, rest as List (4th column is the cart sidebar) */
@media (min-width: 768px) {
    .levelthree-bangalore-new-ui .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+4) {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        padding: 12px 16px !important;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+4) img {
        display: none !important;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+4) .service-content {
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 0 !important;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+4) .service-action-area {
        margin-top: 0;
        margin-left: 16px;
        min-width: 80px;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+4) .blr-new-add-btn {
        width: 72px;
        min-width: 72px;
        padding: 8px 10px;
        margin-top: 0;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+4) .service-price {
        margin-bottom: 0;
    }
}

/* Mobile: First 2 as Cards, rest as List */
@media (max-width: 767px) {
    .levelthree-bangalore-new-ui .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        padding: 12px 16px !important;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) img {
        display: none !important;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) .service-content {
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 0 !important;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) .service-action-area {
        margin-top: 0;
        margin-left: 16px;
        min-width: 80px;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) .blr-new-add-btn {
        width: 72px;
        min-width: 72px;
        padding: 8px 10px;
        margin-top: 0;
        font-size: 12px;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(-n+2) .blr-new-add-btn {
        display: block;
        width: 120px;
        min-width: 120px;
        margin: 8px auto 0;
        padding: 8px 10px;
        font-size: 12px;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) .service-price {
        margin-bottom: 0;
    }
}

.levelthree-bangalore-new-ui .service-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #1A1A1A;
}

.levelthree-bangalore-new-ui .service-price {
    font-size: 13px;
    color: #555;
    margin-bottom: 8px;
}

.levelthree-bangalore-new-ui .blr-new-add-btn {
    background: #FF5722;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.levelthree-bangalore-new-ui .blr-qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #fe7303;
    border-radius: 6px;
    overflow: hidden;
    margin: 8px auto 0;
    width: fit-content;
}

.levelthree-bangalore-new-ui .blr-qty-controls button.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fe7303;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: background 0.15s;
}

.levelthree-bangalore-new-ui .blr-qty-controls button.qty-btn:hover {
    background: #e06500;
}

.levelthree-bangalore-new-ui .blr-qty-controls button.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.levelthree-bangalore-new-ui .blr-qty-controls span.qty-val {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fe7303;
    background: #fff;
}

.levelthree-bangalore-new-ui .blr-new-add-btn:hover {
    background: #E64A19;
}

/* --- Do's & Don'ts (Legacy Tab & Accordion Support) --- */
.levelthree-bangalore-new-ui .included-box {
    border: 1px solid #F5D3D1;
    /* Light red/pink border matching mockup */
    border-radius: 12px;
    padding: 16px 20px;
    background: #FFF;
    margin-bottom: 24px;
}

/* Style the dos_donts HTML content from DB */
.levelthree-bangalore-new-ui .dos-donts-wrapper {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu {
    display: flex !important;
    gap: 16px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 16px !important;
    padding: 0 !important;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li {
    font-size: 15px !important;
    font-weight: 600;
    color: #888 !important;
    background: #E8E8E8 !important;
    padding: 8px 16px !important;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li::before {
    display: none !important;
    /* hide icon for tabs */
}

.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li.active {
    background: #FE5903 !important;
    color: #fff !important;
}

/* Force colors on nested elements to override global CSS */
.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li.active a,
.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li.active span,
.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li.active * {
    color: #fff !important;
    text-decoration: none !important;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li:not(.active) a,
.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li:not(.active) span,
.levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li:not(.active) * {
    color: #888 !important;
    text-decoration: none !important;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .slide {
    margin-bottom: 12px;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .title {
    font-size: 14px;
    font-weight: 700;
    color: #1A1A1A;
    padding: 12px 16px;
    background: #F9F9F9;
    border: 1px solid #EEE;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .title::after {
    content: '+';
    font-size: 18px;
    color: #777;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .title_active {
    background: #FFF0E6;
    border-color: #F5D3D1;
    color: #FE5903;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .title_active::after {
    content: '-';
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .information {
    padding: 12px 16px;
    border: none;
    border-radius: 0 0 6px 6px;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .information ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper .information li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
    color: #111;
}

/* Checkmarks for information list items */
.levelthree-bangalore-new-ui .dos-donts-wrapper .information li::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="none" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M9 12l2 2 4-4"></path></svg>') no-repeat center/contain;
    flex-shrink: 0;
    margin-top: 1px;
}

.levelthree-bangalore-new-ui .dos-donts-wrapper p {
    margin: 0 0 8px 0;
}

/* --- Reviews (Horizontal Scroll - hidden scrollbar) --- */
.levelthree-bangalore-new-ui .reviews-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.levelthree-bangalore-new-ui .reviews-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.levelthree-bangalore-new-ui .review-card {
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    border: 1px solid #F5D3D1;
    /* Match mockup border */
    border-radius: 12px;
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.levelthree-bangalore-new-ui .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.levelthree-bangalore-new-ui .reviewer-initial {
    width: 40px;
    height: 40px;
    background: #EAEAEA;
    /* Light grey circle */
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
}

.levelthree-bangalore-new-ui .reviewer-info {
    flex: 1;
    min-width: 0;
}

.levelthree-bangalore-new-ui .reviewer-name {
    font-size: 13px;
    font-weight: 700;
    margin: 0 0 2px 0;
    color: #111;
}

.levelthree-bangalore-new-ui .review-date {
    font-size: 11px;
    color: #666;
}

.levelthree-bangalore-new-ui .review-rating {
    background: #F8F8F8;
    color: #111;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.levelthree-bangalore-new-ui .review-rating::before {
    content: '★';
    color: #FF9800;
    /* Orange star */
    font-size: 12px;
}

.levelthree-bangalore-new-ui .review-text {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.levelthree-bangalore-new-ui .show-more-btn {
    display: block;
    width: 200px;
    margin: 24px auto 0;
    padding: 10px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
}

.levelthree-bangalore-new-ui .show-more-btn:hover {
    background: #f5f5f5;
}

/* --- FAQs --- */
.levelthree-bangalore-new-ui .faq-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.levelthree-bangalore-new-ui .faq-item {
    border-radius: 8px;
    background: #F5F5F5;
    overflow: hidden;
}

.levelthree-bangalore-new-ui .faq-item details summary {
    padding: 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
    color: #1A1A1A;
}

.levelthree-bangalore-new-ui .faq-item details summary::-webkit-details-marker {
    display: none;
}

.levelthree-bangalore-new-ui .faq-item details summary::after {
    content: '›';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #777;
    transition: transform 0.2s;
}

.levelthree-bangalore-new-ui .faq-item details[open] summary::after {
    transform: translateY(-50%) rotate(90deg);
}

.levelthree-bangalore-new-ui .faq-content {
    padding: 0 16px 16px 16px;
    font-size: 14px;
    color: #555;
}

/* --- Mobile Sticky Footer (MOBILE ONLY) --- */
.levelthree-bangalore-new-ui .mobile-sticky-footer {
    display: none;
    /* Hidden by default, JS shows it when cart has items */
    position: fixed;
    bottom: 62px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
}

.mobile-cart-overlay,
.mobile-cart-drawer {
    display: none;
}

.levelthree-bangalore-new-ui .sticky-cart-info {
    display: flex;
    flex-direction: column;
}

.levelthree-bangalore-new-ui .sticky-total {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}

.levelthree-bangalore-new-ui .sticky-count {
    font-size: 12px;
    color: #03A84E;
    font-weight: 600;
}

.levelthree-bangalore-new-ui .sticky-book-btn {
    background: #FF5722;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

/* ============================================
   RESPONSIVE - Mobile
============================================ */
@media (max-width: 767px) {
    .levelthree-bangalore-new-ui {
        padding-top: 70px;
        padding-bottom: 80px;
        /* Space for sticky mobile footer */
    }

    .levelthree-seo-content {
        margin-top: 40px;
    }

    .levelthree-bangalore-new-ui .hero-section {
        flex-direction: column-reverse;
        padding: 0 0 16px;
        gap: 12px;
    }

    .levelthree-bangalore-new-ui .hero-content {
        flex: 1 1 100%;
    }

    .levelthree-bangalore-new-ui .hero-image-wrap {
        flex: 1 1 100%;
        width: calc(100% + 32px);
        margin-left: -16px;
        margin-right: -16px;
        margin-top: 0;
        border-radius: 0;
    }

    .levelthree-bangalore-new-ui .hero-image-wrap img {
        border-radius: 0;
        max-height: 220px;
    }

    .levelthree-bangalore-new-ui .hero-image-wrap video {
        border-radius: 0 !important;
        max-height: 220px;
        width: 100%;
        object-fit: cover;
    }

    .levelthree-bangalore-new-ui h1.page-title {
        font-size: 22px;
    }

    .levelthree-bangalore-new-ui .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 16px;
    }

    .levelthree-bangalore-new-ui .trust-badge-item {
        padding: 10px 6px;
        font-size: 10px;
    }

    .levelthree-bangalore-new-ui .section-title {
        font-size: 18px;
        margin: 28px 0 14px 0;
    }

    /* Service cards: 2 per row on mobile */
    .levelthree-bangalore-new-ui .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .levelthree-bangalore-new-ui .service-card.has-image img {
        height: 100px;
    }

    .levelthree-bangalore-new-ui .service-name {
        font-size: 13px;
    }

    .levelthree-bangalore-new-ui .service-price {
        font-size: 12px;
    }

    .levelthree-bangalore-new-ui .service-card.has-image .service-content {
        padding: 10px;
    }

    .levelthree-bangalore-new-ui .blr-new-add-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    /* Reviews: keep horizontal scroll on mobile */
    .levelthree-bangalore-new-ui .review-card {
        min-width: 240px;
        max-width: 280px;
        padding: 16px;
        border: none !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        /* subtle shadow for separation without border */
    }

    .levelthree-bangalore-new-ui .included-box {
        padding: 16px;
    }
}

/* --- Layout for Desktop Side Cart --- */
.levelthree-bangalore-new-ui .main-with-sidebar {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
}

.levelthree-bangalore-new-ui .main-content {
    flex: 1 1 0%;
    min-width: 0;
    max-width: calc(100% - 330px); /* 300px sidebar + 30px gap */
    display: flex;
    flex-direction: column; /* Ensure its children stack vertically */
}

.levelthree-bangalore-new-ui .sidebar-content {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    align-self: flex-start;
}

/* --- Desktop Cart (UC-style) --- */
.levelthree-bangalore-new-ui .dc-card {
    position: sticky;
    top: 100px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.levelthree-bangalore-new-ui .dc-empty {
    padding: 32px 16px;
    text-align: center;
}

.levelthree-bangalore-new-ui .dc-empty-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.levelthree-bangalore-new-ui .dc-empty p {
    margin: 0;
    font-size: 14px;
    color: #999;
    font-weight: 500;
}

.levelthree-bangalore-new-ui .dc-head {
    font-size: 18px;
    font-weight: 700;
    padding: 14px 16px 10px;
    color: #1a1a1a;
    border-bottom: 1px solid #f0f0f0;
}

.levelthree-bangalore-new-ui .dc-items {
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.levelthree-bangalore-new-ui .dc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f5f5f5;
    gap: 10px;
}

.levelthree-bangalore-new-ui .dc-item:last-child {
    border-bottom: none;
}

.levelthree-bangalore-new-ui .dc-item-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    min-width: 0;
    line-height: 1.3;
}

.levelthree-bangalore-new-ui .dc-item-name .dc-item-remove-text {
    display: block;
    font-size: 11px;
    color: #e53e3e;
    cursor: pointer;
    margin-top: 4px;
    text-decoration: underline;
}

.levelthree-bangalore-new-ui .dc-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #fe7303;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.levelthree-bangalore-new-ui .dc-item-qty button {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: none;
    background: #fe7303;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: background 0.15s;
}

.levelthree-bangalore-new-ui .dc-item-qty button:hover {
    background: #e06500;
}

.levelthree-bangalore-new-ui .dc-item-qty button:disabled {
    opacity: 0.5;
    cursor: default;
}

.levelthree-bangalore-new-ui .dc-item-qty span {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fe7303;
    background: #fff;
}

.levelthree-bangalore-new-ui .dc-item-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 55px;
    text-align: right;
    flex-shrink: 0;
}

.levelthree-bangalore-new-ui .dc-max-msg {
    color: #ff5903;
    font-size: 12px;
    text-align: center;
    padding: 4px 10px;
    background: #fff3ec;
    font-weight: 500;
}

/* Cart Footer Bar */
.levelthree-bangalore-new-ui .dc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fe7303;
    padding: 10px 16px;
    border-radius: 0 0 7px 7px;
}

.levelthree-bangalore-new-ui .dc-footer-total {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.levelthree-bangalore-new-ui .dc-footer-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    min-width: auto;
    line-height: 1;
}

.levelthree-bangalore-new-ui .dc-footer-btn:hover {
    text-decoration: underline;
    background: transparent;
    color: #fff;
}

/* --- View Cart Modal --- */
.vc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vc-modal {
    background: #fdfdfd;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-family: 'Inter', sans-serif;
}

.vc-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.vc-modal-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vc-modal-header h2 span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.vc-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.vc-close:hover {
    color: #000 !important;
      background: transparent !important;
}

.vc-modal-body {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    overflow-y: auto;
}

.vc-left {
    flex: 1 1 500px;
    padding: 24px;
    background: #fdfdfd;
}

.vc-right {
    flex: 0 0 320px;
    padding: 24px;
    background: #fff;
    border-left: 1px solid #e8e8e8;
}

.vc-banner {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.vc-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}

.vc-table th {
    background: #fafafa;
    text-align: left;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #e8e8e8;
}

.vc-table td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.vc-table tbody tr:last-child td {
    border-bottom: none;
}

.vc-item-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vc-item-details img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
}

.vc-item-info strong {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.3;
}

.vc-item-info button {
    background: none;
    border: none;
    color: #e53e3e;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vc-item-info button:hover {
    text-decoration: underline;
}

.vc-table td:nth-child(2),
.vc-table td:nth-child(4) {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.vc-coupon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff3ec;
    border: 1px dashed #ffb899;
    padding: 16px;
    border-radius: 8px;
}

.vc-coupon span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.vc-coupon button {
    background: transparent;
    border: 1px solid #ff5903;
    color: #ff5903;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.vc-coupon button:hover {
    background: #ff5903;
    color: #fff;
}

.vc-coupon-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vc-coupon-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border 0.2s;
}

.vc-coupon-input:focus {
    border-color: #ff5903;
}

.vc-coupon-msg {
    flex: 1 1 100%;
    text-align: right;
    font-size: 12px;
    margin-top: 10px;
    display: none;
}

.vc-summary h3 {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.vc-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
}

.vc-summary-row span:last-child {
    font-weight: 600;
    color: #333;
}

.vc-grand {
    border-top: 1px solid #e8e8e8;
    padding-top: 16px;
    margin-top: 16px;
    margin-bottom: 24px;
}

.vc-grand span {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.vc-grand strong {
    font-size: 20px;
    font-weight: 700;
    color: #ff5903;
}

.vc-book-btn {
    width: 100%;
    background: #ff5903;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 24px;
}

.vc-book-btn:hover {
    background: #e44e00;
}

.vc-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vc-trust div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #666;
}

.vc-trust span {
    font-size: 20px;
    margin-bottom: 4px;
}

.vc-trust small {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .vc-right {
        border-left: none;
        border-top: 1px solid #e8e8e8;
    }
}

/* --- Quantity Controls UI --- */
.levelthree-bangalore-new-ui .service-action-area {
    margin-top: 10px;
}

.levelthree-bangalore-new-ui .blr-qty-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F5F5F5;
    border: 1px solid #DDDDDD;
    overflow: hidden;
    width: 96px !important;
    height: 36px !important;
    min-width: 96px !important;
    flex: 0 0 96px;
}

.levelthree-bangalore-new-ui .qty-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    min-width: 30px !important;
    height: 34px !important;
    padding: 0 !important;
    background: #FFFFFF !important;
    border: none !important;
    color: #FE5903 !important;
    font-weight: bold;
    font-size: 16px;
    line-height: 1 !important;
    opacity: 1 !important;
    cursor: pointer;
}

.levelthree-bangalore-new-ui .qty-btn:hover {
    background: #EEEEEE;
}

.levelthree-bangalore-new-ui .qty-val {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    font-size: 14px;
    font-weight: 600;
    color: #333333 !important;
    line-height: 1 !important;
}

/* Hide side cart on mobile and tablet */
@media (max-width: 991px) {
    .levelthree-bangalore-new-ui {
        padding-top: 90px;
    }

    .levelthree-bangalore-new-ui .sidebar-content {
        display: none !important;
    }

    .levelthree-bangalore-new-ui .main-content {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        float: none;
    }

    body.mobile-cart-open {
        overflow: hidden;
    }

    .mobile-cart-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.42);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        z-index: 1100;
    }

    .mobile-cart-overlay.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-cart-drawer {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        bottom: 0;
        max-height: 88vh;
        flex-direction: column;
        gap: 16px;
        padding: 8px 16px calc(12px + env(safe-area-inset-bottom));
        background: #fff;
        border-radius: 18px 18px 0 0;
        box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.18);
        transform: translateY(105%);
        transition: transform 0.25s ease;
        overflow: hidden;
        overflow-x: hidden;
        z-index: 1101;
    }

    .mobile-cart-drawer.is-open {
        transform: translateY(0);
    }

    .mobile-cart-drawer-head {
        display: flex;
        position: relative;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding: 8px 4px;
    }

    .mobile-cart-handle {
        width: 78px;
        height: 6px;
        margin: 10px auto 0;
        border-radius: 99px;
        background: #c9c9cf;
    }

    .mobile-cart-drawer-head h2 {
        margin: 0;
        font-size: 28px;
        font-weight: 700;
        line-height: 1.1;
    }

    .mobile-cart-drawer-head button {
        display: flex !important;
        position: absolute;
        top: 0;
        right: 2px;
        width: 40px !important;
        min-width: 40px !important;
        height: 40px !important;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #333;
        font-size: 28px;
        line-height: 1;
        padding: 0 !important;
        cursor: pointer;
    }

    .mobile-cart-items {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-cart-scroll-content {
        display: flex;
        min-height: 0;
        flex: 1 1 auto;
        flex-direction: column;
        gap: 16px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .mobile-cart-scroll-content::-webkit-scrollbar {
        display: none;
    }

    .mobile-cart-item {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr) auto;
        gap: 10px;
        align-items: center;
        padding: 16px;
        background: #fff;
        box-shadow: 0 1px 3px rgba(16, 24, 40, 0.05);
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        min-width: 0;
        max-width: 100%;
    }

    .mobile-cart-item.no-image {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .mobile-cart-item>img {
        width: 58px;
        height: 58px;
        border-radius: 6px;
        object-fit: cover;
    }

    .mobile-cart-item-info {
        display: flex;
        min-width: 0;
        flex-direction: column;
        gap: 4px;
        overflow: hidden;
    }

    .mobile-cart-item-info strong {
        overflow: visible;
        font-size: 14px;
        line-height: 1.3;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .mobile-cart-item-info span {
        color: #555;
        font-size: 13px;
    }

    .mobile-cart-item-actions {
        display: flex;
        align-items: center;
        border: 1px solid #ddd;
        border-radius: 6px;
    }

    .mobile-cart-item-actions button,
    .mobile-cart-item-actions span {
        width: 28px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: #fff;
        font-size: 14px;
        min-width: 28px !important;
        padding: 0 !important;
    }

    .mobile-cart-item-actions button {
        color: #fe5903;
        cursor: pointer;
    }

    .mobile-cart-item-actions button:disabled {
        color: #c7c7c7;
        cursor: not-allowed;
    }

    .mobile-coupon-remove[hidden] {
        display: none !important;
    }

    .mobile-cart-coupon,
    .mobile-cart-summary {
        padding: 18px;
        border: 1px solid #d8efdc;
        border-radius: 16px;
    }

    .mobile-cart-coupon strong {
        display: block;
        margin-bottom: 10px;
        color: #187a36;
        font-size: 18px;
    }

    .mobile-coupon-row {
        display: flex;
        gap: 8px;
        align-items: stretch;
    }

    .mobile-coupon-row input {
        min-width: 0;
        flex: 1;
        height: 48px !important;
        padding: 0 12px;
        border: 1px solid #ddd;
        border-radius: 10px;
        font-size: 14px;
    }

    .mobile-coupon-row button,
    .mobile-cart-proceed {
        border: 0;
        background: #fe5903;
        color: #fff;
        font-weight: 700;
        cursor: pointer;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .mobile-coupon-row button {
        flex: 0 0 86px;
        width: 86px !important;
        min-width: 86px !important;
        height: 48px !important;
        border-radius: 8px;
        font-size: 15px !important;
        line-height: 1 !important;
    }

    .mobile-coupon-message {
        min-height: 16px;
        margin: 8px 0 0;
        color: #199447;
        font-size: 12px;
    }

    .mobile-coupon-remove {
        margin-top: 4px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #d64522;
        font-size: 12px;
        cursor: pointer;
    }

    .mobile-cart-summary {
        display: flex;
        flex-direction: column;
        gap: 10px;
        background: #fff;
        border-color: #e5e5e5;
    }

    .mobile-cart-summary>div {
        display: flex;
        justify-content: space-between;
        color: #555;
    }

    .mobile-cart-grand-total {
        padding-top: 10px;
        border-top: 1px solid #ddd;
        color: #222 !important;
        font-size: 20px;
        font-weight: 700;
    }

    .mobile-cart-grand-total strong {
        color: #fe5903;
        font-size: 24px;
    }

    .mobile-cart-footer {
        flex: 0 0 auto;
        padding-top: 8px;
        background: #fff;
    }

    .mobile-cart-proceed {
        position: sticky;
        bottom: 0;
        width: 100% !important;
        min-width: 0 !important;
        min-height: 48px;
        height: 48px !important;
        flex: 0 0 48px;
        border-radius: 8px;
        font-size: 16px;
    }

    .mobile-cart-proceed span {
        margin-right: 8px;
        font-size: 17px;
    }

    .mobile-cart-trust {
        display: flex;
        justify-content: space-around;
        gap: 8px;
        padding: 16px 0 8px;
        color: #4b7f57;
        font-size: 11px;
        text-align: center;
    }

    .mobile-cart-terms {
        margin: 0;
        color: #777;
        font-size: 11px;
        text-align: center;
    }

    .mobile-cart-terms a {
        color: #187a36;
    }

    .levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li {
        flex: 1 1 0 !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: 50%;
        height: auto !important;
        padding: 10px 8px !important;
        font-size: 13px !important;
        line-height: 1.2 !important;
        text-align: center;
        white-space: normal;
    }

    .levelthree-bangalore-new-ui .dos-donts-wrapper .title {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .levelthree-bangalore-new-ui .dos-donts-wrapper .information {
        padding: 10px 12px;
    }

    .levelthree-bangalore-new-ui .main-content>.section-title,
    .levelthree-bangalore-new-ui .main-content>.included-box,
    .levelthree-bangalore-new-ui .main-content>.reviews-container,
    .levelthree-bangalore-new-ui .main-content>.show-more-btn,
    .levelthree-bangalore-new-ui .main-content>.faq-container {
        width: 100%;
        max-width: 100%;
        float: none;
        clear: both;
    }

    .levelthree-bangalore-new-ui .dos-donts-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .levelthree-bangalore-new-ui .dos-donts-wrapper ul.tabmenu li {
        flex: 1 1 0;
        min-width: 0;
        width: auto;
        text-align: center;
    }

    /* Ensure review header elements layout correctly on mobile */
    .levelthree-bangalore-new-ui .reviews-title-header {
        /* display: flex !important; */
        align-items: center;
        justify-content: space-between;
    }

    .levelthree-bangalore-new-ui .reviews-title-header .review-rating {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }

    .levelthree-bangalore-new-ui .main-content>.section-title {
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .levelthree-bangalore-new-ui .main-content>.included-box {
        margin-bottom: 28px;
    }

    .levelthree-bangalore-new-ui .reviews-container {
        display: flex;
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0 8px;
        margin-bottom: 24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .levelthree-bangalore-new-ui .reviews-container::-webkit-scrollbar {
        display: none;
    }

    .levelthree-bangalore-new-ui .reviews-container .review-card {
        width: 280px;
        min-width: 280px;
        max-width: 280px;
        margin: 0;
    }

    .levelthree-bangalore-new-ui .faq-container {
        gap: 12px;
    }

    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) .service-action-area {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 96px;
        min-width: 96px;
        margin-left: 8px;
    }

    .levelthree-bangalore-new-ui .mobile-sticky-footer {
        padding: 8px 12px;
    }

    .levelthree-bangalore-new-ui .sticky-book-btn {
        width: auto !important;
        min-width: 0 !important;
        height: 40px !important;
        padding: 8px 18px !important;
        font-size: 13px;
        line-height: 1;
    }
}

/* Desktop only: hide sticky footer */
@media (min-width: 992px) {
    .levelthree-bangalore-new-ui .mobile-sticky-footer {
        display: none !important;
    }

    /* Desktop: ensure main-content takes available space when no sidebar visible */
    .levelthree-bangalore-new-ui .main-with-sidebar .main-content:only-child {
        max-width: 100%;
    }
}

/* ============================================
   FIX: Login modal must appear ABOVE mobile cart drawer
   The cart overlay is z-index:1100 and drawer is z-index:1101.
   The legacy login uses screen-overlay(1003) and login-screen(1004).
   We bump them up so they render on top of the cart.
============================================ */
body .screen-overlay,
body .screen-overlay.z3 {
    z-index: 1200 !important;
}

body .screen.login-screen,
body .screen.otp-screen,
body .screen.z4,
body .login-screen {
    z-index: 1201 !important;
}

body .screen.z5,
body .otp-screen {
    z-index: 1202 !important;
}

/* --- Desktop Layout with Sidebar --- */
.levelthree-bangalore-new-ui .main-with-sidebar {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.levelthree-bangalore-new-ui .main-content {
    flex: 1;
    min-width: 0;
}

.levelthree-bangalore-new-ui .sidebar-content {
    width: 320px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
}

@media (max-width: 991px) {
    .levelthree-bangalore-new-ui .desktop-only-cart {
        display: none !important;
    }
}

/* --- Quantity Controls (Service Cards) --- */
.levelthree-bangalore-new-ui .blr-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #fe7303;
    border-radius: 4px;
    background: #fff;
    width: fit-content;
    margin: 8px auto 0;
}

.levelthree-bangalore-new-ui .blr-qty-controls button {
    background: #fe7303;
    color: #fff;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    padding: 0;
}

.levelthree-bangalore-new-ui .blr-qty-controls button:disabled {
    background: #fbc69f;
    cursor: not-allowed;
}

.levelthree-bangalore-new-ui .blr-qty-controls .qty-val {
    width: 30px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

/* Fix margin for list view */
.levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+4) .blr-qty-controls {
    margin-top: 0;
}
@media (max-width: 767px) {
    .levelthree-bangalore-new-ui .services-grid .service-card:nth-child(n+3) .blr-qty-controls {
        margin-top: 0;
    }
}

/* --- Desktop Cart Styles --- */
.dc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
    overflow: hidden;
}

.dc-empty {
    padding: 40px 20px;
    text-align: center;
    color: #888;
}

.dc-empty-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.dc-head {
    background: #f8f9fa;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 16px;
    border-bottom: 1px solid #eaeaea;
    color: #111;
}

.dc-items {
    padding: 12px 20px;
    max-height: 400px;
    overflow-y: auto;
}

.dc-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #eaeaea;
    gap: 12px;
}

.dc-item:last-child {
    border-bottom: none;
}

.dc-item-name {
    font-size: 13px;
    font-weight: 500;
    flex: 1;
    color: #333;
    line-height: 1.4;
}

.dc-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid #fe7303;
    border-radius: 4px;
    background: #fff;
    width: fit-content;
}

.dc-item-qty button {
    background: #fe7303;
    color: #fff;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    padding: 0;
}

.dc-item-qty button:disabled {
    background: #fbc69f;
    cursor: not-allowed;
}

.dc-item-qty span {
    width: 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

.dc-item-price {
    font-weight: 600;
    font-size: 14px;
    color: #111;
    min-width: 60px;
    text-align: right;
}

.dc-max-msg {
    text-align: center;
    font-size: 11px;
    color: #e53e3e;
    padding: 8px 20px;
    background: #fff5f5;
}

.dc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eaeaea;
}

.dc-footer-total {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.dc-footer-btn {
    background: #fe7303;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.dc-footer-btn:hover {
    background: #e66600;
}

/* Hide legacy right-side cart on the new Bangalore layout */
#service-right-side {
    display: none !important;
}