/* ==========================================================================
   Visegrád Listings - Frontend stílus
   ========================================================================== */

.vl-listings-wrapper {
    --vl-primary: #8b1d24;          /* bordó */
    --vl-primary-hover: #6e161d;    /* sötétebb bordó */
    --vl-primary-light: #f5e6e7;    /* halvány rózsás */
    --vl-accent: #8b1d24;           /* ugyanaz a bordó (gomb) */
    --vl-accent-hover: #6e161d;
    --vl-bg: #faf7f2;                /* krémes háttér */
    --vl-bg-alt: #f0ead9;            /* világos tojáshéj */
    --vl-card-bg: #ffffff;
    --vl-text: #1a2240;              /* sötét éjkék */
    --vl-text-light: #5a6175;
    --vl-border: #e8e3d7;            /* halvány bézs */
    --vl-shadow: 0 2px 8px rgba(26, 34, 64, 0.06);
    --vl-shadow-hover: 0 12px 28px rgba(26, 34, 64, 0.12);
    --vl-radius: 16px;

    /* font-family-t a téma adja - NE kényszerítjük */
    color: var(--vl-text);
    box-sizing: border-box;
}

/* Form mezők és gombok örököljék a téma fontját */
.vl-listings-wrapper input,
.vl-listings-wrapper textarea,
.vl-listings-wrapper select,
.vl-listings-wrapper button {
    font-family: inherit;
    font-size: inherit;
}

.vl-listings-wrapper *,
.vl-listings-wrapper *::before,
.vl-listings-wrapper *::after {
    box-sizing: inherit;
}

/* --- Filter bar --- */
/* --- Filter bar - kompakt, modern --- */
.vl-filter-bar {
    background: var(--vl-card-bg);
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    box-shadow: 0 2px 8px rgba(26, 34, 64, 0.04);
}

.vl-filter-group {
    flex: 0 1 auto;
}

.vl-filter-group-cat {
    min-width: 200px;
}

.vl-filter-group-search {
    flex: 1 1 220px;
    min-width: 200px;
}

