     /* ═══════════════════════════════════════
                                        BULK MENU PAGE — REDESIGNED
                                        ═══════════════════════════════════════ */

        :root {
            --gold: #c8a94e;
            --gold-dark: #a88930;
            --gold-light: #f0e2b0;
            --gold-bg: #faf6ec;
            --ink: #1c1a16;
            --ink-muted: #6b6455;
            --surface: #ffffff;
            --border: #e8e1d0;
            --radius-card: 20px;
            --radius-btn: 10px;
            --shadow-card: 0 2px 20px rgba(0, 0, 0, 0.07);
            --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.13);
            --font-display: 'Playfair Display', serif;
            --font-body: 'DM Sans', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-body);
        }

        /* ── BANNER ── */
        .bulk-banner {
            position: relative;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-image: url('../images/banner/bnr2.jpg');
            background-size: cover;
            background-position: center;
        }

        .bulk-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(18, 15, 9, 0.75) 0%, rgba(18, 15, 9, 0.55) 100%);
        }

        .bulk-banner::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 80px;
            /* background: linear-gradient(to top, #f7f4ee, transparent); */
        }

        .bulk-banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .bulk-banner-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 169, 78, 0.18);
            border: 1px solid rgba(200, 169, 78, 0.35);
            color: var(--gold);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-radius: 30px;
            padding: 6px 16px;
            margin-bottom: 16px;
        }

        .bulk-banner-title {
            font-family: var(--font-display);
            font-size: clamp(38px, 6vw, 60px);
            color: #fff;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .bulk-banner-title span {
            color: var(--gold);
        }

        .bulk-banner-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.65);
        }

        .bulk-banner-breadcrumb a {
            color: var(--gold);
            text-decoration: none;
        }

        .bulk-banner-breadcrumb .sep {
            opacity: 0.4;
        }

        /* ── MAIN SECTION ── */
        .bulk-main {
            background: #f7f4ee;
            padding: 56px 0 80px;
        }

        /* ── SEARCH ── */
        .bulk-search-area {
            max-width: 580px;
            margin: 0 auto 50px;
        }

        .bulk-search-label {
            font-family: var(--font-display);
            font-size: 22px;
            font-weight: 700;
            color: var(--ink);
            text-align: center;
            margin-bottom: 18px;
        }

        .bulk-search-label span {
            color: var(--gold);
        }

        .bulk-search-box {
            position: relative;
            display: flex;
            align-items: center;
            background: var(--surface);
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 6px 6px 6px 20px;
            box-shadow: var(--shadow-card);
            transition: border-color .2s, box-shadow .2s;
        }

        .bulk-search-box:focus-within {
            border-color: var(--gold);
            box-shadow: 0 4px 24px rgba(200, 169, 78, 0.18);
        }

        .bulk-search-box i.search-ico {
            color: var(--gold);
            font-size: 18px;
            margin-right: 12px;
            flex-shrink: 0;
        }

        .bulk-search-box input {
            flex: 1;
            border: none;
            outline: none;
            background: transparent;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--ink);
        }

        .bulk-search-box input::placeholder {
            color: #bbb;
        }

        .bulk-search-btn {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: #fff;
            border: none;
            border-radius: 40px;
            padding: 10px 22px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity .15s, transform .1s;
            white-space: nowrap;
            flex-shrink: 0;
        }

        .bulk-search-btn:hover {
            opacity: 0.88;
        }

        .search-clear-btn {
            background: none;
            border: none;
            cursor: pointer;
            color: #bbb;
            font-size: 15px;
            padding: 0 10px;
            transition: color .15s;
            display: none;
        }

        .search-clear-btn.visible {
            display: flex;
            align-items: center;
        }

        .search-clear-btn:hover {
            color: #e84020;
        }

        #search-results-count {
            text-align: center;
            font-size: 13px;
            color: var(--ink-muted);
            margin-top: 12px;
            min-height: 16px;
        }

        /* ── CATEGORY TABS ── */
        .bulk-tabs {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .bulk-tab {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 10px 22px;
            border-radius: 40px;
            border: 1.5px solid var(--border);
            background: var(--surface);
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            color: var(--ink-muted);
            cursor: pointer;
            transition: all .2s;
            white-space: nowrap;
        }

        .bulk-tab:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .bulk-tab.active {
            background: var(--ink);
            border-color: var(--ink);
            color: #fff;
            box-shadow: 0 4px 16px rgba(28, 26, 22, 0.2);
        }

        .bulk-tab .tab-count {
            background: rgba(200, 169, 78, 0.2);
            color: var(--gold);
            font-size: 11px;
            font-weight: 600;
            border-radius: 20px;
            padding: 1px 7px;
            min-width: 22px;
            text-align: center;
        }

        .bulk-tab.active .tab-count {
            background: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.8);
        }

        /* ── SECTION HEADER ── */
        .bulk-section-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            margin-bottom: 28px;
            flex-wrap: wrap;
            gap: 12px;
        }

        .bulk-section-header-left {}

        .bulk-section-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .bulk-section-eyebrow::before,
        .bulk-section-eyebrow::after {
            content: '';
            display: inline-block;
            width: 20px;
            height: 1.5px;
            background: var(--gold);
            opacity: 0.5;
        }

        .bulk-section-title {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: var(--ink);
            line-height: 1.15;
        }

        .bulk-section-subtitle {
            font-size: 14px;
            color: var(--ink-muted);
            margin-top: 4px;
        }

        .bulk-section-count {
            font-size: 13px;
            color: var(--ink-muted);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 5px 14px;
            white-space: nowrap;
        }


        /* ── GRID ── */
        .bulk-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            transition: all .3s;
        }

        .bulk-grid.list-view {
            grid-template-columns: 1fr;
        }

        /* ── CARD ── */
        .bulk-card {
            background: var(--surface);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
            animation: cardIn .4s ease both;
        }

        .bulk-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(200, 169, 78, 0.4);
        }

        .bulk-grid.list-view .bulk-card {
            flex-direction: row;
            align-items: stretch;
        }

        @keyframes cardIn {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bulk-card.hidden {
            display: none !important;
        }

        /* Badge */
        .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 3;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 4px 10px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .badge-veg {
            background: #e8f9f0;
            color: #1a8a4a;
            border: 1px solid #b5e8cc;
        }

        .badge-satvik {
            background: #fff4e0;
            color: #b36200;
            border: 1px solid #f5d580;
        }

        /* Wishlist btn */
        .card-wishlist {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 3;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #ccc;
            font-size: 14px;
            transition: all .2s;
            backdrop-filter: blur(4px);
        }

        .card-wishlist:hover,
        .card-wishlist.active {
            color: #e84020;
            border-color: #e84020;
            background: #fff0ee;
        }

        /* Image */
        .card-img-wrap {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: #f0ece2;
            flex-shrink: 0;
        }

        .bulk-grid.list-view .card-img-wrap {
            width: 190px;
            height: auto;
            min-height: 160px;
        }

        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .5s ease;
        }

        .bulk-card:hover .card-img-wrap img {
            transform: scale(1.07);
        }

        .card-img-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(28, 26, 22, 0.35) 0%, transparent 55%);
            opacity: 0;
            transition: opacity .3s;
        }

        .bulk-card:hover .card-img-overlay {
            opacity: 1;
        }

        /* Body */
        .card-body {
            padding: 3px 18px 18px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .card-category-tag {
            font-size: 11px;
            font-weight: 600;
            color: var(--gold-dark);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .card-title {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 7px;
            line-height: 1.35;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-title a {
            color: inherit;
            text-decoration: none;
        }

        .card-title a:hover {
            color: var(--gold);
        }

        .card-desc {
            font-size: 12.5px;
            color: var(--ink-muted);
            line-height: 1.6;
            margin-bottom: 16px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }


        /* Footer */
        .card-footer-row {
            /* display: flex; */
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            margin-top: auto;
        }

        .card-price-wrap {}

        .card-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            line-height: 1.1;
        }

        .card-price-label {
            font-size: 10px;
            color: var(--ink-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .card-price .per-unit {
            font-size: 11px;
            font-weight: 400;
            color: var(--ink-muted);
        }

        /* Quantity + Add */
        .card-actions {
            display: flex;
            align-items: center;
            gap: 8px;
        }



        .qty-btn {
            width: 30px;
            height: 34px;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--gold-dark);
            font-size: 16px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .15s;
            line-height: 1;
        }

        .qty-btn:hover {
            background: var(--gold-bg);
        }

        .qty-val {
            width: 28px;
            text-align: center;
            font-size: 13px;
            font-weight: 600;
            color: var(--ink);
            border: none;
            outline: none;
            background: transparent;
            pointer-events: none;
        }

        .btn-add-cart {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--ink);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 9px 16px;
            font-family: var(--font-body);
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: background .15s, transform .1s, box-shadow .15s;
            white-space: nowrap;
            text-decoration: none;
        }

        .btn-add-cart:hover {
            background: var(--gold-dark);
            box-shadow: 0 4px 16px rgba(200, 169, 78, 0.35);
            color: #fff;
        }

        .btn-add-cart:active {
            transform: scale(0.96);
        }

        .btn-add-cart i {
            font-size: 14px;
        }

        .btn-add-cart.added {
            background: #1a8a4a;
        }

        .btn-add-cart.added i::before {
            content: "\f00c";
        }

        /* ── SATVIK SECTION ── */
        .satvik-section-wrap {
            margin-top: 70px;
            padding-top: 60px;
            border-top: 1px solid var(--border);
            position: relative;
        }

        .satvik-section-wrap::before {
            content: '🪔';
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: #f7f4ee;
            padding: 0 16px;
            font-size: 28px;
            line-height: 1;
        }

        .satvik-card {
            border-color: #f0dfa8;
        }

        .satvik-card:hover {
            border-color: #c8a94e;
        }

        /* ── NO RESULTS ── */
        .no-results-msg {
            grid-column: 1 / -1;
            text-align: center;
            padding: 80px 20px;
            display: none;
        }

        .no-results-icon {
            width: 80px;
            height: 80px;
            background: var(--gold-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: var(--gold);
        }

        .no-results-msg p {
            font-size: 17px;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 6px;
        }

        .no-results-msg span {
            font-size: 13px;
            color: var(--ink-muted);
        }

        /* ── TOAST ── */
        #bulk-toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(90px);
            background: var(--ink);
            color: #fff;
            padding: 13px 24px;
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 500;
            z-index: 9999;
            pointer-events: none;
            transition: transform .35s cubic-bezier(.34, 1.56, .64, 1);
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        #bulk-toast.show {
            transform: translateX(-50%) translateY(0);
        }

        #bulk-toast i {
            color: var(--gold);
            font-size: 16px;
        }

        #bulk-toast .toast-item {
            font-weight: 700;
            color: var(--gold);
        }


        /* ── RESPONSIVE ── */
        @media (max-width: 768px) {
            .bulk-banner {
                height: 220px;
            }

            .bulk-stats-inner {
                gap: 24px;
            }

            .bulk-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .card-img-wrap {
                height: 150px;
            }

            .card-title {
                font-size: 14px;
            }

            .bulk-tabs {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 4px;
                flex-wrap: nowrap;
            }
        }

        @media (max-width: 480px) {
            .bulk-grid {
                grid-template-columns: 1fr;
            }
        }

        .bulk-products-list {
            margin-top: 8px;
            min-height: 85px;
            max-height: 110px;
            overflow-y: auto;
            padding-right: 4px;
        }

        .bulk-products-list::-webkit-scrollbar {
            width: 4px;
        }

        .bulk-products-list::-webkit-scrollbar-thumb {
            background: #d8b15a;
            border-radius: 20px;
        }

        .bulk-product-option {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 7px;
            cursor: pointer;
            font-size: 13px;
            color: #666;
        }

        .bulk-product-option input {
            display: none;
        }

        .checkmark-custom {
            width: 16px;
            height: 16px;
            min-width: 16px;
            border: 1.5px solid #d8b15a;
            border-radius: 4px;
            background: #fff;
            position: relative;
            transition: .3s;
        }

        .bulk-product-option input:checked+.checkmark-custom {
            background: #d8b15a;
            border-color: #d8b15a;
        }

        .bulk-product-option input:checked+.checkmark-custom:after {
            content: "✓";
            color: #fff;
            position: absolute;
            left: 3px;
            top: -1px;
            font-size: 11px;
            font-weight: 700;
        }

        .product-info {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        .product-name {
            color: #555;
            font-size: 13px;
            font-weight: 500;
        }

        .product-price {
            color: #c59d3d;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }

        .empty-products {
            color: #999;
            font-size: 13px;
        }

        /* Blur disabled product items */
        .bulk-product-option.item-disabled {
            opacity: 0.45;
            filter: blur(1px);
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Keep selected items normal */
        .bulk-product-option.item-disabled input:checked {
            opacity: 1;
        }

        /* new css  */

        .bulk-product-option {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .product-info {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }

        .product-quantity-control {
            display: none;
            align-items: center;
            border: 1px solid #d8a62a;
            border-radius: 7px;
            overflow: hidden;
            height: 30px;
            flex-shrink: 0;
        }

        .bulk-product-option.selected .product-quantity-control {
            display: flex;
        }

        .product-qty-minus,
        .product-qty-plus {
            width: 28px;
            height: 30px;
            border: 0;
            background: #fff;
            color: #b88716;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            padding: 0;
        }

        .product-qty-minus:hover,
        .product-qty-plus:hover {
            background: #f8f1df;
        }

        .product-qty-minus:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .product-qty-value {
            width: 26px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: #333;
        }

        .bulk-product-option.item-disabled {
            opacity: 0.35;
            pointer-events: none;
        }

        .bulk-product-option.item-disabled input {
            pointer-events: none;
        }

        .plate-quantity-wrap {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 8px;
        }

        .plate-quantity-label {
            font-size: 13px;
            color: #777;
            font-weight: 500;
        }

        .plate-quantity-control {
            display: flex;
            align-items: center;
            height: 30px;
            border: 1px solid #ddd;
            border-radius: 7px;
            overflow: hidden;
        }

        .plate-qty-minus,
        .plate-qty-plus {
            width: 28px;
            height: 30px;
            border: 0;
            background: #fff;
            cursor: pointer;
            font-size: 17px;
            color: #333;
        }

        .plate-qty-minus:hover,
        .plate-qty-plus:hover {
            background: #f5f5f5;
        }

        .plate-qty-value {
            min-width: 28px;
            text-align: center;
            font-size: 14px;
            font-weight: 600;
        }

        /* show toast  */
        #bulk-toast {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    background: #198754;
    color: #fff;

    padding: 13px 20px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 600;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: all 0.3s ease;

    z-index: 99999;
}

#bulk-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#bulk-toast i {
    font-size: 18px;
}

/* =========================================
   Fixed View Cart Button
========================================= */

.bulk-view-cart {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 155px;
    height: 52px;

    padding: 0 14px;

    background: #198754;
    color: #fff !important;

    border-radius: 30px;

    text-decoration: none !important;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);

    z-index: 99999;

    transition: all 0.25s ease;
}

.bulk-view-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
    color: #fff !important;
}

