/* ============================================ */
/* CHECKOUT PAGE STYLES                         */
/* ============================================ */

/* Breadcrumb */
.osahan-breadcrumb {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 15px 0;
    margin-bottom: 30px;
}

.osahan-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.osahan-breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: #64748B;
}

.osahan-breadcrumb .breadcrumb-item a {
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s;
}

.osahan-breadcrumb .breadcrumb-item a:hover {
    color: #2563EB;
}

.osahan-breadcrumb .breadcrumb-item.active {
    color: #0F172A;
    font-weight: 600;
}

/* Checkout Container */
.checkout-container {
    padding: 20px 0 60px;
    background: #F8FAFC;
    min-height: 70vh;
}

.checkout-title {
    text-align: center;
    margin-bottom: 30px;
}

.checkout-title h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

/* Checkout Form Card */
.checkout-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}

.checkout-card-header {
    background: #2563EB;
    color: white;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 600;
}

.checkout-card-header i {
    margin-right: 8px;
}

.checkout-card-body {
    padding: 25px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.submit-checkout-btn {
    width: 100%;
    padding: 14px;
    background: #2563EB;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-checkout-btn:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
}

/* Order Summary Card */
.order-summary-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    overflow: hidden;
    margin-bottom: 20px;
}

.order-summary-header {
    background: #10B981;
    color: white;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-summary-header i {
    margin-right: 8px;
}

.order-summary-body {
    padding: 20px;
}

/* Order List */
.order-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #E2E8F0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item h6 {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 0;
}

.order-item .text-muted {
    font-size: 14px;
    color: #2563EB;
    font-weight: 600;
}

.shipping-row {
    background: #F8FAFC;
    padding: 12px 0;
}

.shipping-row .text-success {
    color: #10B981 !important;
    font-weight: 600;
}

.total-row span {
    font-size: 16px;
    font-weight: 700;
}

.total-row strong {
    font-size: 18px;
    color: #2563EB;
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col, .col-sm-6, .col-12, .col-sm-4 {
    padding: 0 12px;
}

.col {
    flex: 1;
}

.col-sm-6 {
    width: 50%;
}

.col-12 {
    width: 100%;
}

.col-sm-4 {
    width: 33.333%;
}

@media (max-width: 768px) {
    .col-sm-6, .col-sm-4 {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .checkout-title h2 {
        font-size: 24px;
    }
    
    .checkout-card-body {
        padding: 20px;
    }
    
    .order-summary-body {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .checkout-title h2 {
        font-size: 20px;
    }
    
    .checkout-card-header {
        padding: 12px 16px;
        font-size: 16px;
    }
    
    .checkout-card-body {
        padding: 15px;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .submit-checkout-btn {
        padding: 12px;
        font-size: 14px;
    }
}