:root {
    --grocery-primary: #0f7b39;
    --grocery-primary-rgb: 15, 123, 57;
    --grocery-bg: #f8f9fa;
    --grocery-card-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --grocery-header-height: 56px;
}

body {
    background: var(--grocery-bg);
    padding-top: 0;
}

/* Header */
.bg--dark.header-middle {
    background: #fff !important;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    padding: 0;
}

.bg--dark.header-middle .container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-middle .header-right-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.header-middle .me-auto {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-middle .me-auto a span {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

/* Delivery location pill */
.delivery-location-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #f0f5ff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #e0e7ef;
}

.delivery-location-pill i {
    font-size: 16px;
    color: var(--grocery-primary);
}

.delivery-location-pill .bi-chevron-down {
    font-size: 11px;
    color: #999;
    margin-left: 2px;
}

/* Search */
.header-search-wrapper {
    flex: 1;
    max-width: 520px;
    position: relative;
}

.header-search-wrapper input {
    width: 100%;
    height: 40px;
    border-radius: 20px;
    border: 1.5px solid #e0e0e0;
    padding: 0 44px 0 16px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s;
}

.header-search-wrapper input:focus {
    border-color: var(--grocery-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--grocery-primary-rgb), 0.1);
}

.header-search-wrapper .search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grocery-primary);
    font-size: 18px;
}

/* Header action buttons */
.header-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 10px;
    text-decoration: none;
    position: relative;
    min-width: 48px;
    padding: 2px 0;
}

.header-action-btn i {
    font-size: 22px;
    line-height: 1;
    margin-bottom: 2px;
}

.header-action-btn .cart-count {
    position: absolute;
    top: -2px;
    right: 6px;
    background: var(--grocery-primary);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.header-action-btn span:not(.cart-count) {
    font-size: 10px;
    white-space: nowrap;
}

/* Category section */
.most-visited-category {
    background: #fff;
    padding: 16px 0 !important;
    margin-bottom: 8px;
}

.most-visited-category .section-title-3 {
    display: none;
}

.most-visited-category-wrapper {
    display: flex !important;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 4px;
}

.most-visited-category-wrapper::-webkit-scrollbar {
    display: none;
}

.most-visited-item {
    flex: 0 0 auto;
    width: 76px;
    text-align: center;
    padding: 4px;
    text-decoration: none;
    position: relative;
    border: none;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.most-visited-item img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
    padding: 4px;
    background: #fff;
}

.most-visited-item .title {
    margin-top: 6px;
}

.most-visited-item .title span {
    font-size: 11px;
    color: #333;
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 68px;
}

.most-visited-item .cont {
    display: none;
}

.most-visited-area {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
}

.most-visited-area::-webkit-scrollbar {
    display: none;
}

/* Product cards - grocery style */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--grocery-card-shadow);
    transition: transform 0.15s, box-shadow 0.15s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-card .img {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #fafafa;
}

.product-card .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .img .badge-title {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--grocery-primary);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.product-card .hover-content {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s;
}

.product-card:hover .hover-content {
    opacity: 1;
}

.product-card .hover-content a,
.product-card .hover-content .wish-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 13px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    text-decoration: none;
}

.product-card .hover-content a:hover {
    background: var(--grocery-primary);
    color: #fff;
}

.product-card .cont {
    padding: 10px 12px 14px;
}

.product-card .cont .title {
    margin-bottom: 4px;
}

.product-card .cont .title a {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    min-height: 33px;
}

/* Product weight/unit */
.product-weight {
    font-size: 12px;
    color: #888;
    margin-bottom: 6px;
    display: block;
}

/* Price row with add button */
.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-price-row .price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.product-price-row .price del {
    font-size: 12px;
    color: #999;
    font-weight: 400;
    margin-left: 4px;
}

/* Add button - Blinkit style */
.btn-add-grocery {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--grocery-primary);
    background: #fff;
    color: var(--grocery-primary);
    font-size: 20px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

.btn-add-grocery:hover {
    background: var(--grocery-primary);
    color: #fff;
}

/* Quantity selector */
.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--grocery-primary);
    border-radius: 20px;
    overflow: hidden;
    height: 34px;
    flex-shrink: 0;
}

.qty-selector button {
    width: 32px;
    height: 34px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector .qty-value {
    min-width: 28px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* Banner */
.banner-section {
    margin-bottom: 8px;
}

.banner-section .banner-slide {
    border-radius: 0;
    overflow: hidden;
}

.banner-section .banner-slide-img {
    width: 100%;
    min-height: 140px;
    max-height: 280px;
    object-fit: cover;
}

.banner-section .banner-slide .content {
    display: none;
}

.banner-slider .owl-nav {
    display: none;
}

.banner-slider .owl-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.banner-slider .owl-dot span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    display: block;
}

.banner-slider .owl-dot.active span {
    background: #fff;
    width: 20px;
    border-radius: 3px;
}

/* Flash deals section */
.flash-deals-slider .section-title .title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.flash-deals-wrapper {
    background: linear-gradient(135deg, #ff6b35, #ff4444) !important;
    padding: 6px 16px;
    border-radius: 20px;
}

.flash-deals-wrapper .countdown {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flash-deals-wrapper .countdown li {
    text-align: center;
}

.flash-deals-wrapper .countdown li h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.flash-deals-wrapper .countdown li span {
    color: rgba(255,255,255,0.8);
    font-size: 9px;
    text-transform: uppercase;
}

.flash-deals-wrapper .secondary-title {
    font-size: 11px;
}

/* Sections */
.section-gap {
    padding-top: 8px;
    padding-bottom: 8px;
}

.section-title .title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.see-all {
    font-size: 13px;
    color: var(--grocery-primary);
    font-weight: 500;
    text-decoration: none;
}

/* Product grid */
.products_navs_list {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 0 12px;
    list-style: none;
    margin: 0;
}

.products_navs_list::-webkit-scrollbar {
    display: none;
}

.products_navs_list li {
    flex: 0 0 auto;
}

.products_navs_list li label {
    display: block;
    padding: 6px 16px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.2s;
}

.products_navs_list li label.activeFilterNav {
    background: var(--grocery-primary);
    color: #fff;
}



/* Product listing sidebar: off-canvas drawer */
.main-wrapper .sidebar.product-list-sidebar {
    display: block !important;
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    overflow-y: auto;
    padding: 16px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 12px rgba(0,0,0,0.08);
}

.main-wrapper .sidebar.product-list-sidebar.active {
    left: 0;
}

.main-wrapper .sidebar.product-list-sidebar .close-sidebar {
    display: flex !important;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.main-wrapper .sidebar.product-list-sidebar .close-sidebar i {
    font-size: 20px;
    cursor: pointer;
    color: #666;
    padding: 4px;
}

.main-wrapper .sidebar.product-list-sidebar .filter-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.main-wrapper .sidebar.product-list-sidebar .filter-header .subtitle {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-wrapper .sidebar.product-list-sidebar .widget {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.main-wrapper .sidebar.product-list-sidebar .widget:last-child {
    border-bottom: none;
}

.main-wrapper .sidebar.product-list-sidebar .widget .widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.main-wrapper .sidebar.product-list-sidebar .widget .widget-header .title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.main-wrapper .sidebar.product-list-sidebar .widget-body {
    padding-top: 8px;
}

.main-wrapper .sidebar.product-list-sidebar .widget-body .form--check-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    font-size: 13px;
    color: #444;
    cursor: pointer;
}

.main-wrapper .sidebar.product-list-sidebar .widget-body .form--check-inner .check-icon {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-wrapper .sidebar.product-list-sidebar .widget-body input:checked + .check-icon {
    background: var(--grocery-primary);
    border-color: var(--grocery-primary);
    color: #fff;
}

.main-wrapper .sidebar.product-list-sidebar .widget-body .badge {
    font-size: 11px;
    margin-left: auto;
}



/* Overlay when sidebar open */
.overlay.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1049;
}

.overlay {
    display: none;
}

.scroller-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.scrollLeft,
.scrollRight {
    display: none !important;
}

/* Product ajax grid */
#ajax_products_section .row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 0;
}

@media (min-width: 576px) {
    #ajax_products_section .row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    #ajax_products_section .row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) {
    #ajax_products_section .row {
        grid-template-columns: repeat(5, 1fr);
    }
}

#ajax_products_section .row > div {
    padding: 0;
}

/* Deal of the day */
.deal-of-the-day-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: linear-gradient(135deg, #fff5f5, #fff0e6);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.deal-of-the-day-wrapper .deal-left {
    flex: 1;
    min-width: 200px;
}

.deal-of-the-day-wrapper .deal-left .subtitle {
    font-size: 14px;
    color: #ff6b35;
    margin-bottom: 4px;
}

.deal-of-the-day-wrapper .deal-left .title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.deal-of-the-day-wrapper .deal-badge {
    display: inline-block;
    background: #ff4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.deal-of-the-day-wrapper .deal-right {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.deal-of-the-day-wrapper .deal-right .deal-img {
    width: 140px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.deal-of-the-day-wrapper .deal-right .deal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-of-the-day-wrapper .deal-right .deal-content .title {
    font-size: 16px;
    font-weight: 600;
}

.d-shape-1,
.d-shape-2,
.d-shape-3 {
    display: none;
}

/* Recommended section */
.recommended-product-section .recommended-slider .product-card {
    margin: 4px;
}

/* Floating cart */
.floating-cart {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--grocery-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(var(--grocery-primary-rgb), 0.4);
}

/* Mobile bottom nav */
.app-bar {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 6px 0;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.05);
}

/* Clearance sale */
.__bg-img {
    background-size: cover;
    background-position: center;
}

/* Product listing page */
.all-products-section {
    background: #ffffff !important;
    border-radius: 0;
    padding: 16px 0;
}

.product-count-wrapper {
    display: none !important;
}

/* similer-product-item (small cards) */
.similer-product-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--grocery-card-shadow);
    transition: transform 0.15s;
}

