

/* ================= RESET / GLOBAL ================= */

body .webro-container ~ .wd-page-title {
    display: none !important;
}

.webro-container {
    width: 100%;
    padding-top: 50px;
}

.webro-room-single .container {
    padding-inline: 0 !important;
}

/* ================= LAYOUT ================= */



.webro-sidebar {
    position: sticky;
}

/* ================= HERO ================= */

.webro-hero {
    position: relative;
    height: 560px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* BG */
.webro-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.webro-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.webro-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.6)
    );
}

/* CONTENT LAYER */
.webro-hero-glass {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    align-items: flex-end;
}


.webro-hero-text {
    color: #fff;
    max-width: 100vw;
}

/* TITLE */
.webro-hero-text h1 {
    font-size: 34px;
    margin-bottom: -30px;
}

/* SUBTITLE */
.webro-hero-subtitle {
    opacity: 0.85;
    margin-bottom: 8px;
}

/* PRICE */
.webro-hero-price {
    font-size: 18px;
    margin-bottom: 12px;
}

/* BADGES */
.webro-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.webro-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);

    padding: 6px 10px;
    border-radius: 8px;

    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;

    color: #fff;
}

/* ================= GALLERY ================= */

.webro-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.webro-slide {
    min-width: 80%;
    scroll-snap-align: center;
}

.webro-slide img {
    width: 100%;
    border-radius: 15px;
}

/* ================= QUICK INFO GRID ================= */

.webro-qi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.webro-qi-card {
    display: flex;
    align-items: center;
    gap: 12px;

    background: #fff;
    border: 1px solid #e7e2d9;
    border-radius: 16px;
    padding: 16px;

    box-shadow: 0 8px 25px rgba(30,20,10,0.04);
}

/* ================= BOOKING ================= */

.webro-booking-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.webro-price-big {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.webro-price-sub {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* ================= FORM ================= */

.webro-booking-fields input,
.webro-booking-fields select {
    width: 100%;
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    transition: 0.2s;
}

.webro-booking-fields input:focus,
.webro-booking-fields select:focus {
    border-color: #2a7b9b;
    outline: none;
}

/* ================= BUTTONS ================= */

.webro-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

.webro-btn-primary {
    background: #2a7b9b;
    color: #fff;
}

.webro-btn-secondary {
    background: #eee;
}


.webro-btn-tertiary:hover {
    background: #d4ebe8;
}



/* ================= FEEDBACK ================= */

.webro-booking-feedback {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px;
    border-radius: 6px;
    display: none;
}

.webro-booking-feedback.success {
    display: block;
    background: #eaf7ee;
    border: 1px solid #2ea44f;
}

.webro-booking-feedback.error {
    display: block;
    background: #fff5f5;
    border: 1px solid #e74c3c;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {

    .webro-layout {
        grid-template-columns: 1fr;
    }

    .webro-sidebar {
        position: relative;
        top: auto;
    }

    .webro-hero {
        height: 320px;
    }
}

@media (max-width: 768px) {

    .webro-hero {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .webro-hero-inner {
        padding: 5px;
    }

    .webro-hero-text h1 {
        font-size: 24px;
    }
}
/* ================= HERO FIX (FORCE) ================= */

.webro-hero {
    position: relative !important;
}

/* BG biztos */
.webro-hero-bg {
    position: absolute !important;
    inset: 0;
    z-index: 1;
}

.webro-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay biztos */
.webro-hero-overlay {
    position: absolute !important;
    inset: 0;
    z-index: 2;
}

/* 🔥 EZ A LÉNYEG */
.webro-hero-glass {
    position: absolute !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;

    padding: 10px;
}

/* 🔥 BLUR SÁV VISSZA */
.webro-hero-inner {
    background: rgba(0,0,0,0.35) !important;
    backdrop-filter: blur(12px) !important;

    border-radius: 16px;
    padding: 10px;
}

/* TEXT */
.webro-hero-text {
    color: #fff !important;
}

/* TITLE FIX */
.webro-hero-text h1 {
    color: #fff !important;
}

/* ================= RESULT CARD ================= */

.webro-result-card {
    background: #f8fbf9;
    border: 2px solid #2ea44f1a;
    border-radius: 14px;
    padding: 18px;
    margin-top: 5px;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* STATUS */
.webro-result-status {
    font-weight: 700;
    color: #2ea44f;
    font-size: 15px;
}

/* META */
.webro-result-meta {
    font-size: 13px;
    color: #4b5563;
}

/* CALC */
.webro-result-calc {
    font-size: 14px;
    color: #374151;
}

/* LABEL */
.webro-result-label {
    font-size: 15px;
    font-weight: 600;
    color: #16a34a;
    letter-spacing: 0.5px;
	margin-bottom: -20px;
}

/* ================= BENEFITS ================= */

.webro-result-benefits {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ITEM */
.webro-benefit {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 12px;
    border-radius: 10px;

    font-size: 14px;
    font-weight: 500;

    transition: all 0.2s ease;
}

/* ICON */
.webro-benefit-icon {
    font-size: 16px;
}

/* TEXT */
.webro-benefit-text {
    line-height: 1.4;
}

/* VARIÁCIÓK */

/* 💸 ár */
.webro-benefit-price {
    background: #ecfdf5;
    border: 1px solid #22c55e;
    color: #166534;
}

/* ⚡ FOMO */
.webro-benefit-fomo {
    background: #fff7ed;
    border: 1px solid #f97316;
    color: #9a3412;
}

/* ✔ trust */
.webro-benefit-trust {
    background: #eff6ff;
    border: 1px solid #3b82f6;
    color: #1e3a8a;
}

/* ================= TOTAL ================= */

.webro-result-total {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin-top: 8px;
}

/* ================= WARNING ================= */

.webro-result-warning {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #fff8e1;
    border: 1px solid #f1c40f;

    padding: 10px 12px;
    border-radius: 8px;

    margin-top: 10px;
}

.webro-result-warning .price-offer {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffe08a;
    border-radius: 6px;

    flex-shrink: 0;
}

.webro-result-warning .webro-warning-text {
    font-size: 13px;
    color: #7c5e00;
}

/* ================= CTA ================= */

.webro-book-now {
    margin-top: 10px;
    background: #2a7b9b;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    text-align: center;
}

/* HOVER */
.webro-benefit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.webro-booking-feedback {
  margin-top: 9px;
  font-size: 14px;
  padding: 3px;
  border-radius: 6px;
  display: none;
}
/* ================= LOADING SPINNER FIX ================= */

.webro-btn {
    position: relative; /* 🔥 EZ KELL */
}


/* text ne ugorjon */
.webro-btn.is-loading {
    padding-right: 40px;
}

/* animáció */
@keyframes webro-spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}
/* ===== VALIDÁCIÓ FORCE (WOODMART override ellen) ===== */

.webro-booking-fields input.is-valid,
.webro-booking-fields select.is-valid,
.webro-field input.is-valid,
.webro-field select.is-valid {
    border: 2px solid #22c55e !important;
    background: #f0fdf4 !important;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.15) !important;
}

.webro-booking-fields input.is-error,
.webro-booking-fields select.is-error,
.webro-field input.is-error,
.webro-field select.is-error {
    border: 2px solid #ef4444 !important;
    background: #fef2f2 !important;
    box-shadow: 0 0 0 2px rgba(239,68,68,0.15) !important;
}
/* ===== Spinner BUTTON LOADING ===== */


.webro-btn.is-loading {
    pointer-events: none;
    opacity: 0.9;
    padding-right: 42px !important;
}

.webro-btn.is-loading::after {
    content: "";
    width: 16px;
    height: 16px;

   border: 2px solid rgba(0,0,0,0.8);
border-top-color: #2a7b9b;

    border-radius: 50%;

    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);

    animation: webro-spin 0.8s linear infinite;
    z-index: 5;
}

@keyframes webro-spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}
/* ===== CTA BOOST ===== */

.webro-book-now {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(34,197,94,0.3);

    transition: all 0.2s ease;
}

.webro-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(34,197,94,0.4);
}
.webro-book-now::after {
    content: "⚡";
    margin-left: 6px;
}

.webro-cta-sub {
    display: block;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}
.webroinfo {
  font-size: 14px;
  font-weight: 500;
  color: #166534;
  background: #ecfdf5;
  padding: 5px 5px;
  border-radius: 8px;
  margin: 10px 0;
    margin-bottom: 10px;
  margin-bottom: -15px;
}

.webro-btn {
    position: relative;
}




@keyframes webro-spin {
    to { transform: translateY(-50%) rotate(360deg); }
}
.webro-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999999;
}

