/* Obundo Checkout Styles - Multi-Step Checkout Process */

.obundo-checkout-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Progress Bar */
.checkout-progress {
    background: #fff;
    border-bottom: 1px solid #e1e5e9;
    padding: 20px 0;
    margin-bottom: 0;
}

.progress-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e1e5e9;
    z-index: 1;
}

.progress-step.completed:not(:last-child)::after {
    background: #28a745;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e1e5e9;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.progress-step.completed .step-number {
    background: #28a745;
    color: #fff;
}

.progress-step.active .step-number {
    background: #007bff;
    color: #fff;
}

.step-label {
    font-size: 12px;
    color: #6c757d;
    text-align: center;
    font-weight: 500;
}

.progress-step.completed .step-label,
.progress-step.active .step-label {
    color: #333;
}

/* Main Layout */
.checkout-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-main {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.obundo-checkout-form {
    position: relative;
}

/* Step Styles */
.checkout-step {
    display: none;
    padding: 40px;
    animation: fadeIn 0.3s ease-in-out;
}

.checkout-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.checkout-step h1 {
    margin: 0 0 30px 0;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.checkout-step h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.checkout-step h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* ===== STEP 1: LOGIN SELECTION ===== */
.login-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.login-option-card {
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.login-option-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
}

.login-option-card h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.login-option-card p {
    margin: 0 0 20px 0;
    color: #6c757d;
    line-height: 1.5;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.benefits-list li {
    padding: 8px 0;
    color: #6c757d;
    position: relative;
    padding-left: 25px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.btn-login-option {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.btn-login-option:hover {
    background: #0056b3;
}

.login-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.password-field {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.btn-login:hover {
    background: #1e7e34;
}

.registration-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.btn-register {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 15px;
}

.btn-register:hover {
    background: #1e7e34;
}

/* ===== STEP 2: ADDRESS FORM ===== */
.address-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.address-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.address-type-selection {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.address-type-btn {
    background: #fff;
    border: 2px solid #e1e5e9;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}

.address-type-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.delivery-type-selection {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.delivery-type-btn {
    background: #fff;
    border: 2px solid #e1e5e9;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delivery-type-btn.active {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.company-fields {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #e1e5e9;
}

.personal-fields {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e1e5e9;
}

.form-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

.newsletter-description {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    line-height: 1.4;
}

/* ===== STEP 3: SHIPPING AND PAYMENT ===== */
.shipping-payment-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.shipping-section,
.payment-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.shipping-methods {
    margin-bottom: 20px;
}

.shipping-method {
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-method:hover {
    border-color: #007bff;
}

.shipping-method.selected {
    border-color: #007bff;
    background: #f8f9ff;
}

.shipping-method input[type="radio"] {
    margin-right: 10px;
}

.shipping-method-title {
    font-weight: 600;
    color: #333;
}

.shipping-method-cost {
    float: right;
    font-weight: 600;
    color: #007bff;
}

.shipping-insurance {
    background: #fff;
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    padding: 15px;
    margin-top: 15px;
}

.insurance-description {
    font-size: 12px;
    color: #6c757d;
    margin: 5px 0;
    line-height: 1.4;
}

.insurance-price {
    font-weight: 600;
    color: #007bff;
    float: right;
}

.payment-methods {
    margin-bottom: 20px;
}

.payment-method {
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #007bff;
}

.payment-method.selected {
    border-color: #007bff;
    background: #f8f9ff;
}

.payment-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.payment-option input[type="radio"] {
    margin-right: 10px;
}

.payment-title {
    font-weight: 600;
    color: #333;
}

.payment-description {
    font-size: 12px;
    color: #6c757d;
    margin-left: 10px;
}

/* ===== STEP 4: ORDER REVIEW ===== */
.order-review-sections {
    margin-bottom: 30px;
}

.product-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-image {
    flex-shrink: 0;
}

.product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.product-details {
    flex: 1;
}

.product-details h3 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.product-status {
    color: #28a745;
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 5px 0;
}

.product-sku {
    color: #6c757d;
    font-size: 12px;
    margin: 0;
}

.product-pricing {
    flex-shrink: 0;
    text-align: right;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    min-width: 200px;
}

.price-row.total {
    border-top: 1px solid #e1e5e9;
    padding-top: 8px;
    font-weight: 600;
}

.price-label {
    color: #6c757d;
    font-size: 14px;
}

.price-value {
    font-weight: 600;
    color: #333;
}

.original-price {
    text-decoration: line-through;
    color: #6c757d;
    margin-right: 10px;
}

.discounted-price {
    color: #dc3545;
}

.order-reference-section,
.discount-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.discount-form {
    display: flex;
    gap: 10px;
}

.discount-form input {
    flex: 1;
}

.btn-apply-discount {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.btn-apply-discount:hover {
    background: #545b62;
}

.addresses-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.address-review {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.address-details {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 15px;
}

.btn-edit-address {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 5px;
}

.shipping-payment-review {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.review-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.review-details {
    color: #6c757d;
    margin-bottom: 15px;
}

.btn-edit {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 5px;
}

.order-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 0;
}

.summary-row.total {
    border-top: 2px solid #e1e5e9;
    padding-top: 15px;
    margin-top: 15px;
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.summary-label {
    color: #6c757d;
}

.summary-value {
    font-weight: 600;
    color: #333;
}

.legal-section {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.legal-section p {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

input[type="text"]:invalid,
input[type="email"]:invalid,
input[type="tel"]:invalid {
    border-color: #dc3545;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    width: auto;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
    margin-top: 2px;
}

/* Navigation */
.checkout-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e1e5e9;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-prev {
    background: #6c757d;
    color: #fff;
}

.btn-prev:hover {
    background: #545b62;
}

.btn-next,
.btn-submit {
    background: #007bff;
    color: #fff;
}

.btn-next:hover,
.btn-submit:hover {
    background: #0056b3;
}

.btn-submit {
    background: #28a745;
}

.btn-submit:hover {
    background: #1e7e34;
}

/* Loading and Error States */
.checkout-loading {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e1e5e9;
    border-top: 4px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.checkout-error {
    background: #f8d7da;
    color: #721c24;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px solid #f5c6cb;
}

.checkout-success {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px solid #c3e6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-layout {
        padding: 20px 10px;
    }
    
    .checkout-step {
        padding: 20px;
    }
    
    .checkout-step h1 {
        font-size: 24px;
    }
    
    .login-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .address-sections,
    .shipping-payment-sections,
    .addresses-section,
    .shipping-payment-review {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .progress-steps {
        padding: 0 10px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .product-item {
        flex-direction: column;
        text-align: center;
    }
    
    .product-pricing {
        text-align: center;
    }
    
    .checkout-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .checkout-step {
        padding: 15px;
    }
    
    .address-section,
    .shipping-section,
    .payment-section {
        padding: 20px;
    }
    
    .progress-step {
        max-width: 80px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 9px;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

.slide-down {
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Focus States for Accessibility */
.btn-login-option:focus,
.btn-login:focus,
.btn-register:focus,
.btn-prev:focus,
.btn-next:focus,
.btn-submit:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .obundo-checkout-container {
        border: 2px solid #000;
    }
    
    .checkout-step h1,
    .checkout-step h2,
    .checkout-step h3 {
        color: #000;
    }
    
    .btn-login-option,
    .btn-login,
    .btn-register,
    .btn-next,
    .btn-submit {
        border: 2px solid #000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .checkout-step,
    .fade-in,
    .slide-down {
        animation: none;
    }
    
    .loading-spinner {
        animation: none;
    }
}

/* ===== THANK YOU PAGE STYLES ===== */
.ob-thank-you-page {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.thank-you-header {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-bottom: 1px solid #e1e5e9;
}

.thank-you-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #28a745;
    margin: 0 0 10px 0;
}

.order-number {
    font-size: 18px;
    color: #6c757d;
    margin: 0 0 30px 0;
}

.confirmation-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #28a745;
}

.checkmark {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-item span:last-child {
    color: #6c757d;
    line-height: 1.5;
}

.thank-you-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.customer-feedback {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.customer-feedback h2 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.customer-feedback p {
    color: #6c757d;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.btn-rate-now {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.btn-rate-now:hover {
    background: #545b62;
}

.order-details {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-details h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.detail-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
}

.detail-item h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.address-details,
.shipping-details,
.payment-details {
    color: #6c757d;
    line-height: 1.5;
}

.address-details p,
.shipping-details p,
.payment-details p {
    margin: 0 0 5px 0;
}

.product-details {
    grid-column: 1 / -1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.product-details h2 {
    margin: 0 0 20px 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.product-table {
    border: 1px solid #e1e5e9;
    border-radius: 6px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8f9fa;
    padding: 15px;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e1e5e9;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px 15px;
    border-bottom: 1px solid #e1e5e9;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.product-details h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.product-sku {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
}

.col-price,
.col-quantity,
.col-total {
    text-align: center;
    font-weight: 500;
    color: #333;
}

.order-summary {
    grid-column: 1 / -1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.continue-shopping {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.btn-continue-shopping {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-continue-shopping:hover {
    background: #545b62;
}

/* Thank You Page Responsive */
@media (max-width: 768px) {
    .thank-you-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 10px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .col-price,
    .col-quantity,
    .col-total {
        text-align: left;
    }
    
    .product-info {
        flex-direction: column;
        text-align: center;
    }
    
    .thank-you-header h1 {
        font-size: 24px;
    }
    
    .order-number {
        font-size: 16px;
    }
}

/* ===== CYBERPORT CART PAGE STYLES ===== */

.cyberport-cart-page {
    background: #fff;
    min-height: 100vh;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cyberport-cart-page .container {
    max-width: 1200px;
}

/* Progress Indicator */
.progress-indicator {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px 0;
}

.progress-check {
    width: 24px;
    height: 24px;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.progress-text {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.progress-bar {
    flex: 1;
    height: 2px;
    background: #e9ecef;
    border-radius: 1px;
    position: relative;
}

.progress-fill {
    width: 33%;
    height: 100%;
    background: #28a745;
    border-radius: 1px;
}

/* Cart Title */
.cart-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 30px 0;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 40px 0;
}

.empty-cart-icon {
    color: #6c757d;
    margin-bottom: 30px;
}

.empty-cart h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* Cart Table */
.cart-table-container {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background: #f8f9fa;
}

.cart-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f3f4;
    vertical-align: top;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

/* Product Column */
.col-product {
    width: 50%;
}

.product-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.product-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.product-details {
    flex: 1;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.product-availability {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.availability-text {
    color: #28a745;
    font-weight: 500;
}

.article-number {
    color: #6c757d;
}

/* Price Column */
.col-price {
    width: 20%;
    text-align: right;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.price-original {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}

/* Quantity Column */
.col-quantity {
    width: 15%;
    text-align: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.qty-btn:hover {
    background: #f8f9fa;
}

.qty-input {
    width: 50px;
    height: 32px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: #333;
    background: #fff;
    font-size: 14px;
}

.qty-input:focus {
    outline: none;
    background: #f8f9fa;
}

/* Total Column */
.col-total {
    width: 15%;
    text-align: right;
}

.total-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.total-original {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
}

.total-current {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}

/* Discount Info */
.discount-info {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6c757d;
}

/* Cart Summary */
.cart-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: right;
}

.summary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.summary-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.summary-value {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b35;
}

.summary-savings {
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
}

.summary-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

/* Action Buttons */
.cart-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-secondary {
    background: #fff;
    color: #333;
    border-color: #dee2e6;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

.btn-primary {
    background: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #e55a2b;
    border-color: #e55a2b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cyberport-cart-page {
        padding: 10px 0;
    }
    
    .progress-indicator {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .progress-bar {
        width: 100%;
    }
    
    .cart-title {
        font-size: 1.5rem;
    }
    
    .cart-table-container {
        overflow-x: auto;
    }
    
    .cart-table {
        min-width: 600px;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 15px 10px;
    }
    
    .product-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    
    .product-image {
        width: 60px;
        height: 60px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cart-table th,
    .cart-table td {
        padding: 10px 5px;
        font-size: 12px;
    }
    
    .product-name {
        font-size: 12px;
    }
    
    .price-current,
    .total-current {
        font-size: 14px;
    }
    
    .summary-value {
        font-size: 20px;
    }
}