
        :root {
            --primary-blue: #00224f; /* Official Brand Color */
            --accent-blue: #0056b3;
            --bg-light: #f4f7fa;
            --text-dark: #1a1a1b;
            --text-muted: #5f6368;
            --border-color: #e0e4e8;
            --white: #ffffff;
            --success: #28a745;
        }

        body {
            font-family: 'Sora', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }

        /* Progress Stepper */
        .stepper-wrapper {
            background: var(--white);
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
            margin-bottom: 30px;
        }

        .stepper {
            display: flex;
            justify-content: center;
            margin: 0 auto;
            position: relative;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
            z-index: 2;
            margin-left: -5%;

        }

        .step-icon {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-weight: 700;
            margin-bottom: 8px;
            transition: 0.3s;
        }

        .step.active .step-icon {
            background: var(--primary-blue);
            color: var(--white);
            box-shadow: 0 0 0 5px rgba(0, 34, 79, 0.1);
        }

        .step-label { font-size: 12px; font-weight: 600; color: var(--text-muted); align-items: center; }
        .step.active .step-label { color: var(--primary-blue); }

        /* Layout Grid */
        .container-service-cart {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px 50px;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 30px;
        }

        /* Cart Section */
        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .cart-header h1 { font-size: 24px; font-weight: 700; margin: 0; }

        .cart-card {
            background: var(--white);
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            margin-bottom: 20px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            transition: 0.3s;
        }

        .cart-item:last-child { border-bottom: none; }

        

        .item-info { flex: 1; }
        .item-name { font-weight: 700; font-size: 20px; margin-bottom: 4px; display: block;
            text-decoration: none; /* Removes the underline from all links */
            color: #00224f;      /* Changes the color of all links to red (use your desired color code) */
        
        }
        .item-name:hover { text-decoration: none; color: #00224f;      /* Changes the color of all links to red (use your desired color code) */ }
        .item-meta { font-size: 13px; color: var(--text-muted); }

        .item-price-action {
            text-align: right;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .r4p-item__tags {
            display: flex;
            flex-wrap: wrap; 
            gap: 6px; 
            align-items: center;
            margin-top: 10px;
        }
        .r4p-tag {
        display: inline-flex; align-items: center; gap: 5px;
        font-size: .7rem; font-weight: 500;
        padding: 3px 9px; border-radius: 99px;
        white-space: nowrap;
        }
        .r4p-tag--tat {
        background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe;
        }
        .r4p-tag--surcharge {
        background: #fffbeb; color: #92400e; border: 1px solid #fde68a;
        }
        .r4p-tag svg { flex-shrink: 0; }

        .price-tag { font-weight: 700; font-size: 18px; color: var(--primary-blue); }
        .remove-btn {
            color: #ff4d4f;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 18px;
            padding: 5px;
            transition: transform 0.2s;
        }
        .remove-btn:hover { transform: scale(1.1); }

        /* Sidebar / Summary */
        .summary-card {
            background: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            position: sticky;
            top: 30px;
            height: fit-content;
        }

        .summary-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .summary-total {
            border-top: 1px solid var(--border-color);
            margin-top: 15px;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .checkout-btn {
            width: 100%;
            background:#0056b3;
            color: var(--white);
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 16px;
            margin-top: 25px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
        }

        .checkout-btn:hover { 
            background: var(--primary-blue);
            transform: translateY(-2px); }

        .secure-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 12px;
            color: var(--success);
            margin-top: 20px;
        }

        /* --- Responsive Queries --- */

        /* Tablets & Smaller Laptops */
        @media (max-width: 992px) {
            .container-service-cart { grid-template-columns: 1fr; }
            .summary-card { position: static; }
        }

        /* Mobile */
        @media (max-width: 576px) {
            .container-service-cart { padding: 0 15px 30px; }
            .cart-item { flex-direction: column; align-items: flex-start; }
            
            .item-price-action {
                flex-direction: column;
                width: 100%;
                justify-content: space-between;
                align-items: self-end;
                margin-top: -48px;
            }
            .cart-card { padding: 15px; }
            .stepper-wrapper { padding: 15px 0; }
        }
        /* Mobile */
        @media (max-width: 480px) {
            .container-service-cart { padding: 0 15px 30px; }
            .cart-item { flex-direction: column; align-items: flex-start; padding-bottom: 35px; }
            
            .item-price-action {
                flex-direction: column;
                width: 100%;
                justify-content: space-between;
                align-items: self-end;
                margin-top: -75px;
            }
            .cart-card { padding: 15px; }
            .stepper-wrapper { padding: 15px 0; }
            .price-tag { font-weight: 700; font-size: 16px; color: var(--primary-blue); }
            .item-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; display: block;
                text-decoration: none; /* Removes the underline from all links */
                color: #00224f;      /* Changes the color of all links to red (use your desired color code) */
        
        }
        }
    