.webro-modal.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔥 overlay */
.webro-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* 🔥 content */
.webro-modal-content {
    position: relative;
    z-index: 2;

    max-width: 600px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 12px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.webro-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
}
body.modal-open {
    overflow: hidden;
}
.webro-modal-content {
    max-height: 90vh;
    overflow-y: auto;
	position: relative;
    z-index: 2;
}

.webro-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* 🔥 EZ HIÁNYZIK */
    z-index: 1;
}
html body .webro-modal {
    position: fixed !important;
    inset: 0 !important;
    display: none !important;
    z-index: 2147483647 !important;
}

html body .webro-modal.is-open {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

html body .webro-modal-overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0,0,0,0.6) !important;
    z-index: 1 !important;
}

html body .webro-modal-content {
    position: relative !important;
    z-index: 2 !important;
    width: min(720px, calc(100vw - 32px)) !important;
    max-height: calc(100vh - 32px) !important;
    overflow-y: auto !important;
    margin: 16px !important;
    background: #fff !important;
    padding: 30px !important;
    border-radius: 12px !important;
}

html body .webro-modal-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    z-index: 3 !important;
}

body.modal-open {
    overflow: hidden !important;
}
.webro-benefit-text .line1,
.webro-benefit-text .line2 {
    display: block;
}
.webro-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff !important;

    font-size: 16px;
    font-weight: 700;

    padding: 16px 20px;
    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(34,197,94,0.35);

    transition: all 0.25s ease;
    overflow: hidden;
}

/* hover */
.webro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(34,197,94,0.45);
}

/* click */
.webro-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 8px 20px rgba(34,197,94,0.3);
}
.webro-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: translateX(-100%);
    transition: 0.6s;
}

.webro-btn-primary:hover::before {
    transform: translateX(100%);
}
.webro-btn-primary::after {
  content: "";
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-left: 6px;
  background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/fcalendar.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes webro-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.webro-book-now {
    animation: webro-pulse 2.5s infinite;
}
/* === WEBRO ICON SYSTEM === */


/* === ICON MAPPING === */

.webro-icon-price {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/price.svg');
}

.webro-icon-users {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/users.svg');
}

.webro-icon-bed {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/bedroom.svg');
}

.webro-icon-single-bed {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/single-bed.svg');
}

.webro-icon-bath {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/furdo.svg');
}

.webro-icon-towel {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/torolkozo.svg');
}

.webro-icon-wifi {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/wifi.svg');
}

.webro-icon-ac {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/legkondi.svg');
}

.webro-icon-car {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/parkolas.svg');
}

.webro-icon-kitchen {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/teakonyha.svg');
}

.webro-icon-fridge {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/huto.svg');
}

.webro-icon-floor {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/eemeleti.svg');
}

.webro-icon-default {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/bedroom.svg');
}
.webro-icon-bathtub {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/kadas.svg');
}

.webro-icon-shower {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/shower.svg');
}
/* === EXTRA ICONS === */

.webro-icon-balcony {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/erkelyes.svg');
}
.webro-icon-size {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/meret.svg');
}

.webro-icon-no-pet {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/no-animals.svg');
}
.webro-icon-pet {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/pet.svg');
}

.webro-icon-door {
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/osszenyithato.svg');
}

.webro-badge {
	display: flex;
	align-items: center;
	gap: 8px;
}

.webro-badge-icon {
	display: flex;
	align-items: center;
}



.webro-badge {
	backdrop-filter: blur(6px);
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.1);
}
.webro-hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.webro-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	padding: 8px 14px;
	border-radius: 999px;

	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);

	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);

	color: #fff;
	font-size: 14px;
	font-weight: 500;

	transition: all 0.25s ease;
}
.webro-badge:hover {
	background: rgba(255,255,255,0.18);
	border-color: rgba(255,255,255,0.25);
	transform: translateY(-1px);
}

.webro-badge:hover .webro-icon {
	opacity: 1;
}
.webro-badge:first-child {
	background: rgba(255,255,255,0.25);
	border-color: rgba(255,255,255,0.35);
	font-weight: 600;
}
.webro-features {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 14px;
}

.webro-feature {
	display: flex;
	align-items: center;
	gap: 8px;

	color: rgba(255,255,255,0.9);
	font-size: 14px;
	font-weight: 500;
}

.webro-feature {
	position: relative;
	padding-right: 12px;
}

.webro-feature:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,0.2);
}
.webro-features-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 18px;
}

.webro-feature-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 100px;
	height: 90px;

	border-radius: 14px;

	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.15);

	backdrop-filter: blur(10px);

	color: #fff;
	font-size: 12px;
	text-align: center;

	transition: all 0.25s ease;
}

.webro-feature-card:hover {
	transform: translateY(-3px) scale(1.03);
	background: rgba(255,255,255,0.18);
}


.webro-feature-card.icon-only {
	width: 60px;
}
.webro-icon-img {
	width: 18px;
	height: 18px;
	object-fit: contain;
}
.webro-quick-info{
	display:grid;
	grid-template-columns:repeat(2,minmax(0,1fr));
	gap:12px;
	margin-top:20px;
}

.webro-quick-item{
	display:flex;
	align-items:center;
	gap:12px;
	padding:14px;
	border-radius:14px;
	background:rgba(255,255,255,0.12);
	backdrop-filter:blur(10px);
	border:1px solid rgba(255,255,255,0.2);
}

.webro-quick-content{
	display:flex;
	flex-direction:column;
}

.webro-quick-value{
	font-weight:700;
	color:#fff;
}

.webro-quick-label{
	font-size:12px;
	color:rgba(255,255,255,0.7);
}
.webro-quick-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 28px;
	margin-top: 18px;
}

.webro-quick-inline .webro-quick-item {
	display: flex;
	align-items: center;
	gap: 8px;

	padding: 6px 10px;
	border-radius: 8px;

	background: rgba(255,255,255,0.06);
	backdrop-filter: blur(6px);

	border: 1px solid rgba(255,255,255,0.08);
}

.webro-quick-inline .webro-icon {
	font-size: 16px;
	opacity: 0.9;
}

.webro-quick-inline .webro-quick-value {
	font-weight: 600;
	font-size: 14px;
	color: #fff;
}

.webro-quick-inline .webro-quick-label {
	font-size: 12px;
	opacity: 0.7;
	margin-left: 4px;
}
.webro-quick-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin-top: 16px;
}

.webro-quick-item {
	display: flex;
	align-items: center;
	gap: 6px;

	font-size: 14px;
	color: #fff;
	opacity: 0.95;
}

.webro-quick-label {
	margin-left: 4px;
	opacity: 0.65;
	font-size: 13px;
}
.webro-icon {
  width: 45px;
  height: 45px;
  margin-bottom: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.25s ease;
}
.webro-hero-inner {
  background: rgba(0,0,0,0.35) !important;
  backdrop-filter: blur(12px) !important;
  border-radius: 16px;
  padding: 5px;
}
.webro-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.webro-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.webro-badge-label {
    font-size: 13px;
    line-height: 1.2;
}
.webro-quick-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.webro-quick-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.webro-quick-text {
    font-size: 13px;
    line-height: 1.2;
}

.webro-quick-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.webro-quick-item {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
}

.webro-quick-item .webro-icon {
    display: block;
}

.webro-quick-text {
    font-size: 13px;
    line-height: 1.2;
}
.webro-quick-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: flex-start;
}

.webro-quick-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-width: 70px;
}


.webro-quick-text {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 4px;
  text-align: center;
  margin-top: -10px;
}
@media (max-width: 768px) {
	.webro-quick-inline .webro-quick-item:nth-child(n+6) {
		display: none;
	}
}
.webro-quick-inline .webro-quick-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(208, 196, 179, 0.68);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.08);
}
.webro-capacity .webro-icon {
	width: 16px;
	height: 16px;
	margin-right: 4px;
	vertical-align: middle;
}
/* BASE ICON */