.similer-product-item:hover {
    transform: translateY(-1px);
}

.similer-product-item .img {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #fafafa;
}

.similer-product-item .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similer-product-item .img .wish-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
}

.similer-product-item .cont {
    padding: 8px 10px 12px;
}

.similer-product-item .cont .title a {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.similer-product-item .cont h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 575px) {
    .bg--dark.header-middle .container {
        flex-wrap: wrap;
        gap: 6px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .delivery-location-pill {
        font-size: 12px;
        padding: 4px 10px;
    }

    .header-search-wrapper {
        order: 3;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .header-search-wrapper input {
        height: 36px;
        font-size: 13px;
    }

    .header-middle .me-auto a span,
    .header-middle .me-auto img {
        display: none;
    }

    .most-visited-item {
        width: 64px;
    }

    .most-visited-item img {
        width: 48px;
        height: 48px;
    }

    .most-visited-item .title span {
        font-size: 10px;
        max-width: 58px;
    }

    .deal-of-the-day-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .deal-of-the-day-wrapper .deal-right {
        flex-direction: column;
        text-align: center;
    }
}

/* Grid column for 5 items per row */
@media (min-width: 992px) {
    .col-lg-2-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Utility: hide elements */
.product-card .status,
.product-card .rating,
.product-card .badge-soft-success,
.product-card .badge-soft-danger {
    display: none;
}

/* Product cards in the _ajax-products section need consistent height */
#ajax_products_section .product-card .cont .title a {
    min-height: 33px;
}

/* Offer bar */
.offer-bar {
    font-size: 13px;
}

/* Search result dropdown needs z-index */
.search_result {
    z-index: 1040;
}

/* Remove old banner arrows/shapes */
.banner-arrow,
.shapes {
    display: none !important;
}

/* ==============================
   CHECKOUT PAGES (Zepto/Blinkit style)
   ============================== */
.checkout-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 24px;
}

.checkout-step-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-step-item .step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #ddd;
    color: #999;
    background: #fff;
    flex-shrink: 0;
}

.checkout-step-item.active .step-circle {
    background: var(--grocery-primary);
    border-color: var(--grocery-primary);
    color: #fff;
}

.checkout-step-item.completed .step-circle {
    background: var(--grocery-primary);
    border-color: var(--grocery-primary);
    color: #fff;
}

.checkout-step-item .step-label {
    font-size: 13px;
    color: #999;
    font-weight: 500;
}

.checkout-step-item.active .step-label {
    color: #1a1a1a;
    font-weight: 600;
}

.checkout-step-item.completed .step-label {
    color: var(--grocery-primary);
}

.checkout-step-line {
    width: 40px;
    height: 2px;
    background: #ddd;
    margin: 0 8px;
}

.checkout-step-line.completed {
    background: var(--grocery-primary);
}

/* Address card */
.address-card-item {
    border: 1.5px solid #e8e8e8;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.2s;
    background: #fff;
    margin-bottom: 10px;
}

.address-card-item:hover {
    border-color: var(--grocery-primary);
}

.address-card-item.selected {
    border-color: var(--grocery-primary);
    background: #f0fdf4;
}

.address-card-item .address-type-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--grocery-primary);
    background: #e8f5e9;
    padding: 2px 10px;
    border-radius: 12px;
}

/* Checkout form fields */
.checkout-form-group {
    margin-bottom: 16px;
}

.checkout-form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin-bottom: 4px;
    display: block;
}

.checkout-form-group .form-control {
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    font-size: 14px;
    padding: 0 14px;
}

.checkout-form-group .form-control:focus {
    border-color: var(--grocery-primary);
    box-shadow: 0 0 0 3px rgba(var(--grocery-primary-rgb), 0.1);
}

.checkout-form-group textarea.form-control {
    height: auto;
    padding: 10px 14px;
}

/* Order summary sidebar */
.order-summary-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--grocery-card-shadow);
    padding: 20px;
    position: sticky;
    top: 80px;
}

.order-summary-card .summary-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.order-summary-card .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

.order-summary-card .summary-item .label {
    color: #888;
}

.order-summary-card .summary-item .value {
    font-weight: 500;
    color: #1a1a1a;
}

.order-summary-card .summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 0;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Free delivery progress bar */
.free-delivery-bar {
    background: #f0fdf4;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.free-delivery-bar .bar-text {
    font-size: 12px;
    color: #555;
    margin-bottom: 6px;
}

.free-delivery-bar .bar-text strong {
    color: var(--grocery-primary);
}

.free-delivery-bar .progress-track {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.free-delivery-bar .progress-track .progress-fill {
    height: 100%;
    background: var(--grocery-primary);
    border-radius: 3px;
    transition: width 0.3s;
}

/* Payment methods */
.payment-method-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-card {
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
}

.payment-method-card:hover {
    border-color: var(--grocery-primary);
}

.payment-method-card.selected {
    border-color: var(--grocery-primary);
    background: #f0fdf4;
}

.payment-method-card .method-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method-card .method-header .method-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    flex-shrink: 0;
}

.payment-method-card .method-header .method-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.payment-method-card .method-header .method-info h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.payment-method-card .method-header .method-info p {
    font-size: 12px;
    color: #888;
    margin: 2px 0 0;
}

.payment-method-card .method-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
    transition: all 0.2s;
}

.payment-method-card.selected .method-radio {
    border-color: var(--grocery-primary);
}

.payment-method-card.selected .method-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grocery-primary);
}

/* Digital payment gateways grid */
.digital-gateway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.digital-gateway-grid .gateway-item {
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    position: relative;
}

.digital-gateway-grid .gateway-item:hover {
    border-color: var(--grocery-primary);
}

.digital-gateway-grid .gateway-item img {
    max-width: 80px;
    max-height: 36px;
    object-fit: contain;
}

.digital-gateway-grid .gateway-item .gw-name {
    font-size: 10px;
    color: #888;
    margin-top: 4px;
}

/* Order success page */
.order-success-page {
    text-align: center;
    padding: 60px 20px;
}

.order-success-page .success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.order-success-page .success-icon i {
    font-size: 36px;
    color: var(--grocery-primary);
}

.order-success-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.order-success-page p {
    font-size: 14px;
    color: #888;
    max-width: 400px;
    margin: 0 auto 24px;
    line-height: 1.5;
}

/* Bring change amount */
.bring-change-section {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px dashed #e8e8e8;
}

/* Order summary items list */
.summary-product-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.summary-product-item .sp-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f5f5;
    flex-shrink: 0;
}

.summary-product-item .sp-info {
    flex: 1;
    min-width: 0;
}

