/* Styling for Cloud VPS 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-vps {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sliders-vps h2, .summary-vps h2 { margin-bottom: 1.5rem; }
.slider-group { margin-bottom: 1.5rem; }
.slider {
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: #ddd;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
    border-radius: 5px;
}
.slider:hover { opacity: 1; }
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #007bff;
    cursor: pointer;
    border-radius: 50%;
}

.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.5rem; }
.btn-full-width { width: 100%; padding: 1rem; font-size: 1.2rem; }
