/* ===== Commercial Clients — Additional styles on top of shanet-book.css ===== */

/* Services checkbox grid */
.shanet-commercial-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.shanet-commercial-service-check {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #475569;
}

.shanet-commercial-service-check:hover {
    border-color: #f15512;
    background: #fff5ee;
}

.shanet-commercial-service-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.shanet-commercial-service-check input[type="checkbox"]:checked {
    background: #f15512;
    border-color: #f15512;
}

.shanet-commercial-service-check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.shanet-commercial-service-check:has(input:checked) {
    border-color: #f15512;
    background: rgba(241, 85, 18, 0.06);
}

.shanet-commercial-service-check:has(input:checked) span {
    color: #1e293b;
    font-weight: 500;
}

/* Select dropdowns */
.shanet-commercial-page select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px !important;
    border: 1px solid #cbd5e1 !important;
    background: #f8fafc !important;
    color: #1e293b;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    cursor: pointer;
    box-sizing: border-box;
}

.shanet-commercial-page select:focus {
    border-color: #f15512 !important;
    box-shadow: 0 0 0 3px rgba(241, 85, 18, 0.1);
}

.shanet-commercial-page select option {
    background: #fff;
    color: #1e293b;
}

/* Other-specify wrapper */
.shanet-other-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

/* Responsive: mobile */
@media (max-width: 640px) {
    .shanet-commercial-services-grid {
        grid-template-columns: 1fr;
    }
}
