.installer-checkout-form {
    display: none;
    clear: both;
    width: 100%;
    margin-top: 12px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}

.bh-sl-loc-list ul.list > li.installer-active {
    border-color: #e4002b;
}

.bh-sl-loc-list ul.list > li.installer-active .installer-checkout-form {
    display: block;
}

/* Mobility Fee info box for mobilevan stores */
.mobility-fee-info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    margin-bottom: 12px;
    background: #eef6ff;
    border: 1px solid #b8d9f5;
    border-radius: 6px;
    font-size: 14px;
    color: #1a5276;
}

.mobility-fee-label {
    font-weight: 600;
}

.mobility-fee-amount {
    font-weight: 700;
    color: #e4002b;
}

.installer-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.installer-field {
    flex: 1;
    min-width: 140px;
}

.installer-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.installer-field select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    background: #fff;
    color: #333;
    cursor: pointer;
    -webkit-appearance: auto;
    appearance: auto;
}

.installer-field select:focus {
    border-color: #e4002b;
    outline: none;
    box-shadow: 0 0 0 2px rgba(228, 0, 43, 0.15);
}

.installer-proceed-btn {
    display: block;
    width: 100%;
    padding: 10px 20px;
    background-color: #e4002b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.installer-proceed-btn:hover {
    background-color: #c50024;
}

.installer-proceed-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

/* Installation type radio selector */
.installation-type-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.installation-type-option {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.installation-type-option:hover {
    border-color: #e4002b;
}

.installation-type-option input[type="radio"] {
    accent-color: #e4002b;
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
}

.installation-type-option input[type="radio"]:checked + span {
    color: #e4002b;
}

.installation-type-option:has(input:checked) {
    border-color: #e4002b;
    background: #fef2f4;
}

/* Free shipping checkout section */
.freeshipping-checkout {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 10px;
}

.freeshipping-checkout p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
}

.freeshipping-proceed-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #e4002b;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.freeshipping-proceed-btn:hover {
    background-color: #c50024;
}

/* Store action buttons (See on Map / Book Now) */
.store-action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.btn-see-on-map {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    color: #e4002b;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-see-on-map:hover {
    background: #e4002b;
    color: #fff;
    border-color: #e4002b;
}

.btn-book-now {
    display: none;
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    background: #e4002b;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.btn-book-now:hover {
    background: #c50024;
}

@media screen and (max-width: 767px) {
    .installer-form-row {
        flex-direction: column;
    }

    .installer-field {
        min-width: 100%;
    }

    .installation-type-selector {
        flex-direction: column;
    }

    .installation-type-option {
        min-width: 100%;
    }

    .store-action-buttons {
        flex-direction: column;
    }
}
