/* =========================================================
    File: stay-search-dog.css
    Description: 頭数選択モーダル（カウンター・匹数表示）
========================================================= */

.wan-dog-modal {
    left: 0;
    width: 440px;
    border: 1px solid #ccc;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding:14px 20px;
}

.modal-row .label {
    font-weight: 500;
    font-size: 14px;
    color: #333;
}

.counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-count {
    width: 24px;
    min-width: 24px;
    padding: 0;
    font-size: 16px;
    background: #f39800;
    color: #fff;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.btn-count:hover {
    opacity: 0.8;
}

.count-num {
    font-size: 14px;
    font-weight: 800;
    min-width: 1.5em;
    text-align: center;
}

.unit {
    font-size: 14px;
    font-weight: 500;
}

.btn-submit-modal {
    width: 100%;
    height: 50px;
    background: #f39800;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
.wan-dog-modal {
    width: 100%;
	}
	.dog-item-list{
		padding: 30px 0 10px;
	}
}

.dog-modal-footer{
    display: flex;
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}