.summary-product-item .sp-info .sp-name {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.summary-product-item .sp-info .sp-qty {
    font-size: 11px;
    color: #888;
}

.summary-product-item .sp-price {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    white-space: nowrap;
}

/* Coupon input */
.coupon-input-group {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.coupon-input-group input {
    flex: 1;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid #e0e0e0;
    padding: 0 12px;
    font-size: 13px;
}

.coupon-input-group input:focus {
    border-color: var(--grocery-primary);
    outline: none;
}

.coupon-input-group button {
    height: 40px;
    border-radius: 10px;
    padding: 0 20px;
    background: var(--grocery-primary);
    color: #fff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

/* Toggle link style */
.link-toggle {
    font-size: 13px;
    color: var(--grocery-primary);
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
}

.link-toggle:hover {
    text-decoration: underline;
}

/* ==============================
   FOOTER
   ============================== */
.grocery-footer {
    background: #ffffff;
    color: #374151;
    padding: 60px 0 0;
    margin-top: 0;
    border-top: 1px solid #f0f0f0;
}

.grocery-footer h5 {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.grocery-footer a {
    color: #4b5563;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.18s ease;
}

.grocery-footer a:hover {
    color: #ff3f6c;
}

.grocery-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grocery-footer .footer-links li {
    margin-bottom: 10px;
}

.grocery-footer .footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #4b5563;
}

.grocery-footer .footer-contact-item i {
    color: #178038;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.grocery-footer .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.grocery-footer .footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.grocery-footer .footer-social a:hover {
    background: #ff3f6c;
    color: #ffffff;
    transform: translateY(-2px);
}

.grocery-footer .footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.grocery-footer .footer-tags a {
    background: #f3f4f6;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    color: #4b5563;
    transition: all 0.18s ease;
}

.grocery-footer .footer-tags a:hover {
    background: #178038;
    color: #ffffff;
}

.grocery-footer .footer-app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.grocery-footer .footer-app-btns a {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1.2px solid #e5e7eb;
    border-radius: 10px;
    padding: 4px;
    transition: all 0.2s ease;
}

.grocery-footer .footer-app-btns a:hover {
    border-color: #ff3f6c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.grocery-footer .footer-app-btns a img {
    height: 38px;
    object-fit: contain;
    border-radius: 6px;
}

.grocery-footer .footer-newsletter {
    display: flex;
    gap: 8px;
    max-width: 400px;
}

.grocery-footer .footer-newsletter input {
    flex: 1;
    height: 42px;
    border-radius: 10px;
    border: 1.2px solid #e5e7eb;
    background: #f9fafb;
    color: #1a1a1a;
    padding: 0 14px;
    font-size: 13px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.grocery-footer .footer-newsletter input:focus {
    border-color: #ff3f6c;
    background: #ffffff;
    outline: none;
}

.grocery-footer .footer-newsletter input::placeholder {
    color: #9ca3af;
}

.grocery-footer .footer-newsletter button {
    height: 42px;
    border-radius: 10px;
    padding: 0 20px;
    background: #178038;
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.grocery-footer .footer-newsletter button:hover {
    background: #12662c;
}

.grocery-footer .footer-copyright {
    border-top: 1.2px solid #f3f4f6;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    background: #ffffff;
}


/* ==============================
   LOGIN / REGISTER MODALS
   ============================== */
.auth-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.auth-modal .modal-body {
    padding: 32px 36px;
}

.auth-modal .auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.auth-modal .auth-logo img {
    height: 50px;
}

.auth-modal .auth-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
    text-align: center;
}

.auth-modal .auth-subtitle {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 24px;
}

.auth-modal .form-control {
    height: 46px;
    border-radius: 12px;
    border: 1.5px solid #e0e0e0;
    font-size: 14px;
    padding: 0 14px;
}

.auth-modal .form-control:focus {
    border-color: var(--grocery-primary);
    box-shadow: 0 0 0 3px rgba(var(--grocery-primary-rgb), 0.1);
}

.auth-modal .auth-btn {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    background: var(--grocery-primary);
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.auth-modal .auth-btn:hover {
    opacity: 0.9;
}

.auth-modal .auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #bbb;
    font-size: 12px;
}

.auth-modal .auth-divider::before,
.auth-modal .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.auth-modal .social-login-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-modal .social-login-btns a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s;
}

.auth-modal .social-login-btns a:hover {
    border-color: var(--grocery-primary);
}

.auth-modal .social-login-btns a img {
    width: 20px;
    height: 20px;
}

.auth-modal .auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

.auth-modal .auth-switch a {
    color: var(--grocery-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

/* OTP/Manual toggle */
.auth-toggle-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s;
}

.auth-toggle-link:hover {
    border-color: var(--grocery-primary);
}

/* Delivery badge placeholder */
.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: var(--grocery-primary);
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

/* Premium Auth Modal Overrides */
.auth-modal .auth-modal-content {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.auth-modal .auth-left-pane {
    background: #f4fbf7 !important;
    border-right: 1px solid #e5e7eb !important;
    padding: 40px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100% !important;
}

.auth-modal .auth-right-pane {
    padding: 40px !important;
    background: #ffffff !important;
}

.auth-modal .form-control {
    height: 48px !important;
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    font-size: 14px !important;
    padding: 0 16px !important;
    background-color: #f9fafb !important;
}

.auth-modal .form-control:focus {
    border-color: #24b47e !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(36, 180, 126, 0.1) !important;
}

.auth-modal .auth-btn {
    background: #24b47e !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    height: 48px !important;
    font-weight: 600 !important;
    border: none !important;
    width: 100% !important;
    transition: background-color 0.2s, transform 0.1s !important;
}

.auth-modal .auth-btn:hover {
    background: #1e9d6d !important;
    color: #ffffff !important;
}

.auth-modal .auth-btn:active {
    transform: scale(0.98) !important;
}

.auth-modal .social-login-btn-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 1.5px solid #e5e7eb !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s !important;
    background: #ffffff !important;
}

.auth-modal .social-login-btn-circle:hover {
    border-color: #24b47e !important;
    background: #f0fdf4 !important;
    transform: translateY(-2px) !important;
}

.auth-modal .auth-toggle-link {
    color: #24b47e !important;
    text-decoration: none !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 10px 0 !important;
    transition: color 0.2s !important;
}

.auth-modal .auth-toggle-link:hover {
    color: #1e9d6d !important;
    text-decoration: underline !important;
}

.auth-modal .auth-switch a {
    color: #24b47e !important;
}

.auth-modal .auth-btn:hover {
    opacity: 0.9;
}

.auth-modal .auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: #bbb;
    font-size: 12px;
}

.auth-modal .auth-divider::before,
.auth-modal .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

.auth-modal .social-login-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-modal .social-login-btns a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    transition: border-color 0.2s;
}

.auth-modal .social-login-btns a:hover {
    border-color: var(--grocery-primary);
}

.auth-modal .social-login-btns a img {
    width: 20px;
    height: 20px;
}

.auth-modal .auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #888;
}

.auth-modal .auth-switch a {
    color: var(--grocery-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

/* OTP/Manual toggle */
.auth-toggle-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    border: 1.5px solid #e8e8e8;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s;
}

.auth-toggle-link:hover {
    border-color: var(--grocery-primary);
}

/* Delivery badge placeholder */
.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: var(--grocery-primary);
    background: #e8f5e9;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
}

/* Premium Auth Modal Overrides */
.auth-modal .auth-modal-content {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.auth-modal .auth-left-pane {
    background: #f4fbf7 !important;
    border-right: 1px solid #e5e7eb !important;
    padding: 40px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 100% !important;
}

.auth-modal .auth-right-pane {
    padding: 40px !important;
    background: #ffffff !important;
}

.auth-modal .form-control {
    height: 48px !important;
    border-radius: 12px !important;
    border: 1.5px solid #e5e7eb !important;
    font-size: 14px !important;
    padding: 0 16px !important;
    background-color: #f9fafb !important;
}

.auth-modal .form-control:focus {
    border-color: #24b47e !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(36, 180, 126, 0.1) !important;
}

.auth-modal .auth-btn {
    background: #24b47e !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    height: 48px !important;
    font-weight: 600 !important;
    border: none !important;
    width: 100% !important;
    transition: background-color 0.2s, transform 0.1s !important;
}

.auth-modal .auth-btn:hover {
    background: #1e9d6d !important;
    color: #ffffff !important;
}

.auth-modal .auth-btn:active {
    transform: scale(0.98) !important;
}

.auth-modal .social-login-btn-circle {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    border: 1.5px solid #e5e7eb !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s !important;
    background: #ffffff !important;
}

.auth-modal .social-login-btn-circle:hover {
    border-color: #24b47e !important;
    background: #f0fdf4 !important;
    transform: translateY(-2px) !important;
}

.auth-modal .auth-toggle-link {
    color: #24b47e !important;
    text-decoration: none !important;
    font-size: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin: 10px 0 !important;
    transition: color 0.2s !important;
}

.auth-modal .auth-toggle-link:hover {
    color: #1e9d6d !important;
    text-decoration: underline !important;
}

.auth-modal .auth-switch a {
    color: #24b47e !important;
}

.auth-modal .auth-switch a:hover {
    color: #1e9d6d !important;
    text-decoration: underline !important;
}

/* Premium Zepto-Style Fixed White Navbar Overrides */
.header-section.bg-white {
    background-color: #ffffff !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid #f3f4f6 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1020 !important;
    height: 85px !important; /* Premium taller height like Zepto */
    display: flex !important;
    align-items: center !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

/* Body offset to prevent overlapping */
body {
    padding-top: 85px !important;
}

/* Adjust header wrapper to flex correctly */
.header-section.bg-white .header-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 20px !important;
}

.header-section.bg-white .logo {
    flex-shrink: 0 !important;
    margin-right: 0 !important;
    max-height: 50px !important;
    display: flex !important;
    align-items: center !important;
}

.header-section.bg-white .logo img {
    max-height: 48px !important;
    object-fit: contain !important;
}

/* Zepto Style Search Form styling */
.zepto-search-form {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    flex-grow: 1 !important;
    max-width: 480px !important;
    height: 46px !important;
    background-color: #f3f4f6 !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 0 16px !important;
    transition: all 0.2s ease-in-out !important;
}

/* Larger search bar */
.zepto-search-form.zepto-search-form--large {
    max-width: 680px !important;
    height: 50px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
}

.zepto-search-form.zepto-search-form--large .form-control {
    font-size: 15px !important;
}

.zepto-search-form:focus-within {
    background-color: #ffffff !important;
    border-color: #800080 !important; /* Zepto Purple */
    box-shadow: 0 0 0 3px rgba(128, 0, 128, 0.15) !important;
}

.zepto-search-form .search-icon {
    font-size: 18px !important;
    color: #9ca3af !important;
    margin-right: 10px !important;
    flex-shrink: 0 !important;
}

.zepto-search-form .form-control {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    font-size: 14px !important;
    color: #1f2937 !important;
    height: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
}

.zepto-search-form .form-control::placeholder {
    color: #9ca3af !important;
}

/* Search results autocomplete dropdown card positioning */
.zepto-search-form .search-card {
    border-radius: 10px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e5e7eb !important;
    margin-top: 5px !important;
}

/* Remove dropdown arrow from cart button */
.no-dropdown-arrow .dropdown-toggle::after {
    display: none !important;
}
.no-dropdown-arrow .zepto-icon-link::after {
    display: none !important;
}

/* Bigger logo text */
.header-section.bg-white .logo img {
    max-height: 58px !important;
    object-fit: contain !important;
}

/* Menu area and links styling */
.header-section.bg-white .menu-area {
    flex-grow: 0 !important;
    display: flex !important;
    align-items: center !important;
    padding-left: 0 !important;
}

.header-section.bg-white .menu {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.header-section.bg-white .menu > li > a {
    color: #374151 !important; /* Slate grey text */
    font-weight: 600 !important;
    font-size: 15px !important;
    transition: color 0.2s ease-in-out !important;
    padding: 8px 14px !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
}

.header-section.bg-white .menu > li > a:hover,
.header-section.bg-white .menu > li > a.active {
    color: #800080 !important; /* Zepto purple brand accent */
}

/* Custom underline effect for hover */
.header-section.bg-white .menu > li > a::before {
    background: #800080 !important; /* Purple indicator line */
}

/* Dropdown Submenu overrides */
.header-section.bg-white .menu li .submenu {
    border-radius: 8px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Icons & Action buttons on the right */
.header-section.bg-white .header-right-icons {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-section.bg-white .header-right-icons > li {
    padding: 0 !important;
    border: none !important;
}

/* Clean stacked layout for action links (Wishlist, Login, Cart) */
.zepto-icon-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: color 0.2s ease-in-out !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    gap: 3px !important;
    position: relative !important;
}

.zepto-icon-link:hover {
    color: #800080 !important;
}

.zepto-icon-link i {
    font-size: 22px !important;
    color: #374151 !important;
    transition: color 0.2s ease-in-out !important;
    line-height: 1 !important;
}

.zepto-icon-link:hover i {
    color: #800080 !important;
}

/* Icon badge positioning */
.icon-badge-wrapper {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.icon-badge-wrapper .btn-status {
    position: absolute !important;
    top: -6px !important;
    right: -8px !important;
    background-color: #ff3f6c !important; /* Vibrant pink/red badge */
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    width: 15px !important;
    height: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #ffffff !important;
}

.zepto-icon-text {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
}

/* Hide theme dark/light switcher as Zepto is purely light/white themed */
.darkLight-switcher,
.theme-bar {
    display: none !important;
}

/* Zepto Category Cards Section */
.zepto-category-item {
    text-decoration: none !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    width: 96px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transition: transform 0.2s ease !important;
}

.zepto-category-item:hover {
    transform: translateY(-3px) !important;
}

.zepto-category-card {
    width: 76px !important;
    height: 76px !important;
    border-radius: 16px !important;
    background-color: #ffffff !important; /* Pure white background */
    border: 1px solid #eaeaea !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 8px auto !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.2s ease !important;
}

.zepto-category-item:hover .zepto-category-card {
    background-color: #ffffff !important;
    border-color: #dddddd !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.zepto-category-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 8px !important; /* Padding to keep it floating like Zepto */
}

.zepto-category-name {
    color: #1f2937 !important; /* Rich slate gray/dark */
    font-weight: 600 !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 4px !important;
    /* Multiline clamping (up to 2 lines) */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    white-space: normal !important;
    min-height: 30px !important; /* Fixed height for label alignment */
}

/* Zepto-Style Banners Section */
.zepto-banner-section {
    background: #ffffff !important;
    /* padding: 12px 0 12px 0 !important; */
}

/* Override old banner-section blue bg */
.banner-section {
    background: #ffffff !important;
}

.zepto-banner-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    width: 100% !important;
}

@media (max-width: 767px) {
    .zepto-banner-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* Fixed height container - image always same size */
.zepto-banner-item {
    display: block !important;
    width: 100% !important;
    height: 250px !important;   /* Fixed height - change this one value to adjust */
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    flex-shrink: 0 !important;
}

.zepto-banner-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10) !important;
}
/* Dropdown Submenu overrides */
.header-section.bg-white .menu li .submenu {
    border-radius: 8px !important;
    border: 1px solid #f3f4f6 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Icons & Action buttons on the right */
.header-section.bg-white .header-right-icons {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-section.bg-white .header-right-icons > li {
    padding: 0 !important;
    border: none !important;
}

/* Clean stacked layout for action links (Wishlist, Login, Cart) */
.zepto-icon-link {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    color: #374151 !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: color 0.2s ease-in-out !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer !important;
    gap: 3px !important;
    position: relative !important;
}

.zepto-icon-link:hover {
    color: #800080 !important;
}

.zepto-icon-link i {
    font-size: 22px !important;
    color: #374151 !important;
    transition: color 0.2s ease-in-out !important;
    line-height: 1 !important;
}

.zepto-icon-link:hover i {
    color: #800080 !important;
}

/* Icon badge positioning */
.icon-badge-wrapper {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.icon-badge-wrapper .btn-status {
    position: absolute !important;
    top: -6px !important;
    right: -8px !important;
    background-color: #ff3f6c !important; /* Vibrant pink/red badge */
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    border-radius: 50% !important;
    width: 15px !important;
    height: 15px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #ffffff !important;
}

.zepto-icon-text {
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
}

/* Hide theme dark/light switcher as Zepto is purely light/white themed */
.darkLight-switcher,
.theme-bar {
    display: none !important;
}

/* Zepto Category Cards Section */
.zepto-category-item {
    text-decoration: none !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    width: 96px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    transition: transform 0.2s ease !important;
}

.zepto-category-item:hover {
    transform: translateY(-3px) !important;
}

.zepto-category-card {
    width: 76px !important;
    height: 76px !important;
    border-radius: 16px !important;
    background-color: #ffffff !important; /* Pure white background */
    border: 1px solid #eaeaea !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 8px auto !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.2s ease !important;
}

.zepto-category-item:hover .zepto-category-card {
    background-color: #ffffff !important;
    border-color: #dddddd !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
}

.zepto-category-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 8px !important; /* Padding to keep it floating like Zepto */
}

.zepto-category-name {
    color: #1f2937 !important; /* Rich slate gray/dark */
    font-weight: 600 !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 4px !important;
    /* Multiline clamping (up to 2 lines) */
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: clip !important;
    white-space: normal !important;
    min-height: 30px !important; /* Fixed height for label alignment */
}

/* Zepto-Style Banners Section */
.zepto-banner-section {
    background: transparent !important;
    /* padding: 12px 0 12px 0 !important; */
}

/* Override old banner-section blue bg */
.banner-section {
    background: transparent !important;
}

.zepto-banner-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    width: 100% !important;
}

@media (max-width: 767px) {
    .zepto-banner-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
}

/* Fixed height container - image always same size */
.zepto-banner-item {
    display: block !important;
    width: 100% !important;
    height: 250px !important;   /* Fixed height - change this one value to adjust */
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
    flex-shrink: 0 !important;
}

.zepto-banner-item:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10) !important;
}

/* Image always fills container exactly - no matter what size admin uploads */
.zepto-banner-item img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;   /* Fills box, crops edges if needed */
}

/* =====================================================
   ZEPTO-STYLE PRODUCT CARD  (.zp-card)
   ===================================================== */

/* ── Card Wrapper ── */
.zp-card {
    width: 154px;
    min-width: 154px;
    background: #ffffff !important;
    border: 1px solid #f1f1f5 !important;
    border-radius: 16px;
    padding: 10px !important;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.01) !important;
}

