<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Checkout Redesign - Modern, user-friendly UI for desktop and mobile */
.checkout-page {
    background-color: #f8f9fa;
    padding: 30px 0;
    min-height: 100vh;
}

/* Progress indicator */
.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.checkout-progress::before {
    content: "";
    position: absolute;
    top: 15px;
    left: calc(25% + 15px);
    right: calc(25% + 15px);
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 2;
    margin: 0 40px;
}

.progress-step.active {
    background-color: #e66f23;
}

.progress-step.completed {
    background-color: #28a745;
}

.progress-step-label {
    position: absolute;
    top: 35px;
    font-size: 12px;
    font-weight: 500;
    color: #666;
    white-space: nowrap;
}

/* Card styling */
.checkout-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 25px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.checkout-card h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1.4rem;
}

.checkout-card h4 {
    color: #444;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Form elements */
.checkout-form select, 
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form input[type="date"],
.checkout-form input[type="time"],
.checkout-form textarea {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.checkout-form select:focus, 
.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: #e66f23;
    box-shadow: 0 0 0 0.2rem rgba(230, 111, 35, 0.15);
    outline: none;
}

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

.checkout-form .required {
    color: #e66f23;
    margin-left: 2px;
}

.form-group {
    margin-bottom: 20px;
}

/* Table styling */
.checkout-table {
    width: 100%;
    border-collapse: collapse;
}

.checkout-table th {
    background-color: #f8f9fa;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.checkout-table tr:last-child td {
    border-bottom: none;
}

.cart-product-name {
    font-weight: 500;
    color: #444;
}

.cart-product-total {
    text-align: right;
}

.amount {
    font-weight: 500;
}

/* Button styling */
.checkout-btn-back {
    background-color: #f0f0f0;
    color: #444;
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.checkout-btn-back:hover {
    background-color: #e0e0e0;
    color: #333;
}

.checkout-btn-next {
    background-color: #e66f23;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(230, 111, 35, 0.2);
}

.checkout-btn-next:hover {
    background-color: #d45e1a;
    box-shadow: 0 4px 8px rgba(230, 111, 35, 0.3);
}

.checkout-btn-next:disabled {
    background-color: #f0ad7e;
    cursor: not-allowed;
    box-shadow: none;
}

/* Payment methods styling */
.payment-methods-container {
    margin-top: 10px;
}

.payment-option {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.payment-option:hover {
    border-color: #e66f23;
    background-color: #fff9f5;
}

.payment-option.selected {
    border-color: #e66f23;
    background-color: #fff9f5;
}

.payment-name {
    font-weight: 500;
    margin-left: 8px;
    color: #444;
}

.payment-fee {
    font-size: 0.85rem;
    background-color: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
    color: #666;
}

.bank-selection {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 10px;
}

/* Order summary styling */
.order-summary-section {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.summary-title {
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-label {
    color: #555;
}

.summary-value {
    font-weight: 500;
    color: #444;
}

.summary-total {
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Alert styling */
.checkout-alert {
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.checkout-alert-warning {
    background-color: #fff8e6;
    border: 1px solid #ffe0a6;
    color: #856404;
}

.checkout-alert-danger {
    background-color: #fff5f5;
    border: 1px solid #ffcccc;
    color: #721c24;
}

.checkout-alert-icon {
    margin-right: 15px;
    font-size: 1.2rem;
}

.checkout-alert-content {
    flex: 1;
}

.checkout-alert-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

/* Checkbox styling */
.checkout-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkout-checkbox input[type="checkbox"] {
    margin-top: 3px;
    margin-right: 10px;
}

.checkout-checkbox label {
    font-weight: normal;
    margin-bottom: 0;
    font-size: 14px;
    color: #555;
}

/* Fix for disappearing checkboxes */
.form-check-input {
    opacity: 1 !important;
    position: static !important;
    margin-top: 0.3rem;
    margin-right: 0.5rem;
    pointer-events: auto !important;
    z-index: 1;
}

.form-check {
    display: flex !important;
    align-items: flex-start !important;
    position: relative;
}

.form-check-label {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

/* Ensure checkboxes don't get hidden by other elements */
.terms-section {
    position: relative;
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .checkout-progress {
        margin-bottom: 20px;
    }
    
    .progress-step {
        margin: 0 20px;
    }
    
    .checkout-progress::before {
        left: calc(25% + 10px);
        right: calc(25% + 10px);
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 15px 0;
    }
    
    .checkout-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .checkout-card h3 {
        font-size: 1.2rem;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
    
    .checkout-table th, 
    .checkout-table td {
        padding: 10px 8px;
        font-size: 0.9rem;
    }
    
    .checkout-btn-back,
    .checkout-btn-next {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .progress-step {
        width: 25px;
        height: 25px;
        margin: 0 15px;
        font-size: 12px;
    }
    
    .progress-step-label {
        font-size: 10px;
    }
    
    .checkout-progress::before {
        top: 12px;
    }
    
    .your-order-table table {
        width: 100%;
    }
    
    .your-order-table td {
        padding: 8px 5px;
        word-break: break-word;
    }
    
    .your-order-table .table th,
    .your-order-table .table td {
        padding: 8px 5px;
        font-size: 0.9rem;
    }
    
    .cart-product-name, 
    .cart-product-total {
        white-space: normal !important;
    }
}

@media (max-width: 576px) {
    .progress-step {
        margin: 0 10px;
    }
    
    .progress-step-label {
        display: none;
    }
    
    .checkout-progress::before {
        left: 20%;
        right: 20%;
    }
}
</pre></body></html>