/* Cart Icon */

.bulk-cart-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    font-size: 16px;
}

/* Text */

.bulk-cart-text {
    flex: 1;

    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

/* Count */

.bulk-cart-count {
    min-width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 7px;

    background: #fff;
    color: #198754;

    border-radius: 50px;

    font-size: 12px;
    font-weight: 800;
}

/* Mobile */

@media (max-width: 576px) {

    .bulk-view-cart {
        right: 15px;
        bottom: 15px;

        min-width: 140px;
        height: 48px;

        padding: 0 11px;
    }

    .bulk-cart-icon {
        width: 34px;
        height: 34px;
    }

    .bulk-cart-text {
        font-size: 13px;
    }

    .bulk-cart-count {
        min-width: 23px;
        height: 23px;
    }
}

        /* new css  */


        /* new for bulk footer add cart css  */

        /* =========================
   BULK CARD FOOTER
========================= */

.card-footer-row {
    width: 100%;
    margin-top: 18px;
}


/* =========================
   ROW 1
========================= */

.footer-top-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* margin-bottom: 14px; */
}

.card-price.total-price {
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: #181818;
}

.bulk-price-label {
    font-size: 15px;
    color: #777;
    white-space: nowrap;
}

.selected-count {
    font-weight: 600;
}


/* =========================
   ROW 2
========================= */