.zp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06) !important;
    border-color: #e4e4e7 !important;
}

.zp-card--out {
    opacity: 0.6;
}

/* ── Image Container (Square, White Bg, Light Border) ── */
.zp-card__img-wrap {
    position: relative;
    width: 100%;
    height: 124px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Allows ADD button to overlap */
    transition: none !important;
    box-shadow: none !important;
}

.zp-card:hover .zp-card__img-wrap {
    border-color: transparent !important;
    box-shadow: none !important;
}

.zp-card__img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
}

.zp-card__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 4px; /* Padding on all sides so image looks centered & doesn't touch borders */
    transition: transform 0.25s ease;
}

.zp-card:hover .zp-card__img {
    transform: scale(1.04);
}

/* ── ADD Button Overlay (Bottom-Right, Pink text/border) ── */
.zp-card__add-wrap {
    position: absolute;
    bottom: -1px; /* Overlaps the bottom edge slightly less */
    right: 8px;
    z-index: 5;
}

.zp-card__add-btn {
    background: #ffffff;
    color: #ff3f6c;
    border: 1.5px solid #ff3f6c;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 16px;
    cursor: pointer;
    letter-spacing: 0.8px;
    transition: all 0.15s ease;
    line-height: 1.2;
    display: block;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.zp-card__add-btn:hover,
.zp-card__add-btn:active {
    background: #ff3f6c;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(255, 63, 108, 0.2);
}

.zp-card__add-btn--oos {
    color: #9ca3af;
    border-color: #d1d5db;
    cursor: not-allowed;
    background: #f3f4f6;
    box-shadow: none;
}

/* ── Info zone below image ── */
.zp-card__info {
    margin-top: 14px; /* Space for overlapping ADD button */
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* ── Price Row (Green Badge + Strikethrough MRP) ── */
.zp-card__price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.zp-card__price {
    background: #178038;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 2.5px 6.5px;
    border-radius: 5px;
    display: inline-block;
    letter-spacing: -0.2px;
}

.zp-card__mrp {
    font-size: 11px;
    color: #757575;
    text-decoration: line-through;
    font-weight: 400;
}

/* ── Discount amount off text ── */
.zp-card__discount-text {
    font-size: 11px;
    font-weight: 700;
    color: #178038;
    margin-top: 1px;
}

.zp-card__discount-text--hidden {
    visibility: hidden;
}

/* ── Divider line ── */
.zp-card__divider {
    border-top: 1px dashed #e2e8f0;
    margin: 5px 0 4px;
    width: 100%;
}

/* ── Product Name (2 Lines limit, fixed height) ── */
.zp-card__name {
    font-size: 13px;
    font-weight: 600;
    color: #1c1c1c;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    height: 35px; /* Ensures uniform alignment */
    margin-bottom: 2px;
}

.zp-card__name:hover {
    color: #ff3f6c;
    text-decoration: none;
}

/* ── Unit text ── */
.zp-card__unit {
    font-size: 11px;
    color: #757575;
    font-weight: 500;
    line-height: 1.3;
}

/* ── Rating (★ 4.7 (13.8k)) ── */
.zp-card__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
}

.zp-card__rating-star {
    color: #178038;
    font-size: 12px;
}

.zp-card__rating-val {
    color: #178038;
}

.zp-card__rating-count {
    color: #8c8c8c;
    font-weight: 400;
}

/* =====================================================
   SHELF (Horizontal Scroll Row)
   ===================================================== */
.zp-shelf {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.zp-shelf::-webkit-scrollbar {
    display: none;
}

/* =====================================================
   SECTION WRAPPER & HEADER
   ===================================================== */
.zp-section {
    padding: 20px 0 16px;
    border-bottom: 6px solid #f5f6f8;
    background: #ffffff;
}

.zp-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.zp-section-see-all {
    font-size: 13px;
    font-weight: 600;
    color: #178038 !important;
    text-decoration: none !important;
}

.zp-section-see-all:hover {
    text-decoration: underline !important;
}

/* =====================================================
   HOW IT WORKS SECTION  (.zp-how-section)
   ===================================================== */
.zp-how-section {
    padding: 60px 0 80px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.zp-how-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.zp-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .zp-how-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.zp-how-card {
    background: #ffffff;
    border: 1.2px solid #f2f2f2;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.zp-how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #e5e7eb;
}

.zp-how-icon-wrap {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.zp-how-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.zp-how-card-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
}

/* =====================================================
   PRODUCT GRID FOR LISTING PAGES
   ===================================================== */
.zp-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(154px, 1fr));
    gap: 20px 14px;
    width: 100%;
    margin-bottom: 24px;
}

@media (max-width: 575px) {
    .zp-product-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Forces 2 columns on mobile just like Zepto */
        gap: 12px 8px;
    }
    .zp-card {
        width: 100% !important;
        min-width: 0 !important;
    }
    .zp-card__img-wrap {
        height: 120px !important;
    }
}