/* HERO ICON (nagy) */
.webro-quick-item .webro-icon {
	width: 32px;
	height: 32px;
}

/* INLINE ICON (pl price, user) */
.webro-hero-price .webro-icon,
.webro-capacity .webro-icon {
	width: 16px;
	height: 16px;
}
.webro-hero-text h1 {
	margin-bottom: 0px;
}
.webro-hero-price {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 5px; /* 🔥 EZ A KULCS */
}
.webro-quick-inline {
	margin-top: 5px; /* 🔥 EZ KELL */
}
.webro-hero-text {
	display: flex;
	flex-direction: column;
}
.webro-capacity,
.webro-price-value {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.webro-hero-price {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 16px;
	line-height: 1.4;
}

.webro-capacity,
.webro-price-value {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.webro-hero-price .webro-icon {
	width: 18px;
	height: 18px;
	transform: translateY(1px); /* optikai baseline */
	opacity: 0.95;
	margin-bottom:0px;
}
.sep {
	opacity: 0.5;
	margin: 0 4px;
}
.webro-capacity {
	font-weight: 500;
	opacity: 0.9;
}

.webro-price-value {
	font-weight: 600;
}
.webro-hero-price {
	background: rgba(255,255,255,0.08);
	padding: 6px 10px;
	border-radius: 8px;
	backdrop-filter: blur(6px);
	display: inline-flex;
}
.webro-hero-price {
  background: rgba(255, 255, 255, 0.22);
  padding: 6px 10px;
  border-radius: 2px;
  backdrop-filter: blur(6px);
  display: inline-flex;
}
/* =========================================
   HERO IMAGE TRIGGER
========================================= */

.webro-hero {
	position: relative;
}


/* =========================================
   LIGHTBOX
========================================= */

.webro-lightbox[hidden] {
	display: none !important;
}

.webro-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
}

.webro-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 12, 18, 0.88);
	backdrop-filter: blur(6px);
}

.webro-lightbox-dialog {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(1200px, calc(100vw - 24px));
	height: min(100vh - 24px, 980px);
	margin: 12px auto;
	padding: 16px;
	border-radius: 18px;
	background: rgba(20, 24, 30, 0.72);
	box-shadow: 0 20px 60px rgba(0,0,0,0.35);
	overflow: hidden;
}

.webro-lightbox-stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 0;
}

.webro-lightbox-image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.35);
	object-fit: contain;
}

.webro-lightbox-close,
.webro-lightbox-nav {
	position: absolute;
	z-index: 20;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	background: rgba(255,255,255,0.16);
	color: #fff;
	backdrop-filter: blur(6px);
	transition: background .2s ease, transform .2s ease;
}

.webro-lightbox-close:hover,
.webro-lightbox-nav:hover {
	background: rgba(255,255,255,0.24);
	transform: scale(1.04);
}

.webro-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px; /* EZ VOLT A BAJ */
	left: auto;

	width: 40px;
	height: 40px;

	display: flex;
	align-items: center;
	justify-content: center;

	background: rgba(0,0,0,0.6);
	color: #fff;
	font-size: 22px;

	border-radius: 8px;
	z-index: 10;
}



.webro-lightbox-prev {
	left: 16px;
}



.webro-lightbox-bottom {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 14px;
}

.webro-lightbox-counter {
	font-size: 14px;
	line-height: 1.3;
	color: rgba(255,255,255,0.88);
	text-align: center;
}

.webro-lightbox-thumbs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 4px;
}

.webro-lightbox-thumb {
	flex: 0 0 auto;
	width: 72px;
	height: 52px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	background: transparent;
	cursor: pointer;
	opacity: 0.78;
	transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.webro-lightbox-thumb:hover,
.webro-lightbox-thumb.is-active {
	opacity: 1;
	transform: translateY(-1px);
	border-color: rgba(255,255,255,0.7);
}

.webro-lightbox-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html.webro-lightbox-open,
body.webro-lightbox-open {
	overflow: hidden;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {
	.webro-hero-thumbs-wrap {
		margin-top: 10px;
		padding: 0 12px 2px;
	}

	.webro-hero-thumb {
		width: 92px;
		height: 64px;
		border-radius: 10px;
	}

	.webro-lightbox-dialog {
		width: calc(100vw - 12px);
		height: calc(100vh - 12px);
		margin: 6px auto;
		padding: 12px;
		border-radius: 14px;
	}


	.webro-lightbox-close {
		width: 44px;
		height: 44px;
		font-size: 26px;
	}
}

@media (max-width: 767px) {
	.webro-hero {
		min-height: auto;
	}

	.webro-hero-glass {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.webro-hero-subtitle {
		max-width: 100%;
	}

	.webro-quick-inline {
		row-gap: 8px;
	}

	.webro-lightbox-prev {
		top: auto;
		bottom: 92px;
		transform: none;
	}

	.webro-lightbox-prev {
		left: 12px;
	}

	
	.webro-lightbox-stage {
		padding-top: 30px;
		padding-bottom: 18px;
	}

	.webro-lightbox-image {
		max-height: calc(100vh - 210px);
	}

	.webro-lightbox-thumb {
		width: 64px;
		height: 48px;
	}
}
/* === HERO CLICK FIX === */

.webro-hero-bg {
    position: absolute;
    inset: 0;
}


.webro-lightbox-stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 0;
	padding: 0;
	background: transparent;
}







/* overlay ne fogja meg a kattintást */
.webro-hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

/* glass se fogja meg */
.webro-hero-glass {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	pointer-events: none;
}

/* szöveg maradjon látható */
.webro-hero-inner,
.webro-hero-text,
.webro-quick-inline,
.webro-hero-price {
	pointer-events: none;
}

/* HERO THUMB STRIP */
.webro-hero-thumbs-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
	padding: 0;
}

.webro-hero-thumbs-viewport {
	flex: 1 1 auto;
	overflow: hidden;
	min-width: 0;
}


.webro-hero-thumbs::-webkit-scrollbar {
	display: none;
}

.webro-hero-thumb {
	flex: 0 0 calc((100% - 48px) / 5);
	max-width: calc((100% - 48px) / 5);
	height: 92px;
	border: 0;
	padding: 0;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	background: #fff;
	box-shadow: 0 8px 20px rgba(0,0,0,0.12);
	transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.webro-hero-thumb:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.webro-hero-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* LIGHTBOX */
.webro-lightbox[hidden] {
	display: none !important;
}

.webro-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
}

.webro-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 12, 18, 0.88);
	backdrop-filter: blur(6px);
}

.webro-lightbox-dialog {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: min(1240px, calc(100vw - 32px));
	height: min(calc(100vh - 32px), 980px);
	margin: 16px auto;
	padding: 20px;
	border-radius: 22px;
	background: rgba(16, 20, 28, 0.88);
	box-shadow: 0 20px 60px rgba(0,0,0,0.35);
	overflow: hidden;
}

.webro-lightbox-stage {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	min-height: 0;
	padding: 0;
}

.webro-lightbox-image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.webro-lightbox-close,
.webro-lightbox-nav {
	position: absolute;
	z-index: 30;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	cursor: pointer;
	background: rgba(255,255,255,0.16);
	color: #fff;
	backdrop-filter: blur(6px);
	transition: background .2s ease, transform .2s ease;
}

.webro-lightbox-close:hover,
.webro-lightbox-nav:hover {
	background: rgba(255,255,255,0.24);
	transform: scale(1.04);
}

.webro-lightbox-close {
	top: 18px;
	left: 18px;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	font-size: 28px;
	line-height: 1;
}



.webro-lightbox-prev {
	left: 18px;
}


.webro-lightbox-bottom {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 16px;
}

.webro-lightbox-counter {
	font-size: 14px;
	line-height: 1.3;
	color: rgba(255,255,255,0.9);
	text-align: center;
}

/* LIGHTBOX THUMB STRIP */
.webro-lightbox-thumbs-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.webro-lightbox-thumbs-viewport {
	flex: 1 1 auto;
	overflow: hidden;
	min-width: 0;
}