.vl-filter-kategoria,
.vl-filter-search {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--vl-border);
    border-radius: 10px;
    font-size: 0.95em;
    background: #fff;
    font-family: inherit;
    color: var(--vl-text);
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.vl-filter-kategoria {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%238b1d24' d='M6 9L1.5 4.5h9z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.vl-filter-kategoria:focus,
.vl-filter-search:focus {
    outline: none;
    border-color: var(--vl-primary);
    box-shadow: 0 0 0 3px rgba(139, 29, 36, 0.12);
}

.vl-filter-reset {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid var(--vl-border);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9em;
    color: var(--vl-text-light);
    transition: all 0.15s;
    font-family: inherit;
}

.vl-filter-reset:hover {
    border-color: var(--vl-primary);
    color: var(--vl-primary);
    background: var(--vl-primary-light);
}

/* További szűrők (összecsukható) */
.vl-filter-advanced {
    flex: 1 1 100%;
    margin-top: 4px;
}

.vl-filter-advanced > summary {
    cursor: pointer;
    color: var(--vl-primary);
    font-size: 0.9em;
    font-weight: 600;
    padding: 6px 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    user-select: none;
}

.vl-filter-advanced > summary::-webkit-details-marker {
    display: none;
}

.vl-filter-advanced > summary::before {
    content: '+';
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    border: 1px solid var(--vl-primary);
    border-radius: 50%;
    font-size: 14px;
}

.vl-filter-advanced[open] > summary::before {
    content: '−';
}

.vl-filter-advanced-inner {
    padding: 16px 0 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vl-filter-advanced-label {
    font-size: 0.85em;
    font-weight: 600;
    color: var(--vl-text);
}

.vl-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.vl-filter-tag {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.vl-filter-tag input[type="checkbox"] {
    display: none;
}

.vl-filter-tag span {
    padding: 6px 12px;
    background: var(--vl-bg);
    border: 1px solid var(--vl-border);
    border-radius: 999px;
    font-size: 0.85em;
    transition: all 0.15s ease;
}

.vl-filter-tag:hover span {
    border-color: var(--vl-primary);
}

.vl-filter-tag input[type="checkbox"]:checked + span {
    background: var(--vl-primary);
    color: #fff;
    border-color: var(--vl-primary);
}

@media (max-width: 600px) {
    .vl-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .vl-filter-group-cat,
    .vl-filter-group-search {
        min-width: 0;
        width: 100%;
    }
}

/* --- Grid --- */
.vl-grid {
    display: grid;
    gap: 24px;
}

/* Egyforma méretű kártyák - különböző oszlopszámok */
.vl-grid-cols-1 { grid-template-columns: 1fr; }
.vl-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.vl-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.vl-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.vl-grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.vl-grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

@media (max-width: 1200px) {
    .vl-grid-cols-5, .vl-grid-cols-6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .vl-grid-cols-3,
    .vl-grid-cols-4,
    .vl-grid-cols-5,
    .vl-grid-cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vl-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Kártya - egyforma méret biztosítása --- */
.vl-card {
    background: var(--vl-card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(26, 34, 64, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(232, 227, 215, 0.5);
}

.vl-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(139, 29, 36, 0.12);
}

/* SEMMI aláhúzás a kártya belsejében (téma override) */
.vl-card a,
.vl-card a:hover,
.vl-card a:focus,
.vl-card a:visited {
    text-decoration: none !important;
    border-bottom: none !important;
}

.vl-card .vl-card-link {
    text-decoration: none !important;
}

.vl-card-featured {
    border: 2px solid var(--vl-accent);
}

.vl-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.vl-card-link:hover,
.vl-card-link:focus {
    text-decoration: none;
    color: inherit;
}

.vl-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 11;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

@supports not (aspect-ratio: 16/11) {
    .vl-card-image {
        padding-top: 68.75%;
        height: 0;
    }
}

.vl-badge-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.97);
    color: var(--vl-primary);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8em;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    letter-spacing: 0.02em;
}

.vl-badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--vl-accent);
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.vl-card-body {
    padding: 20px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    min-height: 0;
    text-align: center;
}

/* Cím - max 2 sor, középre */
.vl-card-title {
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: var(--vl-text);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 1.2em;
    text-decoration: none !important;
}

.vl-card-title,
.vl-card-link:hover .vl-card-title {
    text-decoration: none !important;
}

/* Excerpt - max 2 sor, középre */
.vl-card-excerpt {
    font-size: 0.9em;
    color: var(--vl-text-light);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none !important;
}

/* Meta blokk - fix magasság (max 2 sor, középre tolva) */
.vl-card-meta {
    font-size: 0.8em;
    color: var(--vl-text-light);
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto; /* lent marad */
    min-height: 0;
}

/* Meta blokk - középen, fix magasság */
.vl-card-meta {
    font-size: 0.85em;
    color: var(--vl-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    font-style: italic;
}

.vl-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    overflow: hidden;
    line-height: 1.5;
}

.vl-meta-item > span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.vl-meta-item a {
    color: inherit !important;
    text-decoration: none !important;
}

/* Üres meta item - rejtve, de hely megmarad */
.vl-meta-empty {
    visibility: hidden;
}

.vl-icon {
    font-size: 1em;
    flex-shrink: 0;
    opacity: 0.7;
}

.vl-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.vl-tag {
    font-size: 11px;
    padding: 2px 8px;
    background: var(--vl-bg);
    color: var(--vl-text-light);
    border-radius: 999px;
    border: 1px solid var(--vl-border);
}

/* --- Lapozás --- */
.vl-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.vl-page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1px solid var(--vl-border);
    background: var(--vl-card-bg);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85em;
    font-weight: 500;
    color: var(--vl-text);
    transition: all 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

.vl-page-btn:hover {
    color: var(--vl-primary);
    background: var(--vl-primary-light);
    border-color: var(--vl-primary);
}

.vl-page-btn.active {
    background: var(--vl-primary);
    color: #fff;
    border-color: var(--vl-primary);
    cursor: default;
    font-weight: 600;
}

.vl-page-btn.active:hover {
    background: var(--vl-primary);
    color: #fff;
}

.vl-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vl-page-btn:disabled:hover {
    background: var(--vl-card-bg);
    color: var(--vl-text);
    border-color: var(--vl-border);
}

.vl-page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 34px;
    color: var(--vl-text-light);
    font-weight: 500;
    user-select: none;
}

/* --- "Több betöltése" gomb (alternatíva a lapozásnak) --- */
.vl-loadmore-wrapper {
    text-align: center;
    margin-top: 40px;
}

.vl-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--vl-card-bg);
    color: var(--vl-primary);
    border: 2px solid var(--vl-primary);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.2s ease;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(26, 34, 64, 0.06);
}

