.sbqf-wrapper { max-width:1200px; margin:auto; font-family:'Roboto',sans-serif; }
.sbqf-step { font-size:18px; margin:30px 0 15px; font-weight:600; }

/* Smaller waste type cards */
.sbqf-waste-select { display:flex; gap:15px; }
.sbqf-waste-card { flex:1; cursor:pointer; position:relative; max-width:200px; }
.sbqf-waste-card input { display:none; }
.sbqf-waste-bg { 
    background-size:cover; 
    background-position:center; 
    height:80px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    border-radius:6px; 
    position:relative; 
    color:#fff; 
    font-size:14px; 
    font-weight:bold;
}
.sbqf-waste-card input:checked + .sbqf-waste-bg { outline:3px solid #0073e6; }

.sbqf-select { width:100%; padding:12px; font-size:16px; margin-bottom:20px; }

/* Improved bin size cards */
.sbqf-bin-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:20px; }
.sbqf-bin { background:#fff; border:1px solid #eee; border-radius:8px; box-shadow:0 2px 4px rgba(0,0,0,0.05); padding:15px; text-align:center; }
.sbqf-bin h3 { font-size:16px; margin-bottom:10px; color: #333; line-height:1.3; }
.sbqf-bin img { width:100%; max-width: 160px; margin: 10px 0; }
.sbqf-bin-details { text-align: left; margin: 10px 0; }
.sbqf-bin-dimensions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.sbqf-bin-dimension { background: #f8f8f8; padding: 8px; border-radius: 4px; font-size: 13px; }
.sbqf-bin-dimension > div:first-child { font-weight: bold; color: #666; font-size: 12px; }
.sbqf-bin-dimension > div:last-child { font-size: 14px; font-weight: bold; color: #333; }
.sbqf-bin-cost { font-size: 18px; font-weight: bold; color: #0073e6; margin: 12px 0; }
.sbqf-bin button { background:#0073e6; color:#fff; padding:10px 12px; border:none; border-radius:5px; cursor:pointer; width:100%; font-size: 14px; font-weight: bold; }
.sbqf-bin button:hover { background:#0062c3; }

/* Booking page styles */
.sbqf-booking-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Roboto', sans-serif;
}

.sbqf-booking-left {
    flex: 2;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sbqf-booking-right {
    flex: 1;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    align-self: flex-start;
}

.sbqf-booking-left h2 {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: #333;
}

.sbqf-access {
    color: #666;
    margin: 0 0 20px 0;
    font-style: italic;
}

.sbqf-booking-details {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sbqf-booking-details h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    color: #444;
}

.sbqf-dimensions {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.sbqf-dimensions li {
    padding: 5px 0;
    color: #555;
}

.sbqf-price {
    font-size: 24px;
    font-weight: bold;
    color: #0073e6;
    margin: 15px 0;
}

.sbqf-note {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.sbqf-note h3 {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #d9534f;
}

.sbqf-note ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
    font-size: 14px;
}

.sbqf-note li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.sbqf-section-title {
    font-size: 18px;
    margin: 25px 0 15px 0;
    color: #444;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.sbqf-dates h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: #555;
}

.sbqf-date-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.sbqf-date-row label {
    display: flex;
    flex-direction: column;
    font-weight: 500;
    color: #555;
    flex: 1;
}

.sbqf-date-input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 14px;
}

.sbqf-time-select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 14px;
    flex: 1;
}

.sbqf-addon-items {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

/* Quantity controls for additional items */
.sbqf-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
    gap: 10px;
}

.sbqf-toggle:last-child {
    border-bottom: none;
}

.sbqf-toggle label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.sbqf-toggle input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.sbqf-quantity {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sbqf-qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.sbqf-qty-input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sbqf-item-total {
    font-weight: bold;
    color: #0073e6;
    min-width: 50px;
    text-align: right;
}

.sbqf-booking-right h3 {
    font-size: 20px;
    margin: 0 0 20px 0;
    color: #333;
    text-align: center;
}

.sbqf-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.sbqf-summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-weight: bold;
    font-size: 18px;
    color: #0073e6;
    border-top: 2px solid #ddd;
    margin-top: 10px;
}

.sbqf-btn {
    background: #0073e6;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.sbqf-btn:hover {
    background: #0062c3;
}

/* Customer Details Form Styles */
#sbqf-customer-details {
    max-width: 1000px;
    margin: 30px auto;
    font-family: 'Roboto', sans-serif;
}

.sbqf-details-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sbqf-details-wrapper h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    text-align: center;
}

.sbqf-details-wrapper h3 {
    font-size: 18px;
    margin: 25px 0 15px 0;
    color: #444;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.sbqf-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.sbqf-form-group {
    flex: 1;
}

.sbqf-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.sbqf-form-group input,
.sbqf-form-group select,
.sbqf-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.sbqf-form-group textarea {
    min-height: 80px;
    resize: vertical;
}

.sbqf-form-checkbox {
    margin-bottom: 20px;
}

.sbqf-form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.sbqf-form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.sbqf-payment-methods {
    margin-bottom: 20px;
}

.sbqf-payment-method {
    margin-bottom: 10px;
}

.sbqf-payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.sbqf-payment-method input[type="radio"] {
    width: 18px;
    height: 18px;
}

#credit-card-details {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sbqf-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.sbqf-btn-back {
    background: #6c757d;
}

.sbqf-btn-back:hover {
    background: #5a6268;
}

.sbqf-btn-primary {
    background: #0073e6;
}

.sbqf-btn-primary:hover {
    background: #0062c3;
}

@media (max-width: 768px) {
    .sbqf-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .sbqf-form-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .sbqf-booking-wrapper {
        flex-direction: column;
    }
    
    .sbqf-date-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .sbqf-toggle {
        flex-wrap: wrap;
    }
    
    .sbqf-quantity {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}