        .cart-wrapper {
            background-color: #f8f9fa;
            min-height: fit-content;
            padding: 40px 0;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            transition: transform 0.2s;
            padding: 16px;
            border: 1px solid #f1f5f9;
        }

        .product-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .quantity-input {
            width: 60px;
            text-align: center;
            border: 1px solid #dee2e6;
            border-radius: 6px;
        }

        .product-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 8px;
        }

        .summary-card {
            background: white;
            border-radius: 12px;
            position: sticky;
            top: 20px;
        }

        .checkout-btn {
            background: #2DA8B3;
            border: none;
            transition: transform 0.2s;
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            background: linear-gradient(135deg, #4f46e5, #4338ca);
        }

        .remove-btn {
            color: #dc2626;
            cursor: pointer;
            transition: all 0.2s;
        }

        .remove-btn:hover {
            color: #991b1b;
        }

        .quantity-btn {
            width: 28px;
            height: 28px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: #f3f4f6;
            border: none;
            transition: all 0.2s;

        }

        .quantity-btn:hover {
            background: #e5e7eb;
        }

        .discount-badge {
            background: #dcfce7;
            color: #166534;
            font-size: 0.875rem;
            padding: 4px 8px;
            border-radius: 6px;
        }

        /*missed grid*/
        .missed-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            /* fixed columns */
            gap: 20px;
        }

        .missed-card {
            background: white;
            border-radius: 12px;
            padding: 15px;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .missed-card:hover {
            transform: translateY(-5px);
        }

        .missed-card img {
            width: 100%;
            height: 150px;
            object-fit: contain;
        }

        .add-btn {
            width: 100%;
            background: #2DA8B3;
            color: white;
            border: none;
            padding: 8px;
            border-radius: 8px;
            margin-top: 10px;
        }

        @media (max-width: 992px) {
            .missed-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .missed-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .missed-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            /* image smaller */
            .product-image {
                width: 70px;
                height: 70px;
            }

            /* reduce text size */
            .product-card h6 {
                font-size: 14px;
            }

            /* quantity compact */
            .quantity-input {
                width: 45px;
            }

            .quantity-btn {
                width: 24px;
                height: 24px;
            }
        }

        @media (max-width: 768px) {
            .product-card .col-md-2 {
                width: 80px;
            }

            .product-card .col-md-4 {
                width: 120px;
            }

            .product-card .col-md-3 {
                width: 100px;
            }

            .product-card .col-md-2:last-child {
                width: 80px;
            }
        }

        @media (max-width: 768px) {
            .product-card .row {
                display: flex;
                flex-wrap: nowrap;
                overflow-x: auto;
            }
        }

        .empty-cart-box {
            text-align: center;
            padding: 60px 20px;
        }

        .cart-icon-image {
            font-size: 70px;
            color: #6366f1;
            margin-bottom: 15px;

            animation: floatCart 2s ease-in-out infinite;
        }

        /* Floating animation */
        @keyframes floatCart {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* subtle fade in */
        .empty-cart-box {
            animation: fadeIn 0.6s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .progress {
            background: #e5e7eb;
        }

        .progress-bar {
            transition: width 0.4s ease;
            background: #2DA8B3;
        }

        .text-success {
            animation: fadeIn 0.4s ease;
        }


        /* CTA Container Card */
        .cta-safety {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            padding: 25px;
            border-radius: 18px;

            /* Gradient (softer than full banner) */
            color: white;

            box-shadow: 0 10px 25px rgba(79, 70, 229, 0.2);

            width: 100%;
            position: relative;
            overflow: hidden;
        }

        /* subtle glow */
        .cta-safety::before {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -50px;
            right: -50px;
        }

        /* Left Content */
        .cta-content {
            max-width: 65%;
            z-index: 2;
        }

        .cta-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            display: inline-block;
            margin-bottom: 8px;
        }

        .cta-safety h4 {
            font-weight: 600;
            margin-bottom: 6px;
        }

        .cta-safety p {
            opacity: 0.9;
            font-size: 14px;
            margin-bottom: 12px;
        }

        /* Features */
        .cta-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            margin-bottom: 12px;
            color: black;
        }



        /* Image */
        .cta-image img {
            width: 250px;
            z-index: 2;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .cta-safety {
                flex-direction: column;
                text-align: center;
            }

            /* 🔥 IMAGE FIRST */
            .cta-image {
                order: -1;
            }

            .cta-content {
                max-width: 100%;
            }

            .cta-image img {
                width: 220px;
                /* slightly bigger looks better */
                margin-bottom: 10px;
            }
        }