.vl-loadmore-btn:hover {
    background: var(--vl-primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 29, 36, 0.25);
}

.vl-loadmore-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.vl-loadmore-btn .vl-loadmore-arrow {
    font-size: 1.2em;
    transition: transform 0.2s;
}

.vl-loadmore-btn:hover .vl-loadmore-arrow {
    transform: translateY(2px);
}

.vl-loadmore-count {
    margin-top: 12px;
    font-size: 0.85em;
    color: var(--vl-text-light);
}

/* --- Loading & üres állapot --- */
.vl-loading {
    text-align: center;
    padding: 40px;
    color: var(--vl-text-light);
}

.vl-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--vl-bg);
    border-radius: var(--vl-radius);
    color: var(--vl-text-light);
}

/* --- Single oldal stílusok --- */
.vl-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
}

.vl-single-header {
    margin-bottom: 24px;
}

.vl-single-title {
    font-size: 36px;
    margin: 0 0 12px;
    color: var(--vl-text);
    line-height: 1.2;
}

.vl-single-meta-top {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--vl-text-light);
    font-size: 15px;
    margin-bottom: 12px;
}

.vl-single-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

/* Fő galéria - 5 kép, mosaic elrendezés, egységes magasság */
.vl-single-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    margin-bottom: 32px;
    border-radius: var(--vl-radius);
    overflow: hidden;
    height: 460px;
}

.vl-single-gallery .vl-gallery-link {
    display: block;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
}

.vl-single-gallery .vl-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.vl-single-gallery .vl-gallery-link:hover img {
    transform: scale(1.04);
}

.vl-single-gallery .vl-single-gallery-main {
    grid-row: 1 / span 2;
}

/* Ha kevesebb kép van, ne fessen üres helyet */
.vl-single-gallery:has(.vl-gallery-link:nth-child(1):last-child) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

@media (max-width: 768px) {
    .vl-single-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 280px;
        height: auto;
    }
    .vl-single-gallery .vl-gallery-link:not(:first-child) {
        display: none;
    }
    .vl-single-gallery .vl-single-gallery-main {
        grid-row: auto;
    }
}

/* További képek - egyforma rács */
.vl-extra-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
    margin-bottom: 24px;
}

.vl-extra-gallery .vl-gallery-link {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background: #e5e7eb;
}

.vl-extra-gallery .vl-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vl-extra-gallery .vl-gallery-link:hover img {
    transform: scale(1.05);
}

/* Single body - kétoszlopos */
.vl-single-body {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

@media (max-width: 992px) {
    .vl-single-body {
        grid-template-columns: 1fr;
    }
}

.vl-single-content {
    line-height: 1.7;
    font-size: 16px;
    min-width: 0; /* hogy a grid ne lógjon ki */
}

.vl-single-description p {
    margin: 0 0 16px;
}

.vl-section-title {
    font-size: 22px;
    margin: 32px 0 16px;
    color: var(--vl-text);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--vl-bg);
}

