/* Styling for Web Hosting Order Page */
body {
    font-family: 'Poppins', sans-serif;
}

.order-page {
    padding: 4rem 0;
}

.order-hero {
    text-align: center;
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.order-hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.order-config {
    padding: 4rem 0;
}

.config-panel {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.billing-cycle-options {
    display: flex;
    margin-bottom: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.billing-option {
    flex: 1;
    padding: 1rem;
    border: none;
    background: #f1f1f1;
    cursor: pointer;
    transition: background 0.3s;
}

.billing-option.active {
    background: #007bff;
    color: #fff;
}

.price-summary {
    margin-bottom: 2rem;
}

.price-item, .price-total {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.price-total {
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-full-width {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
}
