    /* ===== CSS RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #f8f9fa;
            color: #1a1a2e;
            line-height: 1.5;
            font-size: 16px;
            min-height: 100vh;
        }

        /* ===== RESPONSIVE CONTAINER ===== */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 24px;
        }

        /* ===== BACK BUTTON ===== */
        .back-button-container {
            margin-bottom: 20px;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            color: #475569;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .back-btn:hover {
            background: #f1f5f9;
            border-color: #4361ee;
            color: #4361ee;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* ===== LOADING STATE ===== */
        .loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            color: #64748b;
            text-align: center;
        }

        .spinner {
            width: 60px;
            height: 60px;
            border: 4px solid #e2e8f0;
            border-top-color: #4361ee;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ===== ERROR STATE ===== */
        .error-container {
            display: none;
            background: white;
            border-radius: 16px;
            padding: 48px 32px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            margin: 40px auto;
        }

        .error-icon {
            font-size: 56px;
            color: #f94144;
            margin-bottom: 20px;
        }

        /* ===== PRODUCT CARD ===== */
        .product-card {
            display: none;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: fadeIn 0.4s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== PRODUCT HEADER - RESPONSIVE ===== */
        .product-header {
            background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
            color: white;
            padding: 40px;
            display: flex;
            align-items: center;
            gap: 32px;
            position: relative;
            overflow: hidden;
        }

        .product-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .brand-logo {
            width: 120px;
            height: 120px;
            flex-shrink: 0;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
            position: relative;
            z-index: 1;
        }

        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .brand-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .brand-name {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 16px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .badge-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .badge-primary {
            background: linear-gradient(135deg, #7209b7 0%, #4361ee 100%);
            border: none;
        }

        .badge-accent {
            background: rgba(247, 37, 133, 0.2);
            border-color: rgba(247, 37, 133, 0.3);
        }

        .badge-warning {
            background: rgba(248, 150, 30, 0.2);
            border-color: rgba(248, 150, 30, 0.3);
        }

        .country-flag {
            width: 24px;
            height: 16px;
            border-radius: 3px;
        }

        .product-description {
            font-size: 16px;
            opacity: 0.9;
            color: rgba(255, 255, 255, 0.9);
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        /* ===== PRODUCT CONTENT - RESPONSIVE GRID ===== */
        .product-content {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 32px;
            padding: 40px;
        }

        .left-column {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        /* ===== SECTION TITLES ===== */
        .section-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 24px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .section-title i {
            color: #4361ee;
        }

        /* ===== DENOMINATION GRID - RESPONSIVE ===== */
        .denomination-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }

        .denomination-btn {
            padding: 24px 16px;
            background: #f1f5f9;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-align: center;
        }

        .denomination-btn:hover {
            border-color: #4361ee;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .denomination-btn.active {
            background: #4361ee;
            border-color: #4361ee;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        .denomination-amount {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .denomination-price {
            font-size: 14px;
            opacity: 0.8;
        }

        /* ===== RANGE DENOMINATION ===== */
        .range-section {
            margin-bottom: 32px;
        }

        .range-container {
            background: #f1f5f9;
            border-radius: 12px;
            padding: 32px;
            margin-bottom: 24px;
            border: 1px solid #e2e8f0;
        }

        .range-labels {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .range-min,
        .range-max {
            font-size: 14px;
            color: #64748b;
            font-weight: 600;
        }

        .range-input-container {
            position: relative;
            margin: 24px 0;
        }

        .range-input {
            width: 100%;
            height: 12px;
            -webkit-appearance: none;
            background: linear-gradient(to right, #4895ef, #4361ee);
            border-radius: 6px;
            outline: none;
        }

        .range-input::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 28px;
            height: 28px;
            background: white;
            border: 3px solid #4361ee;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .range-value-display {
            text-align: center;
            margin-top: 16px;
            font-size: 18px;
            font-weight: 700;
            color: #4361ee;
        }

        .amount-input-container {
            margin-top: 24px;
        }

        .amount-input {
            width: 100%;
            padding: 18px;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            color: #1a1a2e;
            background: white;
        }

        .amount-input:focus {
            outline: none;
            border-color: #4361ee;
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        }

        .amount-help {
            text-align: center;
            margin-top: 12px;
            font-size: 14px;
            color: #64748b;
        }

        /* ===== QUANTITY CONTROL ===== */
        .quantity-section {
            padding: 24px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .quantity-label {
            font-size: 16px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .quantity-label i {
            color: #4361ee;
        }

        .quantity-control {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .quantity-btn {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: white;
            border: 2px solid #cbd5e1;
            color: #475569;
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .quantity-btn:hover {
            border-color: #4361ee;
            color: #4361ee;
            background: #f0f4ff;
        }

        .quantity-input {
            width: 80px;
            text-align: center;
            padding: 14px;
            border: 2px solid #cbd5e1;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            background: white;
        }

        .quantity-input:focus {
            outline: none;
            border-color: #4361ee;
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
        }

        .quantity-total {
            margin-left: auto;
            text-align: right;
        }

        .quantity-amount {
            font-size: 20px;
            font-weight: 800;
            color: #4361ee;
        }

        .quantity-text {
            font-size: 14px;
            color: #64748b;
            margin-top: 4px;
        }

        /* ===== REDEEM CARD ===== */
        .redeem-card {
            background: linear-gradient(135deg, rgba(76, 201, 240, 0.1) 0%, rgba(76, 211, 240, 0.05) 100%);
            border-radius: 12px;
            padding: 24px;
            border-left: 4px solid #4cc9f0;
        }

        .redeem-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .redeem-content {
            color: #475569;
            line-height: 1.6;
            font-size: 15px;
        }

        .redeem-content p {
            margin-bottom: 8px;
        }

        .redeem-content p:last-child {
            margin-bottom: 0;
        }

        /* ===== FEATURES GRID ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: #f1f5f9;
            border-radius: 8px;
            font-weight: 600;
            color: #475569;
        }

        .feature-item i {
            color: #4361ee;
            font-size: 18px;
        }

        /* ===== ORDER SUMMARY ===== */
        .order-summary {
            background: white;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            position: sticky;
            top: 20px;
        }

        .order-summary-header {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid #e2e8f0;
        }

        .order-summary-header h3 {
            font-size: 24px;
            font-weight: 800;
            color: #1a1a2e;
            margin-bottom: 8px;
        }

        .order-summary-header p {
            color: #64748b;
            font-size: 15px;
        }

        /* ===== AMOUNT BREAKDOWN ===== */
        .amount-breakdown {
            background: #f8fafc;
            border-radius: 12px;
            padding: 0;
            margin-bottom: 24px;
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }

        .breakdown-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            border-bottom: 1px solid #e2e8f0;
            background: white;
        }

        .breakdown-row:nth-child(even) {
            background: #f8fafc;
        }

        .breakdown-row:last-child {
            border-bottom: none;
        }

        .breakdown-label {
            color: #475569;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .breakdown-value {
            font-weight: 700;
            color: #1a1a2e;
            font-size: 17px;
            display: flex;
            align-items: baseline;
            gap: 4px;
        }

        .breakdown-currency {
            color: #4361ee;
            font-weight: 600;
            font-size: 15px;
        }

        .breakdown-row-total {
            background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
            color: white;
            border: none;
        }

        .breakdown-row-total .breakdown-label,
        .breakdown-row-total .breakdown-value,
        .breakdown-row-total .breakdown-currency {
            color: white;
            font-weight: 700;
        }

        .breakdown-note {
            font-size: 13px;
            color: #94a3b8;
            text-align: center;
            margin-top: 12px;
            padding: 0 24px;
            line-height: 1.4;
        }

        /* ===== PURCHASE BUTTON ===== */
        .purchase-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #4361ee 0%, #7209b7 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 8px 0 24px;
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        .purchase-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(67, 97, 238, 0.4);
        }

        .purchase-btn:active {
            transform: translateY(0);
        }

        /* ===== SECURITY BADGE ===== */
        .security-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px;
            background: #f0f9ff;
            border-radius: 12px;
            border: 1px solid #bae6fd;
            color: #0369a1;
            font-size: 14px;
            font-weight: 600;
        }

        .security-badge i {
            color: #0ea5e9;
            font-size: 16px;
        }

        /* ========================================= */
        /* ========= RESPONSIVE BREAKPOINTS ========= */
        /* ========================================= */

        /* Large Tablets and Small Desktops (1024px and below) */
        @media (max-width: 1024px) {
            .container {
                padding: 20px;
            }

            .product-content {
                grid-template-columns: 1fr;
                gap: 32px;
                padding: 32px;
            }

            .order-summary {
                position: static;
                max-width: 600px;
                margin: 0 auto;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Tablets (768px and below) */
        @media (max-width: 768px) {
            .container {
                padding: 16px;
            }
.features-grid{
    display: none;
}
            .product-header {
                padding: 32px 24px;
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .brand-logo {
                width: 100px;
                height: 100px;
                padding: 20px;
            }

            .brand-name {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .badge-container {
                justify-content: center;
                gap: 8px;
            }

            .badge {
                padding: 8px 16px;
                font-size: 13px;
            }

            .product-description {
                justify-content: center;
                gap: 12px;
                font-size: 15px;
            }

            .product-content {
                padding: 24px;
                gap: 24px;
            }

            .denomination-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }

            .denomination-btn {
                padding: 20px 12px;
            }

            .denomination-amount {
                font-size: 22px;
            }

            .range-container {
                padding: 24px;
            }

            .quantity-section {
                padding: 20px;
            }

            .quantity-control {
                gap: 12px;
            }

            .quantity-btn {
                width: 44px;
                height: 44px;
                font-size: 18px;
            }

            .quantity-input {
                width: 70px;
                padding: 12px;
                font-size: 17px;
            }

            .quantity-total {
                margin-left: 0;
                margin-top: 16px;
                text-align: left;
                width: 100%;
            }

            .order-summary {
                padding: 24px;
            }

            .order-summary-header {
                margin-bottom: 24px;
                padding-bottom: 20px;
            }

            .breakdown-row {
                padding: 16px 20px;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .feature-item {
                padding: 14px;
                font-size: 15px;
            }
        }

        /* Mobile Phones (640px and below) */
        @media (max-width: 640px) {
            .container {
                padding: 12px;
            }

            .back-button-container {
                margin-bottom: 16px;
            }

            .back-btn {
                padding: 10px 20px;
                font-size: 15px;
            }

            .product-header {
                padding: 24px 20px;
                gap: 20px;
            }

            .brand-logo {
                width: 90px;
                height: 90px;
                padding: 16px;
            }

            .brand-name {
                font-size: 24px;
            }

            .badge-container {
                flex-wrap: wrap;
            }

            .product-content {
                padding: 20px;
                gap: 20px;
            }

            .section-title {
                font-size: 18px;
                margin-bottom: 20px;
            }

            .denomination-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .denomination-btn {
                padding: 18px 10px;
            }

            .denomination-amount {
                font-size: 20px;
            }

            .denomination-price {
                font-size: 13px;
            }

            .range-container {
                padding: 20px;
            }

            .amount-input {
                padding: 16px;
                font-size: 18px;
            }

            .quantity-section {
                padding: 18px;
            }

            .redeem-card {
                padding: 20px;
            }

            .redeem-title {
                font-size: 17px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .order-summary {
                padding: 20px;
            }

            .order-summary-header h3 {
                font-size: 22px;
            }

            .purchase-btn {
                padding: 18px;
                font-size: 16px;
            }
        }

        /* Small Mobile Phones (480px and below) */
        @media (max-width: 480px) {
            .container {
                padding: 8px;
            }

            .product-header {
                padding: 20px 16px;
                gap: 16px;
            }

            .brand-logo {
                width: 80px;
                height: 80px;
                padding: 14px;
            }

            .brand-name {
                font-size: 22px;
            }

            .badge {
                padding: 6px 12px;
                font-size: 12px;
            }

            .product-description {
                flex-direction: column;
                gap: 8px;
                font-size: 14px;
            }

            .product-content {
                padding: 16px;
            }

            .denomination-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .denomination-btn {
                padding: 16px;
            }

            .range-container {
                padding: 16px;
            }

            .range-labels {
                font-size: 13px;
            }

            .range-value-display {
                font-size: 16px;
                margin-top: 12px;
            }

            .amount-input {
                padding: 14px;
                font-size: 17px;
            }

            .quantity-section {
                padding: 16px;
            }

            .quantity-control {
                flex-wrap: wrap;
            }

            .quantity-btn {
                width: 40px;
                height: 40px;
            }

            .quantity-input {
                width: 60px;
                padding: 10px;
            }

            .breakdown-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 14px 16px;
            }

            .breakdown-value {
                align-self: flex-end;
                font-size: 16px;
            }

            .order-summary-header h3 {
                font-size: 20px;
            }

            .purchase-btn {
                padding: 16px;
                font-size: 15px;
            }

            .security-badge {
                padding: 16px;
                font-size: 13px;
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .loading-container {
                min-height: 300px;
            }

            .spinner {
                width: 50px;
                height: 50px;
            }

            .error-container {
                padding: 32px 24px;
            }
        }

        /* Extra Small Mobile Phones (360px and below) */
        @media (max-width: 360px) {
            .container {
                padding: 6px;
            }

            .back-btn {
                padding: 8px 16px;
                font-size: 14px;
                gap: 6px;
            }

            .product-header {
                padding: 16px 12px;
            }

            .brand-logo {
                width: 70px;
                height: 70px;
                padding: 12px;
            }

            .brand-name {
                font-size: 20px;
            }

            .product-content {
                padding: 12px;
            }

            .denomination-btn {
                padding: 14px;
            }

            .denomination-amount {
                font-size: 18px;
            }

            .range-container {
                padding: 14px;
            }

            .quantity-section {
                padding: 14px;
            }

            .redeem-card {
                padding: 16px;
            }

            .order-summary {
                padding: 16px;
            }

            .breakdown-row {
                padding: 12px 14px;
            }

            .purchase-btn {
                padding: 14px;
            }
        }

        /* Touch Device Optimizations */
        @media (hover: none) and (pointer: coarse) {

            .denomination-btn,
            .quantity-btn,
            .purchase-btn,
            .back-btn {
                min-height: 44px;
                min-width: 44px;
            }

            .range-input::-webkit-slider-thumb {
                width: 32px;
                height: 32px;
            }

            /* Reduce hover effects on touch devices */
            .denomination-btn:hover,
            .quantity-btn:hover,
            .purchase-btn:hover,
            .back-btn:hover {
                transform: none;
            }
        }

        /* High DPI Screens */
        @media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {
            .brand-logo img {
                image-rendering: -webkit-optimize-contrast;
                image-rendering: crisp-edges;
            }
        }

        /* Print Styles */
        @media print {

            .back-button-container,
            .purchase-btn,
            .security-badge {
                display: none;
            }

            .product-card {
                box-shadow: none;
                border: 1px solid #e2e8f0;
            }

            .product-content {
                grid-template-columns: 1fr;
            }

            .order-summary {
                position: static;
                box-shadow: none;
                border: 1px solid #e2e8f0;
            }
        }/* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 6px;
        }

        ::-webkit-scrollbar-track {
            background: var(--gray-light);
            border-radius: var(--border-radius-xs);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: var(--border-radius-xs);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