.footer-bottom-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================
   PLATES
========================= */

.plate-quantity-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plate-quantity-label {
    font-size: 15px;
    font-weight: 600;
    color: #777;
}

.plate-quantity-control {
    /* height: 40px; */
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 9px;
    overflow: hidden;
    background: #fff;
}

.plate-quantity-control button {
    width: 34px;
    height: 100%;
    border: 0;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

.plate-qty-value {
    width: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}


/* =========================
   ADD BUTTON
========================= */

.card-actions {
    flex-shrink: 0;
}

.btn-add-cart {
    /* width: 108px; */
    /* height: 50px; */
    border: 0;
    /* border-radius: 13px; */
    background: #202020;
    color: #fff;

    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* gap: 8px; */

    /* font-size: 17px; */
    font-weight: 600;
    cursor: pointer;
}

.btn-add-cart:hover {
    background: #111;
}


/* =========================
   ORDER BEFORE
========================= */

.order-before {
    width: 100%;
    text-align: center;

    margin-top: 8px;

    color: #e53935;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 480px) {

    .card-price.total-price {
        font-size: 25px;
    }

    .bulk-price-label {
        font-size: 14px;
    }

    .plate-quantity-label {
        font-size: 14px;
    }

    .plate-quantity-control {
        height: 38px;
    }

    .btn-add-cart {
        width: 100px;
        height: 46px;
        font-size: 15px;
    }

    .order-before {
        font-size: 13px;
    }
}
        
        /* new for bulk footer add cart css  */