/* Buscador y Contenedor */
.vt-search-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto 30px auto;
}
.vt-input-wrapper {
    position: relative;
    flex: 1;
}
.vt-search-form input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}
.vt-search-form button {
    padding: 12px 24px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}
.vt-search-form button:hover {
    background-color: #005bb5;
}

/* Autocompletado */
.vt-suggestions-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 1000;
    display: none;
    overflow: hidden;
}
.vt-suggestions-list li {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 15px;
    transition: background 0.2s;
    text-align: left;
}
.vt-suggestions-list li:last-child {
    border-bottom: none;
}
.vt-suggestions-list li:hover {
    background-color: #f8f9fa;
    color: #0073e6;
}

/* Grid de Resultados */
.vt-results-header { text-align: center; margin-bottom: 30px; }
.vt-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}
.vt-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease;
}
.vt-card:hover {
    transform: translateY(-5px);
}
.vt-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}
.vt-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vt-card-content h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}
.vt-price {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}
.vt-btn-book {
    margin-top: auto;
    text-align: center;
    display: block;
    background: #0073e6;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}
.vt-btn-book:hover {
    background: #005bb5;
    color: #fff;
}