/* =====================================================
   SIDEBAR CATEGORIES WITH IMAGES & ACTIVE HIGHLIGHT
   ===================================================== */
.zp-category-side-img-wrap {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 10px;
    overflow: hidden;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.zp-category-side-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Make sidebar completely borderless, shadowless, flat on desktop */
.main-wrapper .sidebar {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

@media (min-width: 992px) {
    /* Independent scrolling for category sidebar */
    .main-wrapper .sidebar {
        position: sticky !important;
        top: 80px !important;
        height: calc(100vh - 90px) !important;
        min-height: calc(100vh - 90px) !important;
        overflow-y: auto !important;
        scrollbar-width: none !important; /* Hide scrollbar in Firefox */
        -ms-overflow-style: none !important; /* Hide scrollbar in IE/Edge */
        border-right: 1px solid #eaeaea !important; /* Single thin divider line */
        background: #ffffff !important;
    }
    
    /* Bulletproof scrollbar hiding for sidebar and all children */
    .main-wrapper .sidebar,
    .main-wrapper .sidebar *,
    .sidebar,
    .sidebar * {
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
    }
    
    .main-wrapper .sidebar::-webkit-scrollbar,
    .main-wrapper .sidebar *::-webkit-scrollbar,
    .sidebar::-webkit-scrollbar,
    .sidebar *::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
    }
    
    /* Independent scrolling for products grid */
    .main-wrapper .article {
        height: auto !important;
        overflow-y: visible !important;
    }
}

/* Sidebar widget styling adjustments */
.main-wrapper .sidebar .widget {
    background: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0 !important;
}

/* Category lists custom styles matching Zepto */
.all-categories .form--check {
    margin-bottom: 2px;
    border-radius: 0;
    overflow: hidden;
}

.all-categories .form--check-inner {
    padding: 10px 16px !important;
    border-radius: 0;
    transition: all 0.2s ease;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    font-size: 14.5px !important;
    color: #4b5563 !important;
    font-weight: 600 !important;
}

/* Hover style */
.all-categories .form--check-inner:hover {
    background: #f9fafb;
    color: #ff3f6c !important;
}

/* Active checked status highlight (just like Zepto's soft pink/purple bg and border indicator) */
.all-categories .form--check-inner:has(input:checked) {
    background: #fff5f7 !important;
    border-left: 4px solid #ff3f6c !important;
    color: #ff3f6c !important;
    font-weight: 700 !important;
}

.all-categories .form--check-inner:has(input:checked) .zp-category-side-img-wrap {
    transform: scale(1.05);
}

/* Hide native checkbox styling altogether in these widgets */
.all-categories .form--check-inner input[type="checkbox"] {
    display: none !important;
}
.all-categories .form--check-inner .check-icon {
    display: none !important;
}
.all-categories .form--check-inner .badge {
    display: none !important;
}

/* =====================================================
   PREMIUM FLOATING BANNER IMAGES (UBRA HUA SHADOW)
   ===================================================== */
.zp-banner-img {
    border-radius: 16px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
}

.zp-banner-img:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12) !important;
}