.vl-section-title:first-child {
    margin-top: 0;
}

/* Szolgáltatások lista - 2 oszlopos, pipa ikonokkal */
.vl-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 8px 16px;
}

.vl-services-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
}

.vl-services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--vl-primary);
    font-weight: 700;
    background: rgba(139, 29, 36, 0.12);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Sidebar */
.vl-single-sidebar {
    position: sticky;
    top: 24px;
}

.vl-sidebar-section {
    background: var(--vl-bg);
    border-radius: var(--vl-radius);
    padding: 20px;
    margin-bottom: 16px;
}

.vl-sidebar-section h3 {
    font-size: 17px;
    margin: 0 0 14px;
    color: var(--vl-text);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--vl-border);
}

.vl-sidebar-section a {
    color: var(--vl-primary);
    text-decoration: none;
}

.vl-sidebar-section a:hover {
    text-decoration: underline;
}

.vl-info-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.vl-info-line:last-child {
    margin-bottom: 0;
}

.vl-info-icon {
    flex-shrink: 0;
    margin-top: 1px;
}

/* Foglalás CTA gomb */
.vl-sidebar-cta {
    padding: 0;
    background: transparent;
}

.vl-cta-button {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--vl-accent);
    color: #fff !important;
    padding: 14px 20px;
    border-radius: var(--vl-radius);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 4px 12px rgba(139, 29, 36, 0.25);
}

.vl-cta-button:hover {
    background: #6e161d;
    transform: translateY(-1px);
}

/* Sidebar érdeklődési űrlap - kompakt */
.vl-sidebar-form {
    padding: 0;
    background: transparent;
}

.vl-sidebar-form .vl-inquiry-form-wrapper {
    background: var(--vl-bg);
    padding: 20px;
    margin-top: 0;
}

.vl-sidebar-form .vl-form-title {
    font-size: 1.1em;
    margin: 0 0 4px;
}

.vl-sidebar-form .vl-form-subtitle {
    font-size: 0.85em;
    margin-bottom: 14px;
}

.vl-sidebar-form .vl-inquiry-form .vl-form-row {
    grid-template-columns: 1fr; /* sidebar-ban mindig egy oszlop */
    gap: 0;
    margin-bottom: 0;
}

.vl-sidebar-form .vl-inquiry-form .vl-form-field {
    margin-bottom: 12px;
}

.vl-sidebar-form .vl-inquiry-form label {
    font-size: 0.8em;
}

.vl-sidebar-form .vl-inquiry-form input,
.vl-sidebar-form .vl-inquiry-form textarea {
    padding: 8px 10px;
    font-size: 0.9em;
}

.vl-sidebar-form .vl-submit-btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 1em;
    background: var(--vl-primary);
    box-shadow: none;
}

.vl-sidebar-form .vl-submit-btn:hover {
    background: var(--vl-primary-hover);
    transform: none;
}

.vl-sidebar-form .vl-form-note {
    font-size: 0.75em;
    margin-top: 12px;
}

.vl-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--vl-text-light);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 16px;
}

.vl-back-link:hover {
    color: var(--vl-primary);
}

/* Lightbox */
.vl-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 20px;
}

.vl-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.vl-lightbox-inner img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.vl-lightbox-close {
    position: absolute;
    top: -36px;
    right: 0;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.vl-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.vl-lightbox-nav:hover {
    background: rgba(0,0,0,0.8);
}

.vl-lightbox-prev { left: -70px; }
.vl-lightbox-next { right: -70px; }

@media (max-width: 768px) {
    .vl-lightbox-prev { left: 10px; }
    .vl-lightbox-next { right: 10px; }
}

/* ==========================================================================
   Jellemző badge-ek (Kutyabarát, Wellness stb.)
   ========================================================================== */

/* Features sáv - középre */
.vl-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    justify-content: center;
}

