.widget-container {
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.widget-container *,
.widget-container *::before,
.widget-container *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.booking-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.form-group select:hover,
.form-group input:hover {
    border-color: #3092E2;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #3092E2;
    box-shadow: 0 0 0 3px rgba(48, 146, 226, 0.1);
}

.form-group input[type="date"] {
    cursor: pointer;
}

.guests-group {
    flex: 1.2;
    min-width: 180px;
}

.guests-input {
    display: flex;
    gap: 8px;
}

.guest-control {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.guest-control-label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.counter {
    display: flex;
    align-items: center;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.counter button {
    background: #f8f8f8;
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    transition: all 0.2s;
    font-weight: 600;
}

.counter button:hover {
    background: #3092E2;
    color: white;
}

.counter button:active {
    transform: scale(0.95);
}

.counter span {
    flex: 1;
    text-align: center;
    font-weight: 600;
    color: #333;
    padding: 0 8px;
    font-size: 14px;
}

.search-btn {
    background: linear-gradient(135deg, #3092E2 0%, #2070B8 100%);
    color: white;
    border: none;
    padding: 11px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 130px;
    box-shadow: 0 2px 8px rgba(48, 146, 226, 0.25);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 146, 226, 0.4);
}

.search-btn:active {
    transform: translateY(0);
}

.search-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}

.search-btn:disabled:hover {
    transform: none;
}

/* Child ages section */
.child-ages {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    display: none;
}

.child-ages.active {
    display: block;
}

.child-ages-title {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.child-ages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.child-age-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.child-age-item label {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

.child-age-item select {
    padding: 8px 10px;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    background: white;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-widget {
        flex-direction: column;
    }

    .form-group,
    .guests-group {
        min-width: 100%;
    }

    .search-btn {
        width: 100%;
    }
}
