/* WHMCS Standard Cart Style - BestForHost Theme */

/* General Layout */
.whmcs-cart-wrapper {
    background-color: #f8f9fa;
    min-height: 600px;
    padding-bottom: 50px;
}

.cart-header {
    margin-bottom: 30px;
}

.cart-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

/* Step Indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0;
    list-style: none;
    position: relative;
}

.steps-indicator::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    background: #f8f9fa;
    padding: 0 10px;
    text-align: center;
    color: #adb5bd;
    font-weight: 500;
}

.step.active {
    color: #0d6efd;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    margin-right: 8px;
    font-weight: 600;
}

.step.active .step-number {
    background: #0d6efd;
    color: #fff;
}

/* Config Sidebar (Left) in standard WHMCS, but we are doing Main (Left) + Summary (Right) */
/* Sticky Summary Sidebar */
.cart-sidebar {
    position: sticky;
    top: 20px;
}

.order-summary-box {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.order-summary-header {
    background: #0d6efd;
    color: #fff;
    padding: 15px;
    font-weight: 600;
    border-radius: 4px 4px 0 0;
}

.order-summary-body {
    padding: 15px;
}

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

.summary-total {
    border-top: 2px solid #e9ecef;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
}

/* Product Configuration Form */
.config-box {
    background: #fff;
    padding: 25px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 20px;
}

.config-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.product-specs-list li {
    margin-bottom: 8px;
}

/* Addons */
.addon-row {
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.2s;
    cursor: pointer;
}

.addon-row:hover, .addon-row.selected {
    border-color: #0d6efd;
    background-color: #f8fbff;
}

.addon-row .form-check-input {
    margin-top: 0.3rem; 
}