/* =====================================================
   ALL CATEGORIES MAX HEIGHT OVERRIDE & RADIO BUTTON HIDE
   ===================================================== */
.all-categories {
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
}

.all-categories .form--check-inner input[type="radio"] {
    display: none !important;
}

/* =====================================================
   PRODUCT DETAILS PAGE ZEPTO-STYLE UI UPGRADES
   ===================================================== */

/* 1. Reset backgrounds to pure white */
.product-single-section {
    background: #ffffff !important;
    padding-bottom: 40px !important;
}

/* 2. Top-Aligned Premium Product Details Sticky Bar */
.product-details-sticky,
.product-details-sticky-section {
    position: fixed !important;
    top: 80px !important; /* sits cleanly below the header navbar */
    bottom: auto !important;
    z-index: 9999 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 0 16px 16px !important;
    border-bottom: 1px solid #f1f1f4 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-120%) !important; /* Slide down from top */
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.product-details-sticky.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Hide collapse button & keep layout simple */
.product-details-sticky-collapse-btn {
    display: none !important;
}

body {
    padding-bottom: 0px !important;
}

/* 3. Two-column sticky split on desktop (min-width: 992px) */
@media (min-width: 992px) {
    .product-single-wrapper {
        display: grid !important;
        grid-template-columns: 460px 1fr !important;
        gap: 60px !important;
        align-items: start !important;
        position: relative !important;
    }

    .product-single-wrapper .product-single-thumb {
        grid-column: 1 !important;
        position: sticky !important;
        top: 110px !important;
        align-self: start !important;
        max-width: 100% !important;
        width: 100% !important;
        background: #ffffff !important;
    }

    .product-single-wrapper .product-single-content {
        grid-column: 2 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Stack pricing/delivery box directly under the description */
    .product-single-wrapper .product-single-pricing {
        grid-column: 2 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 30px !important;
        border: 1px solid #f1f1f4 !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
    }
}

/* 4. Left-column sticky ADD TO CART & BUY NOW button styles */
.product-single-thumb .product-add-and-buy-section-parent {
    margin-top: 24px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    width: 100% !important;
}

.product-single-thumb .product-add-and-buy-section {
    display: flex !important;
    width: 100% !important;
    gap: 12px !important;
}

.product-single-thumb .product-add-to-cart-button,
.product-single-thumb .product-buy-now-button {
    flex: 1 1 0% !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.product-single-thumb .product-add-to-cart-button {
    background: #ff3f6c !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(255, 63, 108, 0.25) !important;
}

.product-single-thumb .product-add-to-cart-button:hover {
    background: #e02f59 !important;
    transform: translateY(-1px) !important;
}

.product-single-thumb .product-buy-now-button {
    background: #ffffff !important;
    color: #ff3f6c !important;
    border: 1.5px solid #ff3f6c !important;
}

.product-single-thumb .product-buy-now-button:hover {
    background: #fff5f7 !important;
    transform: translateY(-1px) !important;
}

/* Wishlist and Compare buttons */
.product-single-thumb .addWishlist_function_view_page,
.product-single-thumb .addCompareList_view_page {
    width: 48px !important;
    height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    border: 1px solid #e4e4e7 !important;
    background: #ffffff !important;
    color: #71717a !important;
    transition: all 0.2s ease !important;
}

.product-single-thumb .addWishlist_function_view_page:hover,
.product-single-thumb .addCompareList_view_page:hover {
    background: #f4f4f5 !important;
    color: #18181b !important;
}/* Disable zoom/movement of product image on hover & hide flyout */
.easyzoom-flyout {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.easyzoom a {
    cursor: default !important;
    pointer-events: none !important;
}

.product-single-thumb img {
    transition: none !important;
    transform: none !important;
}

.product-single-thumb img:hover {
    transform: none !important;
    transition: none !important;
}

.product-single-thumb .product-share-icons,
.product-share-icons {
    display: none !important;
    visibility: hidden !important;
   ===================================================== */
.all-categories {
    max-height: none !important;
    overflow: visible !important;
    overflow-y: visible !important;
}

.all-categories .form--check-inner input[type="radio"] {
    display: none !important;
}

/* =====================================================
   PRODUCT DETAILS PAGE ZEPTO-STYLE UI UPGRADES
   ===================================================== */

/* 1. Reset backgrounds to pure white */
.product-single-section {
    background: #ffffff !important;
    padding-bottom: 40px !important;
}

/* 2. Top-Aligned Premium Product Details Sticky Bar */
.product-details-sticky,
.product-details-sticky-section {
    position: fixed !important;
    top: 80px !important; /* sits cleanly below the header navbar */
    bottom: auto !important;
    z-index: 9999 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08) !important;
    border-radius: 0 0 16px 16px !important;
    border-bottom: 1px solid #f1f1f4 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-120%) !important; /* Slide down from top */
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.product-details-sticky.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Hide collapse button & keep layout simple */
.product-details-sticky-collapse-btn {
    display: none !important;
}

body {
    padding-bottom: 0px !important;
}

/* 3. Two-column sticky split on desktop (min-width: 992px) */
@media (min-width: 992px) {
    .product-single-wrapper {
        display: grid !important;
        grid-template-columns: 460px 1fr !important;
        gap: 60px !important;
        align-items: start !important;
        position: relative !important;
    }

    .product-single-wrapper .product-single-thumb {
        grid-column: 1 !important;
        position: sticky !important;
        top: 110px !important;
        align-self: start !important;
        max-width: 100% !important;
        width: 100% !important;
        background: #ffffff !important;
    }

    .product-single-wrapper .product-single-content {
        grid-column: 2 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Stack pricing/delivery box directly under the description */
    .product-single-wrapper .product-single-pricing {
        grid-column: 2 !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-top: 30px !important;
        border: 1px solid #f1f1f4 !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02) !important;
    }
}

/* 4. Left-column sticky ADD TO CART & BUY NOW button styles */
.product-single-thumb .product-add-and-buy-section-parent {
    margin-top: 24px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    width: 100% !important;
}

.product-single-thumb .product-add-and-buy-section {
    display: flex !important;
    width: 100% !important;
    gap: 12px !important;
}

.product-single-thumb .product-add-to-cart-button,
.product-single-thumb .product-buy-now-button {
    flex: 1 1 0% !important;
    height: 48px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
}

.product-single-thumb .product-add-to-cart-button {
    background: #ff3f6c !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(255, 63, 108, 0.25) !important;
}

.product-single-thumb .product-add-to-cart-button:hover {
    background: #e02f59 !important;
    transform: translateY(-1px) !important;
}

.product-single-thumb .product-buy-now-button {
    background: #ffffff !important;
    color: #ff3f6c !important;
    border: 1.5px solid #ff3f6c !important;
}

.product-single-thumb .product-buy-now-button:hover {
    background: #fff5f7 !important;
    transform: translateY(-1px) !important;
}

/* Wishlist and Compare buttons */
.product-single-thumb .addWishlist_function_view_page,
.product-single-thumb .addCompareList_view_page {
    width: 48px !important;
    height: 48px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    border: 1px solid #e4e4e7 !important;
    background: #ffffff !important;
    color: #71717a !important;
    transition: all 0.2s ease !important;
}

.product-single-thumb .addWishlist_function_view_page:hover,
.product-single-thumb .addCompareList_view_page:hover {
    background: #f4f4f5 !important;
    color: #18181b !important;
}/* Disable zoom/movement of product image on hover & hide flyout */
.easyzoom-flyout {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.easyzoom a {
    cursor: default !important;
    pointer-events: none !important;
}

.product-single-thumb img {
    transition: none !important;
    transform: none !important;
}

.product-single-thumb img:hover {
    transform: none !important;
    transition: none !important;
}

.product-single-thumb .product-share-icons,
.product-share-icons {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

/* Step-by-step guide flat container styles */
.zepto-how-to-buy-section .zepto-guide-card {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

/* Breadcrumb separator override (">" instead of "/") */
.breadcrumb li:not(:last-child)::after {
    content: ">" !important;
}

/* Cart status badge color override (Green instead of Redish) */
.header-right-icons li a .cart_count_status,
.btn-status.cart_count_status {
    background: #0f8a3c !important;
}

/* Hide cart badge if count is 0 */
.cart_count_status:empty,
.cart_count_status[data-count="0"],
.cart_count_status.d-none {
    display: none !important;
}

/* Override category card background to pure white */
.zepto-category-card {
    background-color: #ffffff !important;
}
.zepto-category-item:hover .zepto-category-card {
    background-color: #ffffff !important;
}

/* Override banner section background to pure white */
.zepto-banner-section {
    background: #ffffff !important;
    padding: 16px 0 !important;
}

/* Zepto location selector hover highlight */
.zepto-location-wrapper:hover {
    background: #f3f4f6 !important;
}

/* Premium CSS-only Loader Styles */
.zepto-loader-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.zepto-spinner {
    width: 50px !important;
    height: 50px !important;
    border: 3.5px solid #f3f3f3 !important;
    border-top: 3.5px solid var(--grocery-primary, #ff3f6c) !important;
    border-radius: 50% !important;
    animation: zepto-spin 0.8s linear infinite !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

@keyframes zepto-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes skeleton-pulse {
    0% { background-color: #f3f4f6; }
    50% { background-color: #e5e7eb; }
    100% { background-color: #f3f4f6; }
}

/* Zepto Sidebar & Settings Styling */
.zepto-sidebar-nav .nav-link {
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
    border: none !important;
    outline: none !important;
}

.zepto-sidebar-nav .nav-link.active {
    background-color: #faf9ff !important;
    color: #6c5ce7 !important;
}

.zepto-sidebar-nav .nav-link:hover:not(.active) {
    background-color: #f8f9fa !important;
}

.order-item-card {
    transition: box-shadow 0.2s ease !important;
}

.order-item-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
}

.bg-success-soft {
    background-color: #e6fcf5 !important;
}

/* Shop Cart UI Overrides (Attractive White Theme) */
#cart-summary {
    background: #ffffff !important;
}

#cart-summary .container {
    max-width: 1200px !important;
}

#cart-summary .cart-title-area {
    background: #fff !important;
    border: 1px solid #f1f1f4 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

#cart-summary .cart-title-area h6.title {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin: 0 !important;
}

#cart-summary .cart_information {
    background: #ffffff !important;
    border: 1px solid #f1f1f4 !important;
    border-radius: 16px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01) !important;
}

#cart-summary .cart_information .--bg-6 {
    background: #ffffff !important;
    border-bottom: 1px solid #f1f1f4 !important;
    border-radius: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#cart-summary .table {
    --bs-table-bg: transparent !important;
}

#cart-summary table.cart-list-table-custom {
    border: 1px solid #f1f1f4 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
}

#cart-summary table.cart-list-table-custom thead {
    background: #fafafa !important;
    border-bottom: 1px solid #f1f1f4 !important;
}

#cart-summary table.cart-list-table-custom th {
    padding: 14px 16px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #4b5563 !important;
    text-transform: uppercase !important;
}

/* Totals Cost sidebar card */
#cart-summary .total-cost-wrapper {
    background: #ffffff !important;
    border: 1px solid #f1f1f4 !important;
    border-radius: 16px !important;
    padding: 24px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

#cart-summary .total-cost-wrapper .title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-align: left !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #f1f1f4 !important;
    padding-bottom: 12px !important;
}

#cart-summary .apply-coupon-form {
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    display: flex !important;
    background: #fff !important;
}

#cart-summary .apply-coupon-form input {
    border: none !important;
    font-size: 13px !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
}

#cart-summary .apply-coupon-form button {
    background: #000 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 20px !important;
    text-transform: uppercase !important;
}