/* "Tovább →" gomb - középen, lekerekített, szegélyes */
.vl-card-more {
    color: var(--vl-primary) !important;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: auto;
    padding: 8px 24px;
    border: 1.5px solid var(--vl-primary);
    border-radius: 999px;
    text-align: center;
    align-self: center;
    transition: all 0.2s ease;
    text-decoration: none !important;
    background: transparent;
    display: inline-block;
}

.vl-card-link:hover .vl-card-more {
    background: var(--vl-primary);
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(139, 29, 36, 0.25);
}

.vl-feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 999px;
    border: 1px solid;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.vl-feature-icon {
    font-size: 14px;
    line-height: 1;
}

.vl-feature-label {
    font-size: 12px;
}

.vl-feature-more {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: var(--vl-bg);
    color: var(--vl-text-light);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid var(--vl-border);
}

/* Kép sarokba ikonos jelvények */
.vl-card-image-badges {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 70%;
    justify-content: flex-end;
}

.vl-image-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    cursor: help;
}

/* Single oldalon nagyobb badge */
.vl-single-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.vl-single-features .vl-feature-badge {
    padding: 8px 14px;
    font-size: 14px;
}

.vl-single-features .vl-feature-icon {
    font-size: 18px;
}

.vl-single-features .vl-feature-label {
    font-size: 14px;
    font-weight: 600;
}

/* ==========================================================================
   Érdeklődési űrlap
   ========================================================================== */

.vl-inquiry-form-wrapper {
    background: var(--vl-card-bg);
    border: 1px solid var(--vl-border);
    border-radius: var(--vl-radius);
    padding: 24px;
    margin-top: 24px;
}

/* Form címek - csak a margót és színt írjuk felül, a betűtípust a téma adja */
.vl-form-title {
    margin: 0 0 4px;
    color: var(--vl-text);
}

.vl-form-subtitle {
    margin: 0 0 20px;
    color: var(--vl-text-light);
    font-size: 0.9em;
}

.vl-inquiry-form .vl-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 600px) {
    .vl-inquiry-form .vl-form-row {
        grid-template-columns: 1fr;
    }
}

.vl-inquiry-form .vl-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.vl-inquiry-form label {
    font-size: 13px;
    font-weight: 600;
    color: var(--vl-text);
}

.vl-inquiry-form input[type="text"],
.vl-inquiry-form input[type="email"],
.vl-inquiry-form input[type="tel"],
.vl-inquiry-form input[type="date"],
.vl-inquiry-form input[type="number"],
.vl-inquiry-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--vl-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
}

.vl-inquiry-form input:focus,
.vl-inquiry-form textarea:focus {
    outline: none;
    border-color: var(--vl-primary);
    box-shadow: 0 0 0 3px rgba(139, 29, 36, 0.12);
}

.vl-inquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.vl-form-actions {
    margin-top: 8px;
}

.vl-submit-btn {
    cursor: pointer;
    border: none;
    font-size: 16px;
    padding: 14px 24px;
    width: auto;
}

.vl-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.vl-form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}

.vl-form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.vl-form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.vl-form-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--vl-text-light);
}

/* ==========================================================================
   Related (További helyek) szekció
   ========================================================================== */

.vl-related-section {
    margin-top: 64px;
    padding-top: 40px;
    border-top: 2px solid var(--vl-border);
}

.vl-related-title {
    font-size: 28px;
    margin: 0 0 24px;
    color: var(--vl-text);
    text-align: center;
}

@media (max-width: 768px) {
    .vl-related-title {
        font-size: 22px;
    }
}

/* A related grid kártyák legyenek kicsit kompaktabbak */
.vl-related-section .vl-card-title {
    font-size: 15px;
    min-height: 40px;
}

.vl-related-section .vl-card-excerpt {
    font-size: 13px;
}

/* Csak az ikonokat mutatjuk a related kártyákon */
.vl-related-section .vl-card-features {
    display: none;
}