.webro-lightbox-thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	padding-bottom: 4px;
}

.webro-lightbox-thumbs::-webkit-scrollbar {
	display: none;
}

.webro-lightbox-thumb {
	flex: 0 0 84px;
	width: 84px;
	height: 60px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 12px;
	overflow: hidden;
	background: transparent;
	cursor: pointer;
	opacity: 0.82;
	transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.webro-lightbox-thumb:hover,
.webro-lightbox-thumb.is-active {
	opacity: 1;
	transform: translateY(-1px);
	border-color: rgba(255,255,255,0.78);
}

.webro-lightbox-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html.webro-lightbox-open,
body.webro-lightbox-open {
	overflow: hidden;
}

/* DESKTOP finomítás */
@media (max-width: 1200px) {
	.webro-hero-thumb {
		flex: 0 0 calc((100% - 36px) / 4);
		max-width: calc((100% - 36px) / 4);
	}
}

/* TABLET / MOBILE */
@media (max-width: 767px) {
	.webro-hero-thumbs-wrap {
		gap: 8px;
		margin-top: 12px;
	}

	.webro-strip-nav {
		width: 34px;
		height: 34px;
	}

	.webro-hero-thumb {
		flex: 0 0 calc((100% - 24px) / 3);
		max-width: calc((100% - 24px) / 3);
		height: 74px;
		border-radius: 12px;
	}

	.webro-lightbox-dialog {
		width: calc(100vw - 12px);
		height: calc(100vh - 12px);
		margin: 6px auto;
		padding: 12px;
		border-radius: 16px;
	}

	.webro-lightbox-close {
		top: 12px;
		left: 12px;
		width: 44px;
		height: 44px;
		font-size: 24px;
	}



	.webro-lightbox-prev {
		left: 12px;
	}



	.webro-lightbox-stage {
		padding-top: 36px;
		padding-bottom: 10px;
	}

	.webro-lightbox-image {
		max-height: calc(100vh - 250px);
	}

	.webro-lightbox-thumbs-wrap {
		gap: 8px;
	}

	.webro-lightbox-thumb {
		flex: 0 0 64px;
		width: 64px;
		height: 48px;
		border-radius: 10px;
	}
}
/* === HERO FULL COVER FIX === */

.webro-hero {
    position: relative;
    overflow: hidden;
    background: #000; /* fallback ne legyen szürke */
}



/* === HERO THUMB FIX === */

.webro-hero-thumb {
    flex: 0 0 calc((100% - 48px) / 5);
    max-width: calc((100% - 48px) / 5);
    height: 90px;

    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    padding: 0;
    border: 0;

    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.webro-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* === LIGHTBOX NAV FIX === */



.webro-lightbox-prev {
    left: 20px;
}


.webro-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px; /* 🔥 nem bal */
    left: auto;
}
/* === HERO CLICKABLE LAYER (FINAL) === */

.webro-hero {
    position: relative;
}

.webro-hero-bg,
.webro-hero-image-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* kattintható layer */
.webro-hero-image-trigger {
    z-index: 2;
    display: block;
    cursor: zoom-in;

    border: 0;
    padding: 0;
    background: transparent;
}

/* kép */
.webro-hero-bg img,
.webro-hero-image-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.webro-hero {
    position: relative;
    height: 560px;

    border-radius: 20px;
    overflow: hidden;

    width: 100%;
    max-width: 100%; /* 🔥 EZ KELL */
}

/* új teszt */

.webro-main {
    width: 100%;
}

.webro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
}
.webro-hero-inner {
    max-width: none !important;
    margin: 0 !important;
    width: 100%;
}
/* ===== HERO FULL FIX ===== */

.webro-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* kép teljesen kifeszítve */
.webro-hero-bg,
.webro-hero-image-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.webro-hero-bg img,
.webro-hero-image-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* overlay maradhat */
.webro-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* 🔥 EZ A LÉNYEG – ne legyen doboz */
.webro-hero-glass {
    position: absolute;
    inset: 0;
    z-index: 3;

    display: flex;
    align-items: flex-end;
    padding: 20px;
}

/* 🔥 NE limitáld! */
.webro-hero-inner {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;

    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(12px);

    border-radius: 16px;
    padding: 10px;
}
.webro-layout {
    max-width: 1280px;
    margin: 0 auto;
}

/* 🔥 csak a hero legyen szélesebb a contentnél */
.webro-layout > .webro-hero {
    width: 100%;
}
.webro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
}
.webro-hero {
    grid-column: 1 / -1 !important;  
}

/* ===== HERO FULL COVER FIX ===== */

.webro-hero {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000; /* fallback */
}

/* MINDEN layer teljesen fedjen */
.webro-hero-bg,
.webro-hero-image-trigger {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* 🔥 EZ A KULCS */
.webro-hero-image-trigger img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.webro-price-sub {
  font-size: 16px;
  opacity: 0.7;
  margin-bottom: 20px;
  color: #1f6b66;
  background-color: #9e9a8b47;
  border-radius: 6px;
  padding: 10px;
}
.webro-field {
  margin-bottom: 5px;
}
.webro-hero-glass {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  margin-bottom: 0;
}
.webro-hero-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    background: transparent;
}

.webro-hero-thumbs-viewport {
    overflow: hidden;
    flex: 1;
}


.webro-lightbox-nav {
    z-index: 10;
}

.webro-lightbox-bottom {
    background: transparent;
}
.webro-hero-glass {
    position: relative;
}
.webro-hero {
    position: relative;
}

.webro-hero-gallery-hint {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 20; 
}
.webro-hero-glass {
    position: relative;
    z-index: 10;
}
.webro-hero-inner {
    position: relative;
}

.webro-hero-gallery-hint {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  text-align: right;
}

.webro-hero-gallery-count {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

.webro-hero-gallery-count {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  background-color: white;
  border-radius: 8px;
  padding: 5px 10px;
  text-align: center;
}
.webro-hero-gallery-text {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  color: white;
  margin-top: 5px;
}
.webro-hero-topline {
    display: inline-block; 
    background-color: #ffffff1f;
    border-radius: 5px;
    padding: 4px 10px;
    margin-top: -5px;
	align-self: flex-start;
}
/*:is(.btn, .button, button, [type="submit"], [type="button"]) {
  color: white !important;
  background-color: #169CA2 !important;
}
*/
/* gallery thumb */

.webro-hero-thumbs-viewport {
    overflow: hidden;
    width: 100%;
}

.webro-hero-thumb {
    flex: 0 0 calc((100% - 48px) / 5);
    /* 4 gap = 4 * 12px = 48px */
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
}
.webro-hero-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* EZ FONTOS */
    display: block;
}
.webro-hero-thumb.is-active {
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.3);
}
.webro-strip-nav {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.webro-strip-nav:hover {
    color: #000;
}

.webro-lightbox-prev,
.webro-lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 58px;
	height: 58px;
	border-radius: 999px;
	font-size: 28px;
	line-height: 1;
	z-index: 10;
}

/* BAL */
.webro-lightbox-prev {
	left: 20px;
}

/* JOBB */
.webro-lightbox-next {
	right: 20px;
}
@media (max-width: 767px) {

	.webro-lightbox-prev,
	.webro-lightbox-next {
		top: auto;
		bottom: 120px; /* thumbs fölé */
		transform: none;

		width: 42px;
		height: 42px;
		font-size: 20px;
	}

	.webro-lightbox-prev {
		left: 15px;
	}

	.webro-lightbox-next {
		right: 15px;
	}
}
@media (max-width: 767px) {

	.webro-lightbox-image {
		max-width: 95vw;
		max-height: 65vh;
		border-radius: 10px;
	}
}
@media (max-width: 767px) {

	.webro-lightbox-thumbs {
		gap: 8px;
		padding: 10px 10px 0;
	}

	.webro-lightbox-thumb {
		width: 60px;
		height: 45px;
		border-radius: 8px;
	}
}
@media (max-width: 767px) {

	.webro-lightbox-counter {
		font-size: 14px;
		margin-bottom: 8px;
	}
}
@media (max-width: 767px) {

	.webro-lightbox-close {
		top: 10px;
		right: 10px;
		width: 36px;
		height: 36px;
		font-size: 18px;
	}
}
/* =========================
   LIGHTBOX FORCE FIX
   ========================= */

