/* === СТИЛІ ДЛЯ КАРТОК ТУРІВ === */

.tour-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
}
.tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 24px;
    margin-top: 20px;
}
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}
.tour-card:hover {
    transform: translateY(-5px);
}
.tour-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.tour-body {
    padding: 20px;
    flex: 1;
}
.tour-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}
.tour-meta {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.tour-meta i {
    font-style: normal;
}
.tour-price {
    margin-top: 16px;
    font-size: 20px;
    font-weight: bold;
    color: #0047ab;
}
.tour-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.tour-footer .footer-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tour-footer .footer-top span {
    color: #666;
}
.tour-footer a.btn-view-hotel {
    color: #0047ab;
    text-decoration: none;
}
.tour-footer a.btn-booking {
    background-color: #0047ab;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    width: 160px;
    text-align: center;
}

/* === СТИЛІ ДЛЯ ПОПАПУ БРОНЮВАННЯ === */

#booking-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#booking-popup .popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
}
#booking-popup .popup-content h2 {
    margin-top: 0;
}
#booking-popup .popup-content label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}
#booking-popup .popup-content input,
#booking-popup .popup-content select {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
#booking-popup .popup-content button[type="submit"] {
    margin-top: 15px;
    background-color: #0047ab;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
}
#booking-popup #close-booking {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
}