/* ==========================================================================
   Krémes háttér a wrapper-en
   ========================================================================== */
.vl-single,
.vl-listings-wrapper > .vl-grid,
.vl-listings-wrapper > .vl-filter-bar {
    background-color: transparent;
}

/* Kártya magasságok finomítása - bordó akcent */
.vl-card-featured {
    border: 2px solid var(--vl-primary);
}

.vl-badge-category {
    background: rgba(255,255,255,0.96);
    color: var(--vl-primary);
}

.vl-badge-featured {
    background: var(--vl-primary);
    color: #fff;
}

/* Filter bar - bordós accent */
.vl-filter-tag input[type="checkbox"]:checked + span {
    background: var(--vl-primary);
    color: #fff;
    border-color: var(--vl-primary);
}

/* Lapozás aktív bordó */
.vl-page-btn.active {
    background: var(--vl-primary);
    color: #fff;
    border-color: var(--vl-primary);
}

/* Submit gomb fő kártya közeli oldalakon (nem csak sidebar) */
.vl-submit-btn,
.vl-cta-button {
    background: var(--vl-primary);
}

.vl-submit-btn:hover,
.vl-cta-button:hover {
    background: var(--vl-primary-hover);
}

/* Pipa szín a szolgáltatáslistában */
.vl-services-list li::before {
    background: var(--vl-primary-light);
    color: var(--vl-primary);
}

/* "Megnézem →" link bordó */
.vl-card-more {
    color: var(--vl-primary);
}

/* Section title alá vékony bordó vonal */
.vl-section-title {
    border-bottom-color: var(--vl-primary-light);
}

/* Filter focus shadow */
.vl-filter-kategoria:focus,
.vl-filter-search:focus {
    border-color: var(--vl-primary);
    box-shadow: 0 0 0 3px rgba(139, 29, 36, 0.12);
}

/* ==========================================================================
   Archive oldal hero / fejléc
   ========================================================================== */

.vl-archive-page {
    background-color: var(--vl-bg);
    min-height: 100vh;
}

.vl-archive-header {
    background: linear-gradient(135deg, #8b1d24 0%, #6e161d 100%);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vl-archive-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.vl-archive-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vl-archive-title {
    margin: 0 0 12px;
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.vl-archive-subtitle {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.vl-archive-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

@media (max-width: 768px) {
    .vl-archive-header {
        padding: 40px 20px;
    }
    .vl-archive-title {
        font-size: 1.8em;
    }
    .vl-archive-subtitle {
        font-size: 1em;
    }
}

/* ==========================================================================
   Featured block ([vl_featured] - kezdőlap shortcode)
   ========================================================================== */

.vl-featured-block {
    margin: 20px 0;
}

.vl-featured-header {
    text-align: center;
    margin-bottom: 32px;
}

.vl-featured-title {
    margin: 0 0 8px;
    color: var(--vl-text);
    font-size: 2em;
    font-weight: 700;
    line-height: 1.2;
}

.vl-featured-subtitle {
    margin: 0 auto;
    color: var(--vl-text-light);
    font-size: 1.05em;
    max-width: 700px;
    line-height: 1.5;
}

.vl-featured-more {
    text-align: center;
    margin-top: 32px;
}

.vl-featured-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vl-primary) !important;
    font-weight: 600;
    font-size: 1em;
    padding: 12px 32px;
    border: 1.5px solid var(--vl-primary);
    border-radius: 999px;
    text-decoration: none !important;
    transition: all 0.2s ease;
    background: transparent;
}

.vl-featured-more-link:hover {
    background: var(--vl-primary);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(139, 29, 36, 0.25);
    transform: translateY(-2px);
}

.vl-featured-more-link span {
    transition: transform 0.2s;
}

.vl-featured-more-link:hover span {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .vl-featured-title {
        font-size: 1.5em;
    }
    .vl-featured-subtitle {
        font-size: 0.95em;
    }
}