/* CLOSE → jobb felső */
.webro-lightbox-close {
	top: 20px !important;
	right: 20px !important;
	left: auto !important;
	z-index: 50 !important;
}

/* NYILAK – fix középen */
.webro-lightbox-prev,
.webro-lightbox-next {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;

	width: 56px !important;
	height: 56px !important;

	display: flex !important;
	align-items: center !important;
	justify-content: center !important;

	background: rgba(0,0,0,0.5) !important;
	color: #fff !important;

	border-radius: 999px !important;
	z-index: 40 !important;
}

/* BAL */
.webro-lightbox-prev {
	left: 20px !important;
}

/* JOBB – EZ HIÁNYZIK NÁLAD */
.webro-lightbox-next {
	right: 20px !important;
}

/* ===== ALSÓ THUMBS CLEAN ===== */

/* wrapper */
.webro-lightbox-thumbs-wrap {
	display: block !important;
}

/* NAV GOMBOK KIKAPCS */
[data-webro-lightbox-strip-prev],
[data-webro-lightbox-strip-next] {
	display: none !important;
}

/* viewport full width */
.webro-lightbox-thumbs-viewport {
	overflow: hidden !important;
	width: 100% !important;
}

/* strip */
.webro-lightbox-thumbs {
	display: flex !important;
	gap: 10px !important;
	overflow-x: auto !important;
	padding: 10px 0 !important;
}

/* thumb */
.webro-lightbox-thumb {
	width: 80px !important;
	height: 60px !important;
	border-radius: 10px !important;
	overflow: hidden !important;
	opacity: 0.7 !important;
}

/* aktív */
.webro-lightbox-thumb.is-active {
	opacity: 1 !important;
	outline: 2px solid #2bb3b1 !important;
}

/* kép */
.webro-lightbox-thumb img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

/* újra gondolva */
/* =========================================
   WEBRO HERO THUMBS + LIGHTBOX CLEAN FIX
   ========================================= */

/* HERO thumbs viewport */
.webro-hero-thumbs-viewport {
	width: 100%;
	overflow: hidden;
	min-width: 0;
}

/* HERO thumbs sor */
.webro-hero-thumbs {
	display: flex;
	align-items: stretch;
	gap: 12px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	transform: none !important;
	will-change: auto;
}

.webro-hero-thumbs::-webkit-scrollbar {
	display: none;
}

/* HERO thumb */
.webro-hero-thumb {
	flex: 0 0 calc((100% - 48px) / 5);
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
}

.webro-hero-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* aktív hero thumb */
.webro-hero-thumb.is-active {
	outline: 2px solid rgba(255,255,255,0.9);
	outline-offset: 0;
}

/* HERO nav gombok */
.webro-strip-nav {
  position: relative;
  z-index: 3;
  width: 48px;
  height: 48px;
  padding: 0 !important;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 8px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #1aa39a00 !important;
  color: #826f0c !important;
  box-shadow: none !important;
  text-transform: none !important;
  font: inherit !important;
    line-height: inherit;
  line-height: 1 !important;
  cursor: pointer;
  flex: 0 0 auto;
}

.webro-strip-nav span {
	line-height: 1;
	font-size: 24px;
}

/* LIGHTBOX close fix */
.webro-lightbox-close {
	position: absolute !important;
	top: 20px !important;
	right: 20px !important;
	left: auto !important;
	z-index: 999 !important;

	width: 44px;
	height: 44px;
	padding: 0 !important;
	min-height: 0 !important;
	border: 0 !important;
	border-radius: 8px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: #c8a96a !important;
	color: #1a1a1a !important;
	box-shadow: none !important;
	text-transform: none !important;
	font: inherit !important;
	line-height: 1 !important;
	cursor: pointer;
}

/* LIGHTBOX nyilak */
.webro-lightbox-nav {
	width: 48px;
	height: 48px;
	padding: 0 !important;
	min-height: 0 !important;
	border: 0 !important;
	border-radius: 8px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: #c8a96a !important;
	color: #1a1a1a !important;
	box-shadow: none !important;
	text-transform: none !important;
	font: inherit !important;
	line-height: 1 !important;
	cursor: pointer;
}

.webro-lightbox-nav span {
	line-height: 1;
	font-size: 24px;
}

/* LIGHTBOX thumbs */
.webro-lightbox-thumbs-viewport {
	width: 100%;
	overflow: hidden;
	min-width: 0;
}

.webro-lightbox-thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.webro-lightbox-thumbs::-webkit-scrollbar {
	display: none;
}

.webro-lightbox-thumb {
	flex: 0 0 84px;
	width: 84px;
	height: 60px;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	box-sizing: border-box;
	background: #fff;
}

.webro-lightbox-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.webro-lightbox-thumb.is-active {
	outline: 2px solid rgba(255,255,255,0.9);
	outline-offset: 0;
}

/* opcionális: lightbox alsó nav elrejtése, ha nem kell */
[data-webro-lightbox-strip-prev],
[data-webro-lightbox-strip-next] {
	display: none !important;
}

/* mobil */
@media (max-width: 767px) {
	.webro-hero-thumb {
		flex: 0 0 calc((100% - 24px) / 3);
	}

	.webro-strip-nav,
	.webro-lightbox-nav {
		width: 42px;
		height: 42px;
	}

	.webro-lightbox-close {
		top: 12px !important;
		right: 12px !important;
		width: 40px;
		height: 40px;
	}

	.webro-lightbox-thumb {
		flex: 0 0 70px;
		width: 70px;
		height: 50px;
	}
}

/* Ajánlatkérő sidebar színek */
/* =========================
   BOOKING CARD – CORE STYLE
========================= */

.webro-booking-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* =========================
   FIELD
========================= */

.webro-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.webro-field label {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

/* INPUT + SELECT */
.webro-field input,
.webro-field select {
    height: 46px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d6dddd;
    background: #ffffff;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    transition: all 0.2s ease;
}

/* FOCUS */
.webro-field input:focus,
.webro-field select:focus {
    border-color: #1f6b66;
    box-shadow: 0 0 0 2px rgba(31,107,102,0.15);
}

/* DISABLED */
.webro-field input:disabled {
    background: #f1f3f3;
    cursor: not-allowed;
}

/* =========================
   BUTTON RESET (Woodmart kill)
========================= */

.webro-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* =========================
   PRIMARY CTA (MAIN)
========================= */

.webro-btn-primary {
    background: #1f6b66;
    color: #ffffff;
}

.webro-btn-primary:hover {
    background: #15504c;
    transform: translateY(-1px);
}

/* =========================
   SECONDARY CTA
========================= */

.webro-btn-secondary {
    background: #eef2f2;
    color: #1f6b66;
    border: 1px solid #d6dddd;
}

.webro-btn-secondary:hover {
    background: #e3e8e8;
}


/* =========================
   CTA WRAPPER
========================= */

.webro-booking-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================
   FEEDBACK
========================= */

.webro-booking-feedback {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 6px;
    display: none;
}

.webro-booking-feedback.error {
    display: block;
    background: #fff1f1;
    color: #b91c1c;
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 768px) {
    .webro-booking-cta {
        flex-direction: row;
    }

    .webro-booking-cta .webro-btn {
        flex: 1;
    }
}


.webro-btn-tertiary:hover {
    background: #d4ebe8;
}
.webro-booking-cta {
    display: flex;
    gap: 12px;
}

.webro-booking-cta > * {
    flex: 1; 
}


.webro-booking-cta a {
    text-decoration: none;
}
.webro-booking-cta {
    display: flex;
    gap: 12px;
}

.webro-booking-cta > * {
    flex: 1;
}



.webro-booking-cta a {
    text-decoration: none;
}

.webro-booking-cta {
    display: flex !important;
    gap: 12px !important;
}

.webro-booking-cta > button,
.webro-booking-cta > a {
    flex: 1 1 0% !important;
    width: 100% !important;
    max-width: 100% !important;
}


/* =========================
   CTA SYSTEM (CLEAN HIERARCHY)
========================= */

/* BASE */
.webro-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* =========================
   1. PRIMARY (🔥 fő CTA)
========================= */

.webro-btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 8px 20px rgba(34,197,94,0.35);
}