#cart-summary .total-cost-info {
    border: none !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding: 0 !important;
}

#cart-summary .total-cost-info li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
    color: #4b5563 !important;
    border-bottom: 1px dashed #f1f1f4 !important;
}

#cart-summary .total-cost-info li:last-child {
    border-bottom: none !important;
}

#cart-summary .proceed-cart-btn h6 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-bottom: 20px !important;
    border-top: 1px solid #f1f1f4 !important;
    padding-top: 16px !important;
}

#cart-summary .proceed-cart-btn button.checkout_action {
    background: #ff3f6c !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border: none !important;
    border-radius: 12px !important;
    height: 48px !important;
    transition: background 0.2s ease !important;
}

#cart-summary .proceed-cart-btn button.checkout_action:hover {
    background: #e6355f !important;
}

#cart-summary .total-cost-delivery-info {
    border: 1px solid #f1f1f4 !important;
    border-radius: 12px !important;
    background: #faf9ff !important;
    padding: 16px !important;
    margin-bottom: 20px !important;
    list-style: none !important;
}

#cart-summary .total-cost-delivery-info li {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    font-size: 12px !important;
    color: #4b5563 !important;
    margin-bottom: 12px !important;
}

#cart-summary .total-cost-delivery-info li:last-child {
    margin-bottom: 0 !important;
}

#cart-summary .total-cost-delivery-info li img.icons {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
}

/* Quantity selector */
#cart-summary .quantity {
    border: 1px solid #ff3f6c !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    width: 90px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

#cart-summary .quantity .cart-qty-btn {
    width: 28px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ff3f6c !important;
    font-size: 16px !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
}

#cart-summary .quantity input.cart-qty-input {
    width: 32px !important;
    text-align: center !important;
    border: none !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ff3f6c !important;
    padding: 0 !important;
    background: none !important;
    margin: 0 !important;
}

/* Premium Grocery Loader Styles */
.grocery-loader-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.grocery-loader-container {
    position: relative !important;
    width: 80px !important;
    height: 80px !important;
    margin-bottom: 10px !important;
}

/* Bouncing grocery items above cart */
.grocery-item {
    position: absolute !important;
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    bottom: 35px !important;
    animation: grocery-bounce 1.2s infinite ease-in-out !important;
}

.grocery-item-1 {
    left: 20px !important;
    background-color: #4caf50 !important; /* Green apple */
    animation-delay: -0.4s !important;
}

.grocery-item-2 {
    left: 31px !important;
    background-color: #ff5722 !important; /* Red tomato */
    animation-delay: -0.2s !important;
}

.grocery-item-3 {
    left: 42px !important;
    background-color: #ffeb3b !important; /* Yellow lemon */
    animation-delay: 0s !important;
}

/* Shopping cart animation */
.grocery-loader-cart {
    position: absolute !important;
    bottom: 5px !important;
    left: 10px !important;
    animation: cart-roll 1.2s infinite ease-in-out !important;
}

@keyframes grocery-bounce {
    0%, 100% {
        transform: translateY(0) scale(1) !important;
        opacity: 0.35 !important;
    }
    50% {
        transform: translateY(-22px) scale(1.25) !important;
        opacity: 1 !important;
    }
}

@keyframes cart-roll {
    0%, 100% {
        transform: translateX(0) rotate(0deg) !important;
    }
    25% {
        transform: translateX(-3px) rotate(-1.5deg) !important;
    }
    75% {
        transform: translateX(3px) rotate(1.5deg) !important;
    }
}