.webro-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(34,197,94,0.45);
}

/* =========================
   2. SECONDARY (ajánlat)
========================= */

.webro-btn-secondary {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #d1d5db;
}

.webro-btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

/* =========================
   3. TERTIARY (telefon)
========================= */



.webro-btn-tertiary:hover {
    background: rgba(31,107,102,0.08);
}

/* =========================
   CTA WRAPPER
========================= */

.webro-booking-cta {
    display: flex;
    gap: 12px;
}

.webro-booking-cta > * {
    flex: 1;
}

/* =========================
   DISABLED PRIMARY
========================= */

.webro-btn-primary:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    box-shadow: none;
    cursor: not-allowed;
}
/* =========================
   CTA SYSTEM – FINAL (BRAND)
========================= */

/* BASE */
.webro-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* =========================
   1. PRIMARY – IDŐPONT
========================= */

.webro-btn-primary {
    background: #1f6b66;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(31,107,102,0.25);
}

.webro-btn-primary:hover {
    background: #15504c;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(31,107,102,0.35);
}

/* =========================
   2. SECONDARY – AJÁNLAT
========================= */

.webro-btn-secondary {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #d6dddd;
}

.webro-btn-secondary:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

/* =========================
   3. TERTIARY – HÍVÁS (EZ MARAD)
========================= */


.webro-btn-tertiary:hover {
    background: #d4ebe8;
}

/* =========================
   CTA WRAPPER
========================= */

.webro-booking-cta {
    display: flex;
    gap: 12px;
}

.webro-booking-cta > * {
    flex: 1;
}
/* =========================
   FINAL CTA FIX (NE ÍRD FELÜL TÖBBET)
========================= */

/* PRIMARY – időpont ellenőrzés */
.webro-btn-primary {
    background: #1f6b66 !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: none !important;
}

/* AJÁNLATKÉRÉS */
.webro-btn-secondary {
    background: #ffffff !important;
    color: #1f2937 !important;
    border: 1px solid #d1d5db !important;
}


.webro-btn-secondary {
  background: #38747de5 !important;
  color: #fff !important;
  border: 1px solid #d1d5db !important;
}
.webro-hero-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  background: #f9eee0;
}
/* =========================
   PREMIUM PULSE – CTA BOOST
========================= */

@keyframes webro-pulse-soft {
    0% {
        box-shadow: 0 0 0 0 rgba(31,107,102,0.35);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(31,107,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(31,107,102,0);
    }
}

/* 🔥 fő CTA (foglalás) */
.webro-btn-primary {
    animation: webro-pulse-soft 2.4s infinite;
}
.webro-booking-cta a.webro-btn-tertiary {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  height: 48px !important;
  border-radius: 8px;
  background: #f49213;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.webro-btn-tertiary:hover {
  animation: none;
}

/* 🔥 HÍVÁS MOST (finomabb, prémium) */
.webro-btn-tertiary {
    animation: webro-pulse-soft 3s infinite;
}
.webro-btn-primary:hover,
.webro-btn-tertiary:hover {
    animation: none;
}
/* =========================
   FORCE PULSE FIX
========================= */

#booking-continue-btn.webro-btn-primary.webro-book-now {
    animation: webro-pulse 2.5s infinite !important;
}
@keyframes webro-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
    70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
/* =========================
   GLOBAL PULSE FIX
========================= */

.webro-book-now {
    animation: webro-pulse 2.5s infinite !important;
}
/*.webro-btn {
    all: unset;
}*/
/*
.webro-lightbox-caption {
	margin-top: 10px;
	padding: 12px 16px;
	background: rgba(0,0,0,0.6);
	backdrop-filter: blur(6px);
	color: #fff;
	border-radius: 10px;
	font-size: 14px;
	line-height: 1.4;
	max-width: 600px;
	margin-inline: auto;
	text-align: center;
	transition: opacity .2s ease;
}
*/
/* ===============================
   WOW LIGHTBOX – premium UX
   =============================== */

.webro-lightbox-backdrop {
    background:
        radial-gradient(circle at center, rgba(18, 35, 70, 0.45) 0%, rgba(4, 10, 20, 0.92) 70%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.webro-lightbox-dialog {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: webroLightboxZoomIn .35s ease;
}

@keyframes webroLightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.webro-lightbox-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.webro-lightbox-image {
    max-width: min(920px, 88vw);
    max-height: 72vh;
    width: auto;
    height: auto;
    border-radius: 18px;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.55),
        0 8px 24px rgba(0, 0, 0, 0.35);
    transition: transform .35s ease, box-shadow .35s ease;
    will-change: transform;
}

.webro-lightbox-image:hover {
    transform: scale(1.015);
    box-shadow:
        0 36px 100px rgba(0, 0, 0, 0.62),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.webro-lightbox-bottom {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.webro-lightbox-counter {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.04em;
}

.webro-lightbox-caption {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: min(700px, 86vw);
    padding: 10px 18px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.webro-lightbox-nav {
    background: rgba(212, 175, 55, 0.92);
    color: #111;
    border: 0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.webro-lightbox-nav:hover {
    transform: scale(1.08);
    background: #e2bf5e;
    box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}

.webro-lightbox-close {
    background: rgba(212, 175, 55, 0.92);
    color: #111;
    border: 0;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.webro-lightbox-close:hover {
    transform: scale(1.06);
    background: #e2bf5e;
    box-shadow: 0 14px 28px rgba(0,0,0,0.28);
}

.webro-lightbox-thumbs-wrap {
    margin-top: 8px;
}

.webro-lightbox-thumb {
    opacity: 0.58;
    transform: scale(0.96);
    transition: transform .22s ease, opacity .22s ease, box-shadow .22s ease;
    border-radius: 12px;
    overflow: hidden;
}

.webro-lightbox-thumb:hover {
    opacity: 1;
    transform: scale(1);
}

.webro-lightbox-thumb.is-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.95), 0 10px 24px rgba(0,0,0,0.25);
}

.webro-lightbox-thumb img {
    border-radius: 12px;
}

@media (max-width: 767px) {
    .webro-lightbox-image {
        max-width: 92vw;
        max-height: 58vh;
        border-radius: 14px;
    }

    .webro-lightbox-caption {
        max-width: 90vw;
        padding: 9px 14px;
        font-size: 13px;
        border-radius: 16px;
    }

    .webro-lightbox-bottom {
        gap: 8px;
        margin-top: 10px;
    }
}
/* =========================================================
   ROOM SINGLE – FINAL LAYOUT PATCH
   Ezt a meglévő frontend.css LEGALJÁRA tedd.
   ========================================================= */

/* ---------- Outer structure ---------- */

.webro-room-single {
    padding-top: 28px;
}

.webro-room-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 380px);
    gap: 32px;
    align-items: start;
    margin-top: 28px;
}

.webro-room-main {
    min-width: 0;
}

.webro-room-sidebar {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* fontos: a sidebar együtt görgessen az oldallal */


.webro-room-sidebar .container,
.webro-room-sidebar .webro-booking .container {
    max-width: none;
    width: 100%;
    padding: 0 !important;
    margin: 0;
}

/* a régi sticky törlés */
.webro-sidebar {
    position: static !important;
    top: auto !important;
}

.webro-booking-wrapper,
.webro-booking-card {
    position: static !important;
    top: auto !important;
}

/* ---------- Content spacing ---------- */

.webro-content-section {
    margin-top: 22px;
}
.webro-sidebar-section {
	margin-top:15px;
}




.webro-card h2,
.webro-card h3,
.webro-card h4 {
    margin-top: 0;
    margin-bottom: 14px;
    line-height: 1.2;
    color: #0f172a;
}

.webro-card h2 {
    font-size: 28px;
}

.webro-card h3 {
    font-size: 22px;
}

.webro-card h4 {
    font-size: 17px;
}
/*
.webro-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    font-size: 18px;
    line-height: 1.75;
    color: #0f172a;
}*/
.webro-intro {
  background: linear-gradient(180deg, #ffffffe5 0%, #f8fafc00 100%);
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  font-size: 18px;
  line-height: 1.75;
  color: #0f172a;
}

.webro-richtext p:last-child,
.webro-location-intro p:last-child {
    margin-bottom: 0;
}

.webro-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.webro-tight-grid {
    gap: 16px;
}

/* ---------- Features ---------- */

/*
.webro-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
*/
.webro-feature-grid {
  display: block;
}



.webro-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(42, 123, 155, 0.12);
    color: #2a7b9b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 26px;
}


/* ---------- Checklist / layout ---------- */

.webro-check-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webro-check-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
}

.webro-check-line-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 24px;
}

/* ---------- Services ---------- */

.webro-service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.webro-service-item {
    padding: 5px 0;
    border-bottom: 1px solid #e2e8f0;
}

.webro-service-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.webro-service-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.webro-service-meta {
    color: #64748b;
    font-size: 14px;
    white-space: nowrap;
}

.webro-service-desc {
    margin-top: 6px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- House rules ---------- */

.webro-rule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.webro-rule-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
}

.webro-rule-label {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 6px;
}

.webro-rule-value {
    color: #0f172a;
    font-weight: 600;
    line-height: 1.5;
}

/* ---------- Soft cards ---------- */

.webro-soft-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.webro-soft-label {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 6px;
}

.webro-soft-value {
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
}

.webro-subsection {
    margin-top: 18px;
}

.webro-subline + .webro-subline {
    margin-top: 14px;
}

/* ---------- Chips ---------- */

.webro-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.webro-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #334155;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    border: 1px solid #dbeafe;
}

/* ---------- Location ---------- */

.webro-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 20px;
    align-items: start;
}

.webro-location-map {
    min-height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.webro-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.webro-location-places h4 {
    margin-top: 0;
}

.webro-place-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.webro-place-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.webro-place-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.webro-place-name {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.webro-place-meta {
    color: #64748b;
    font-size: 14px;
}

/* ---------- FAQ ---------- */

.webro-faq-list details {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    padding: 14px 16px;
}

.webro-faq-list details + details {
    margin-top: 12px;
}

.webro-faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #0f172a;
}

.webro-faq-list summary::-webkit-details-marker {
    display: none;
}

/* ---------- Program cards ---------- */

.webro-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.webro-program-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.webro-program-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.webro-program-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webro-program-body {
    padding: 14px;
}

.webro-program-body h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.webro-program-body h4 a {
    color: #0f172a;
    text-decoration: none;
}

.webro-program-body p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Sidebar ---------- */

.webro-sidebar-card {
    padding: 18px;
}

.webro-sidebar-title {
    margin-bottom: 12px;
}

.webro-sidebar-badge-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webro-sidebar-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
}

.webro-sidebar-check {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 20px;
    margin-top: 1px;
}

.webro-sidebar-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.webro-sidebar-highlight-list li {
    position: relative;
    padding-left: 14px;
    color: #334155;
}

.webro-sidebar-highlight-list li + li {
    margin-top: 8px;
}

.webro-sidebar-highlight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2a7b9b;
}

/* ---------- Booking in sidebar ---------- */

.webro-room-sidebar .webro-booking {
    margin-top: 0;
}

.webro-room-sidebar .webro-booking-card {
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
}

/* ---------- Empty states ---------- */

.webro-empty-state {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 16px;
    color: #64748b;
    font-size: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
    .webro-room-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .webro-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .webro-room-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 22px;
    }

    /* hero marad felül, sidebar jön alá, content elé */
    .webro-room-sidebar {
        order: -1;
    }

    .webro-grid-2,
    .webro-location-grid,
    .webro-rule-grid,
    .webro-feature-grid {
        grid-template-columns: 1fr;
    }

    .webro-program-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .webro-container {
        padding: 14px;
    }

    .webro-card,
    .webro-intro {
        padding: 18px;
    }

    .webro-card h2 {
        font-size: 24px;
    }

    .webro-card h3 {
        font-size: 20px;
    }

    .webro-service-top {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================
   TOP GRID (HERO + SIDEBAR)
   ========================================= */

.webro-top-grid {
    display: grid;
    /*grid-template-columns: minmax(0, 2fr) minmax(320px, 380px);*/
	grid-template-columns: minmax(0, 2fr) 360px;
    gap: 15px;
    align-items: start !important;
}

/* HERO ne legyen full width */
.webro-hero {
    margin: 0 !important;
}

/* =========================================
   SIDEBAR STICKY
   ========================================= */

.webro-room-sidebar {
    height: fit-content; 
}
.webro-booking-feedback {
    min-height: 120px; /* ne ugorjon össze */
}
/*
.webro-sidebar-sticky {
    position: sticky;
    top: 120px;  
    display: flex;
    flex-direction: column;
    gap: 16px;
}
*/

.webro-top-grid,
.webro-top-main,
.webro-room-sidebar {
    overflow: visible !important;
}
/* =========================================
   CONTENT FULL WIDTH (RÓLUNK MONDTÁK UTÁN)
   ========================================= */

.webro-content-full {
    margin-top: 32px;
}

/* =========================================
   FAQ 2 OSZLOP
   ========================================= */

.webro-faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.webro-faq-list details {
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #fff;
    padding: 16px;
    transition: all 0.2s ease;
}

.webro-faq-list details[open] {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.webro-faq-list summary {
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
}

/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 1024px) {

    .webro-top-grid {
        grid-template-columns: 1fr;
    }

    /* sidebar HERO alá */
    .webro-room-sidebar {
        order: 2;
    }

    .webro-top-main {
        order: 1;
    }

  
    .webro-faq-list {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   ROOM SINGLE – FINAL STRUCTURE
   ========================================================= */

.webro-room-single {
    padding-top: 28px;
}


.webro-top-main {
    min-width: 0;
}

.webro-room-sidebar {
    min-width: 0;
    align-self: start;
}

.webro-sidebar-sticky {
    position: sticky;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.webro-content-full {
    margin-top: 32px;
}

.webro-content-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ---------- Cards ---------- */

.webro-card {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
  }

.webro-card h2,
.webro-card h3,
.webro-card h4 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #0f172a;
    line-height: 1.2;
}

.webro-card h2 { font-size: 28px; }
.webro-card h3 { font-size: 22px; }
.webro-card h4 { font-size: 17px; }

.webro-intro {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    font-size: 18px;
    line-height: 1.75;
    color: #0f172a;
}

.webro-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.webro-tight-grid {
    gap: 16px;
}

/* ---------- Features ---------- */
/*
.webro-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
*/
/*
.webro-feature-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    min-height: 54px;
}
*/

.webro-feature-grid {
  display: block;
}

.webro-feature-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  /*background: #f8fafc4f;*/
  border: 0px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px 10px;
  min-height: 40px;
}

.webro-feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: rgba(42, 123, 155, 0.12);
    color: #2a7b9b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 26px;
}

.webro-feature-text {
    color: #1e293b;
    font-size: 16px;
    line-height: 1.4;
}

/* ---------- Checklist ---------- */

.webro-check-lines {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webro-check-line span {
  font-size:16px;
}

.webro-check-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #334155;
}

.webro-check-line-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 24px;
}

/* ---------- Services ---------- */

.webro-service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.webro-service-item {
    padding: 5px 0;
    border-bottom: 1px solid #e2e8f0;
}

.webro-service-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.webro-service-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.webro-service-meta {
    color: #64748b;
    font-size: 14px;
    white-space: nowrap;
}

.webro-service-desc {
    margin-top: 6px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Rules ---------- */

.webro-rule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.webro-rule-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px;
}

.webro-rule-label {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 6px;
}

.webro-rule-value {
    color: #0f172a;
    font-weight: 600;
    line-height: 1.5;
}

/* ---------- Soft cards ---------- */

.webro-soft-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px;
}

.webro-soft-label {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 6px;
}

.webro-soft-value {
    color: #0f172a;
    font-size: 20px;
    font-weight: 700;
}

.webro-subsection {
    margin-top: 18px;
}

.webro-subline + .webro-subline {
    margin-top: 14px;
}

/* ---------- Chips ---------- */

.webro-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.webro-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #334155;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    border: 1px solid #dbeafe;
}

/* ---------- Location ---------- */

.webro-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
    gap: 20px;
    align-items: start;
}