/* Sticky Sidebar & Header for Account Pages */
@media (min-width: 768px) {
    .account-page {
        height: auto !important;
        overflow: visible !important;
        padding: 24px 0 !important;
        background: #f8fafc !important;
    }

    .account-page > .container,
    .account-page > .container > .row {
        height: auto !important;
    }

    /* Left Sidebar: Sticky column container */
    .account-page .col-md-4.col-lg-3 {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 110px !important; /* Stays fixed below main header */
        max-height: calc(100vh - 140px) !important;
        overflow: hidden !important;
        padding-bottom: 0 !important;
    }
    
    /* Left Sidebar Card Wrapper: Scrollable with custom scrollbar */
    .account-sidebar {
        height: 100% !important;
        overflow-y: auto !important;
        position: relative !important;
    }

    /* Custom thin scrollbar for left sidebar card */
    .account-sidebar::-webkit-scrollbar {
        width: 6px !important;
    }
    .account-sidebar::-webkit-scrollbar-track {
        background: #f8fafc !important;
        border-radius: 10px !important;
    }
    .account-sidebar::-webkit-scrollbar-thumb {
        background: #cbd5e1 !important;
        border-radius: 10px !important;
    }
    .account-sidebar::-webkit-scrollbar-thumb:hover {
        background: #94a3b8 !important;
    }
    
    /* Right Content Column: Transparent, non-scrollable column */
    .account-page .col-md-8.col-lg-9 {
        height: auto !important;
        overflow: visible !important;
        position: relative !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 15px !important;
    }

    /* Unified Premium Right Container Card Wrapper: Sticky and independently scrollable */
    .account-page .account-card-wrapper {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 110px !important; /* Stays fixed below main header */
        max-height: calc(100vh - 140px) !important;
        background: #ffffff !important;
        border: 1px solid #eef2f6 !important;
        border-radius: 16px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
        padding: 30px !important;
        overflow-y: auto !important;
    }

    /* Neutralize inner card wrappers to avoid double cards */
    .account-page .col-md-8.col-lg-9 .account-card {
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
    }

    /* Custom thin scrollbar for right content card wrapper */
    .account-page .account-card-wrapper::-webkit-scrollbar {
        width: 6px !important;
    }
    .account-page .account-card-wrapper::-webkit-scrollbar-track {
        background: #f8fafc !important;
        border-radius: 10px !important;
    }
    .account-page .account-card-wrapper::-webkit-scrollbar-thumb {
        background: #cbd5e1 !important;
        border-radius: 10px !important;
    }
    .account-page .account-card-wrapper::-webkit-scrollbar-thumb:hover {
        background: #94a3b8 !important;
    }

    /* Premium Clickable Address Label Pills */
    .address-label-pill {
        margin: 0 !important;
    }
    .address-label-pill input:checked + .pill-content {
        background: var(--grocery-primary) !important;
        color: #ffffff !important;
        border-color: var(--grocery-primary) !important;
        box-shadow: 0 4px 10px rgba(15, 123, 57, 0.15) !important;
    }
    .address-label-pill .pill-content {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 22px;
        border: 1.5px solid #e2e8f0;
        border-radius: 100px;
        font-size: 13px;
        font-weight: 700;
        color: #475569;
        cursor: pointer;
        background: #ffffff;
        transition: all 0.2s ease-in-out;
    }
    .address-label-pill .pill-content:hover {
        border-color: var(--grocery-primary);
        color: var(--grocery-primary);
    }
    .address-label-pill .pill-content i {
        font-size: 14px;
    }

    /* Premium Geolocation Button */
    #use-current-location-btn {
        background: #f0fdf4 !important;
        border: 1.5px solid #bbf7d0 !important;
        color: #16a34a !important;
        font-weight: 700 !important;
        border-radius: 100px !important;
        padding: 8px 18px !important;
        font-size: 12px !important;
        transition: all 0.2s ease !important;
    }
    #use-current-location-btn:hover {
        background: #dcfce7 !important;
        border-color: #86efac !important;
        color: #15803d !important;
    }
    .account-page .col-md-8.col-lg-9::-webkit-scrollbar-thumb:hover {
        background: #94a3b8 !important;
    }
    
    /* Sticky Top Header Bar on Right Column */
    .account-details-header-sticky {
        position: sticky !important;
        top: 0px !important;
        z-index: 100 !important;
        background: #f8fafc !important; /* Match body bg */
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        margin-top: -10px !important;
    }
}

/* Premium AJAX Loading Progress Line */
.account-ajax-loading-bar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 3px !important;
    background: var(--grocery-primary) !important;
    width: 0 !important;
    z-index: 1000 !important;
    border-radius: 3px !important;
    animation: ajax-progress 1.5s infinite linear !important;
}
@keyframes ajax-progress {
    0% { width: 0%; left: 0%; }
    50% { width: 70%; left: 15%; }
    100% { width: 100%; left: 100%; }
}

/* Premium Orders Page Layout styles */
.tab-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 8px;
}

.tab-filters a {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.tab-filters a:hover {
    color: var(--grocery-primary);
    background: #e6fcf5;
}

.tab-filters a.active {
    color: #ffffff !important;
    background: var(--grocery-primary) !important;
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.2) !important;
}

.search-box {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 6px 12px;
    gap: 8px;
    margin-bottom: 20px;
    transition: all 0.2s;
}

.search-box:focus-within {
    border-color: var(--grocery-primary);
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.15);
    background: #ffffff;
}

.search-box input {
    border: none !important;
    outline: none !important;
    background: transparent !important;
    flex-grow: 1;
    font-size: 13.5px;
    color: #0f172a;
    padding: 8px 0;
}

.search-box button {
    border: none;
    outline: none;
    background: var(--grocery-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.search-box button:hover {
    background: #0ca678;
}

.search-box button a {
    color: #ffffff !important;
    text-decoration: none;
}

.order-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    transition: all 0.2s ease-in-out;
}

.order-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.order-id {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.order-date {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

.status-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: capitalize;
}

.status-badge.success {
    background: #e6fcf5;
    color: #0ca678;
}

.status-badge.warning {
    background: #fff9db;
    color: #f08c00;
}

.status-badge.danger {
    background: #fff5f5;
    color: #e03131;
}

.order-shop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #475569;
    font-weight: 600;
    margin-bottom: 16px;
}

.order-shop i {
    font-size: 15px;
    color: var(--grocery-primary);
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.order-total {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
}

.order-actions {
    display: flex;
    gap: 8px;
}

.order-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #64748b;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s;
}

.order-actions a:hover {
    color: var(--grocery-primary);
    border-color: var(--grocery-primary);
    background: #e6fcf5;
}

.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
}

.empty-state img {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.empty-state h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.empty-state p {
    font-size: 13.5px;
    color: #64748b;
}

/* Map Sizing and Enhancements */
#location_map_canvas {
    height: 460px !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
}

/* Premium Form Check Inline (Label Choice) Styles */
.form-check-inline {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 18px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out !important;
    margin-right: 0 !important;
}

.form-check-inline:hover {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

.form-check-inline:has(input:checked) {
    background: #e6fcf5 !important;
    border-color: var(--grocery-primary) !important;
    color: var(--grocery-primary) !important;
}

.form-check-inline input[type="radio"] {
    margin-top: 0 !important;
    cursor: pointer !important;
    accent-color: var(--grocery-primary) !important;
}

.form-check-inline label {
    margin-bottom: 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    cursor: pointer !important;
}

.form-check-inline:has(input:checked) label {
    color: #0ca678 !important;
}

/* Support and Ticket Custom Flow Styles */
.ticket-row {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 16px !important;
    transition: all 0.2s ease-in-out !important;
}
.ticket-row:hover {
    border-color: #e2e8f0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04) !important;
    transform: translateY(-2px) !important;
}

/* Order Submenu Navigation Styles */
.submenu-nav-links {
    list-style: none !important;
    margin-left: 16px !important;
    border-left: 1.5px dashed #cbd5e1 !important;
    padding-left: 12px !important;
    margin-top: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
}

.nav-link-sub {
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #64748b !important;
    padding: 6px 12px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
}

.nav-link-sub:hover {
    color: var(--grocery-primary) !important;
    background: #e6fcf5 !important;
}

.nav-link-sub.active {
    color: #ffffff !important;
    background: var(--grocery-primary) !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(32, 201, 151, 0.15) !important;
}

.nav-link-sub i {
    font-size: 14px !important;
}

/* Inbox/Chat Container Overrides */
.account-page .account-card-wrapper:has(.inbox-container) {
    padding: 0 !important;
    overflow: hidden !important;
}

/* Compare Table Custom Premium Styles */
.compare-table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.compare-table th {
    background: #f8fafc !important;
    padding: 16px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    border-bottom: 1px solid #e2e8f0 !important;
    border-right: 1px solid #e2e8f0 !important;
}

.compare-table th:last-child {
    border-right: none !important;
}

.compare-table td {
    padding: 14px 16px !important;
    background: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    border-right: 1px solid #f1f5f9 !important;
}

.compare-table td:last-child {
    border-right: none !important;
}

.compare-table tr:last-child td {
    border-bottom: none !important;
}

/* Hide all traces of Wishlist feature globally */
.addWishlist_function_view_page,
.wish-icon,
.addWishlist_function_btn,
.wishlist-btn-view-page,
[href*="wishlists"] {
    display: none !important;
}