.webro-location-map {
    min-height: 350px;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.webro-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

.webro-location-places h4 {
    margin-top: 0;
}

.webro-place-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.webro-place-item {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.webro-place-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.webro-place-name {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.webro-place-meta {
    color: #64748b;
    font-size: 14px;
}

/* ---------- FAQ ---------- */

.webro-faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.webro-faq-list details {
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #fff;
    padding: 16px;
    transition: box-shadow .2s ease, border-color .2s ease;
}

.webro-faq-list details[open] {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.webro-faq-list summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.webro-faq-list summary::-webkit-details-marker {
    display: none;
}

.webro-faq-answer {
    padding-top: 8px;
    border-top: 1px solid #eef2f7;
    color: #475569;
}

/* ---------- Programs ---------- */

.webro-program-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.webro-program-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.webro-program-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.webro-program-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.webro-program-body {
    padding: 14px;
}

.webro-program-body h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.webro-program-body h4 a {
    color: #0f172a;
    text-decoration: none;
}

.webro-program-body p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
}

/* ---------- Sidebar ---------- */

.webro-sidebar-card {
  
  padding: 18px;
  margin-bottom: 10px;
}

.webro-sidebar-title {
    margin-bottom: 12px;
}

.webro-sidebar-badge-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webro-sidebar-badge-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 14px;
}

.webro-sidebar-check {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 20px;
    margin-top: 1px;
}

.webro-sidebar-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.webro-sidebar-highlight-list li {
    position: relative;
    padding-left: 14px;
    color: #334155;
}

.webro-sidebar-highlight-list li + li {
    margin-top: 8px;
}

.webro-sidebar-highlight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2a7b9b;
}

/* ---------- Booking cleanup ---------- */

.webro-room-sidebar .webro-booking {
    margin-top: 0;
}

.webro-room-sidebar .webro-booking .container {
    max-width: none;
    width: 100%;
    padding: 0 !important;
    margin: 0;
}

.webro-room-sidebar .webro-booking-wrapper {
    position: static !important;
    top: auto !important;
}

.webro-room-sidebar .webro-booking-card {
    position: static !important;
    top: auto !important;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
}

/* ---------- Empty ---------- */

.webro-empty-state {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    padding: 16px;
    color: #64748b;
    font-size: 14px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
    .webro-top-grid {
        grid-template-columns: minmax(0, 1fr) 340px;
    }

    .webro-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .webro-top-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .webro-room-sidebar {
        order: 2;
    }

  
    .webro-grid-2,
    .webro-location-grid,
    .webro-rule-grid,
    .webro-feature-grid,
    .webro-faq-list {
        grid-template-columns: 1fr;
    }

    .webro-program-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .webro-container {
        padding: 14px;
    }

    .webro-card,
    .webro-intro {
        padding: 18px;
    }

    .webro-card h2 {
        font-size: 24px;
    }

    .webro-card h3 {
        font-size: 20px;
    }

    .webro-service-top {
        flex-direction: column;
        align-items: flex-start;
    }
}
.webro-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 15px;
}


/* maga a kártya fix szélesség */
.webro-sidebar-sticky {
    width: 100%;
    max-width: 360px;
}


.webro-card h3 {
  font-size: 23px;
  border-bottom: 2px solid #8080803d;
}
.webro-richtext {
  font-size: 16px;
  color: #334155;
}
.webro-service-top {
  font-size: 16px;
}
.webro-service-meta {
  color: #64748b;
  font-size: 15px;
  white-space: nowrap;
}
.webro-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  overflow: hidden;

  /* base shadow */
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);

  /* subtle border */
  border: 1px solid rgba(0,0,0,0.04);

  transition: all 0.3s ease;
}

/* ✨ GRADIENT OVERLAY (nem tolakodó) */
.webro-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.08) 0%,
    rgba(255,255,255,0) 40%,
    rgba(180,150,46,0.06) 100%
  );

  opacity: 0.6;
  pointer-events: none;
}

.webro-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient( 120deg, rgba(255, 235, 168, 0.06), transparent, rgba(212,175,55,0.15) );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
/* ✨ EDGE GLOW (premium hatás) 
.webro-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;

  background: linear-gradient(
    120deg,
    rgba(212,175,55,0.25),
    transparent,
    rgba(212,175,55,0.15)
  );
*/
  opacity: 0;
  transition: opacity 0.3s ease;

  z-index: 0;
}

/* 🚀 HOVER STATE */
.webro-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15) !important;
}

.webro-card:hover::after {
  opacity: 1;
}
.webro-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
 /*   border: 1px solid rgba(15, 23, 42, 0.06);*/
    border: 1px solid rgba(169, 117, 18, 0.71) !important;
	/*border: 1px solid rgba(158, 91, 19, 0.77);*/
}
.webro-soft-value {
  color: #0f172a;
  font-size: 17px;
  font-weight: 600;
}
.webro-soft-card {
  font-size: 16px;
}
.webro-top-grid {
    align-items: flex-start;
}

.webro-room-sidebar {
    align-self: flex-start;
}

.webro-sidebar-sticky {
    position: sticky;
    top: 120px;
}
/* innen */
.webro-hero-thumbs-viewport {
    overflow: hidden;
    position: relative;
}

.webro-hero-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;

    overflow-x: auto;
    scroll-behavior: smooth;

    -webkit-overflow-scrolling: touch;
}

/* fontos: ne zsugorodjanak */
.webro-hero-thumb {
    flex: 0 0 auto;
}

/* opcionális: scrollbar elrejtés */
.webro-hero-thumbs::-webkit-scrollbar {
    display: none;
}
.webro-hero-thumbs {
    scrollbar-width: none;
}
/* ===== SIDEBAR STICKY – FINAL FIX ===== */

/* 1
.webro-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 15px;
    align-items: start;
    overflow: visible !important;
}
*/
.webro-top-main {
    min-width: 0;
    overflow: visible !important;
}
/* 2
.webro-room-sidebar {
    min-width: 0;
    align-self: start;
    overflow: visible !important;
}
*/
.webro-sidebar-sticky {
    position: sticky !important;
    top: 120px;
    align-self: start;
}

.webro-room-sidebar .container,
.webro-room-sidebar .webro-booking .container,
.webro-room-sidebar .webro-booking-wrapper {
    overflow: visible !important;
}

/* mobilon ne legyen sticky */
@media (max-width: 1024px) {
    .webro-top-grid {
        grid-template-columns: 1fr;
    }

    .webro-sidebar-sticky {
        position: static !important;
        top: auto !important;
    }
}
/* ===== DEBUG STICKY FIX ===== */

/* MINDEN parent legyen visible */
.webro-top-grid,
.webro-top-main,
.webro-room-sidebar,
.webro-room-single,
.webro-container {
    overflow: visible !important;
}

/* sticky elem */
.webro-sidebar-sticky {
    position: sticky !important;
    top: 120px !important;
}
/* ===== STICKY SIDEBAR FINAL FIX ===== */

.webro-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 15px;
    align-items: stretch !important; /* fontos */
}

.webro-top-main {
    min-width: 0;
}

.webro-room-sidebar {
    min-width: 0;
    display: block !important;
    align-self: stretch !important; /* fontos */
}

.webro-sidebar-sticky {
    position: sticky !important;
    top: 120px !important;
    align-self: start;
}

/* ha bármi wrapper szórakozik */
.webro-top-grid,
.webro-top-main,
.webro-room-sidebar,
.webro-sidebar-sticky {
    overflow: visible !important;
}

@media (max-width: 1024px) {
    .webro-top-grid {
        grid-template-columns: 1fr;
    }

    .webro-room-sidebar {
        align-self: auto !important;
    }

    .webro-sidebar-sticky {
        position: static !important;
        top: auto !important;
    }
}

.webro-room-sidebar {
    overflow: visible;
}

.webro-booking-wrapper {
    overflow: visible;
}

.container {
    overflow: visible;
}
.webro-top-grid {
    align-items: start;
}
.webro-sidebar-sticky {
    position: sticky;
    top: 120px;

    max-height: calc(100vh - 140px);
    overflow-y: auto;

    padding-right: 5px; /* scrollbar ne vágjon bele */
}