

/* ================= 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.95;
    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 */


/* 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-icon-jacuzzi {
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url('/wp-content/plugins/foglalaskezelo/ikonok/jacuzzi.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.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-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;
}

.webro-hero-inner {
    background: rgba(0,0,0,0.35) !important;
    backdrop-filter: blur(2px) !important;
    border-radius: 16px;
	padding: 10px;
	max-width: none !important;
    margin: 0 !important;
    width: 100%;
	position: relative;
	}


/* 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;
}

/* ===== 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-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-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;
}


/* 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;
}


/* =========================================
   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 */
}
/* =========================
   PROGRAMAJÁNLÓ
========================= */

.webro-program-section {
    border: 1px solid rgba(198, 164, 108, 0.55);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%);
}

.webro-program-section:hover {
    transform: none;
}

.webro-program-head {
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.12);
}

.webro-program-head h3 {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.2;
    color: #1f2937;
}

.webro-program-head p {
    max-width: 980px;
    margin: 0;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.65;
}

.webro-program-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.webro-program-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.10);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.webro-program-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 164, 108, 0.55);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.webro-program-thumb {
    position: relative;
    display: block;
    height: 175px;
    overflow: visible;
    text-decoration: none;
    background: #f5efe4;
}

.webro-program-thumb img {
    width: 100%;
    height: 175px;
    display: block;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    transition: transform 0.35s ease;
}

.webro-program-card:hover .webro-program-thumb img {
    transform: scale(1.04);
}

.webro-program-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 175px;
    color: #9a7844;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #f7efe2 0%, #fff9ef 100%);
}

.webro-program-badge {
    position: absolute;
    left: 16px;
    bottom: -17px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    max-width: calc(100% - 32px);
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff4df;
    color: #b68132;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.webro-program-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 34px 22px 22px;
}

.webro-program-body h4 {
    margin: 0 0 14px;
    font-size: 20px;
    line-height: 1.28;
    color: #1f2937;
}

.webro-program-body h4 a {
    color: inherit;
    text-decoration: none;
}

.webro-program-body h4 a:hover {
    color: #b68132;
}

.webro-program-body h4::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 14px;
    background: #c6a46c;
}

.webro-program-body p {
    margin: 0 0 22px;
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.65;
}

.webro-program-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: #b68132;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.webro-program-cta span {
    transition: transform 0.2s ease;
}

.webro-program-cta:hover {
    color: #8f6424;
}

.webro-program-cta:hover span {
    transform: translateX(4px);
}

/* Tablet */
@media (max-width: 1180px) {
    .webro-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobil */
@media (max-width: 640px) {
    .webro-program-section {
        border-radius: 14px;
        padding: 20px;
    }

    .webro-program-head h3 {
        font-size: 22px;
    }

    .webro-program-head p {
        font-size: 15px;
    }

    .webro-program-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .webro-program-thumb,
    .webro-program-thumb img,
    .webro-program-placeholder {
        height: 190px;
    }

    .webro-program-body {
        padding: 34px 18px 20px;
    }

    .webro-program-body h4 {
        font-size: 19px;
    }
}
/* =========================================================
   PROGRAMAJÁNLÓ – FINAL CARD DESIGN
   ========================================================= */

.webro-program-section {
    border: 1px solid rgba(169, 117, 18, 0.71) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%) !important;
    overflow: visible !important;
}

.webro-program-section:hover {
    transform: none !important;
}

.webro-program-section .webro-program-head {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.12);
}

.webro-program-section .webro-program-head h3 {
    margin: 0 0 10px !important;
    padding: 0 !important;
    border-bottom: 0 !important;
    font-size: 26px !important;
    line-height: 1.2;
    color: #0f172a;
}

.webro-program-section .webro-program-head p {
    max-width: 980px;
    margin: 0;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.65;
}

.webro-program-section .webro-program-grid {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.webro-program-section .webro-program-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.10);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.webro-program-section .webro-program-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 164, 108, 0.65);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.webro-program-section .webro-program-thumb {
    position: relative;
    display: block;
    height: 175px !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
    background: #f5efe4;
    text-decoration: none !important;
}

.webro-program-section .webro-program-thumb img {
    width: 100% !important;
    height: 175px !important;
    display: block;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    transition: transform 0.35s ease;
}

.webro-program-section .webro-program-card:hover .webro-program-thumb img {
    transform: scale(1.04);
}

.webro-program-section .webro-program-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 175px;
    color: #9a7844;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #f7efe2 0%, #fff9ef 100%);
}

.webro-program-section .webro-program-badge {
    position: absolute;
    left: 16px;
    bottom: -17px;
    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    max-width: calc(100% - 32px);
    padding: 8px 14px;

    border-radius: 999px;
    background: #fff4df;
    color: #b68132;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.webro-program-section .webro-program-badge-icon {
    width: 17px;
    height: 17px;
    object-fit: contain;
    flex: 0 0 17px;
    display: block;
}

.webro-program-section .webro-program-badge-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 999px;
    background: #c6a46c;
}

.webro-program-section .webro-program-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 34px 22px 22px !important;
}

.webro-program-section .webro-program-body h4 {
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 20px !important;
    line-height: 1.28;
    color: #0f172a;
}

.webro-program-section .webro-program-body h4 a {
    color: inherit;
    text-decoration: none !important;
}

.webro-program-section .webro-program-body h4 a:hover {
    color: #b68132;
}

.webro-program-section .webro-program-body h4::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 14px;
    background: #c6a46c;
}

.webro-program-section .webro-program-body p {
    margin: 0 0 22px !important;
    color: #5f6b7a;
    font-size: 15px !important;
    line-height: 1.65;
}

.webro-program-section .webro-program-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;

    color: #b68132;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
}

.webro-program-section .webro-program-cta span {
    transition: transform 0.2s ease;
}

.webro-program-section .webro-program-cta:hover {
    color: #8f6424;
}

.webro-program-section .webro-program-cta:hover span {
    transform: translateX(4px);
}

@media (max-width: 1180px) {
    .webro-program-section .webro-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .webro-program-section {
        border-radius: 14px !important;
        padding: 20px !important;
    }

    .webro-program-section .webro-program-head h3 {
        font-size: 22px !important;
    }

    .webro-program-section .webro-program-head p {
        font-size: 15px;
    }

    .webro-program-section .webro-program-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .webro-program-section .webro-program-thumb,
    .webro-program-section .webro-program-thumb img,
    .webro-program-section .webro-program-placeholder {
        height: 190px !important;
    }

    .webro-program-section .webro-program-body {
        padding: 34px 18px 20px !important;
    }

    .webro-program-section .webro-program-body h4 {
        font-size: 19px !important;
    }
}

/** végére */
/* =========================================================
   PROGRAMAJÁNLÓ – FINAL V3
   ========================================================= */

.webro-program-section {
    border: 1px solid rgba(169, 117, 18, 0.71) !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf8 100%) !important;
    overflow: visible !important;
}

.webro-program-section:hover {
    transform: none !important;
}

.webro-program-section .webro-program-head {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(31, 41, 55, 0.12);
}

.webro-program-section .webro-program-head h3 {
    margin: 0 0 10px !important;
    padding: 0 !important;
    border-bottom: 0 !important;
    font-size: 26px !important;
    line-height: 1.2;
    color: #0f172a;
}

.webro-program-section .webro-program-head p {
    margin: 0 !important;
    max-width: 980px;
    color: #5f6b7a;
    font-size: 16px;
    line-height: 1.65;
}

.webro-program-section .webro-program-grid {
    position: relative;
    z-index: 1;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px !important;
}

.webro-program-section .webro-program-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0;
    height: 100%;
    overflow: hidden !important;
    background: #ffffff;
    border: 1px solid rgba(31, 41, 55, 0.10);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.045);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.webro-program-section .webro-program-card:hover {
    transform: translateY(-4px);
    border-color: rgba(198, 164, 108, 0.65);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.webro-program-section .webro-program-thumb {
    position: relative !important;
    display: block !important;
    height: 175px !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
    background: #f5efe4;
    text-decoration: none !important;
}

.webro-program-section .webro-program-thumb img {
    width: 100% !important;
    height: 175px !important;
    display: block;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    transition: transform 0.35s ease;
}

.webro-program-section .webro-program-card:hover .webro-program-thumb img {
    transform: scale(1.04);
}

.webro-program-section .webro-program-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 175px;
    color: #9a7844;
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(135deg, #f7efe2 0%, #fff9ef 100%);
}

.webro-program-section .webro-program-badge {
    position: absolute !important;
    left: 16px;
    bottom: -17px;
    z-index: 5;

    display: inline-flex !important;
    align-items: center;
    gap: 7px;

    max-width: calc(100% - 32px);
    padding: 8px 14px;

    border-radius: 999px;
    background: #fff4df;
    color: #b68132;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.webro-program-section .webro-program-badge-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.webro-program-section .webro-program-badge-icon svg {
    width: 17px;
    height: 17px;
    display: block;
}

.webro-program-section .webro-program-body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
    padding: 34px 22px 22px !important;
}

.webro-program-section .webro-program-body h4 {
    margin: 0 0 14px !important;
    padding: 0 !important;
    border: 0 !important;
    font-size: 20px !important;
    line-height: 1.28;
    color: #0f172a;
}

.webro-program-section .webro-program-body h4 a {
    color: inherit;
    text-decoration: none !important;
}

.webro-program-section .webro-program-body h4 a:hover {
    color: #b68132;
}

.webro-program-section .webro-program-body h4::after {
    content: "";
    display: block;
    width: 48px;
    height: 2px;
    margin-top: 14px;
    background: #c6a46c;
}

.webro-program-section .webro-program-body p {
    margin: 0 0 22px !important;
    color: #5f6b7a;
    font-size: 15px !important;
    line-height: 1.65;
}

.webro-program-section .webro-program-cta {
    margin-top: auto;
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    width: fit-content;

    color: #b68132 !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
}

.webro-program-section .webro-program-cta span {
    transition: transform 0.2s ease;
}

.webro-program-section .webro-program-cta:hover {
    color: #8f6424 !important;
}

.webro-program-section .webro-program-cta:hover span {
    transform: translateX(4px);
}

@media (max-width: 1180px) {
    .webro-program-section .webro-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .webro-program-section {
        border-radius: 14px !important;
        padding: 20px !important;
    }

    .webro-program-section .webro-program-head h3 {
        font-size: 22px !important;
    }

    .webro-program-section .webro-program-head p {
        font-size: 15px;
    }

    .webro-program-section .webro-program-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .webro-program-section .webro-program-thumb,
    .webro-program-section .webro-program-thumb img,
    .webro-program-section .webro-program-placeholder {
        height: 190px !important;
    }

    .webro-program-section .webro-program-body {
        padding: 34px 18px 20px !important;
    }

    .webro-program-section .webro-program-body h4 {
        font-size: 19px !important;
    }
}
/* =========================================================
   SIDEBAR – KÖZVETLEN FOGLALÁS ELŐNYÖK
   Dinamikus admin lista pipás kártyaként
   ========================================================= */

.webro-sidebar-card .webro-sidebar-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 10px;

    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.webro-sidebar-card .webro-sidebar-highlight-list li {
    position: relative;

    display: flex;
    align-items: center;
    gap: 10px;

    min-height: 44px;
    padding: 10px 12px 10px 44px !important;

    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;

    color: #0f172a;
    font-size: 14px;
    line-height: 1.4;
}

/* régi pötty / bullet felülírása */
.webro-sidebar-card .webro-sidebar-highlight-list li::before {
    content: "✓" !important;

    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;

    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

.webro-sidebar-card .webro-sidebar-highlight-list li + li {
    margin-top: 0 !important;
}
.webro-sidebar-title2 {
  text-align: center;
}
.webro-sidebar-note-card {
    border-color: rgba(180, 122, 34, 0.35);
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
}

.webro-sidebar-note-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.webro-sidebar-note-list li {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px 10px 44px !important;
    border-radius: 12px;
    background: #fffdf8;
    border: 1px solid rgba(180, 122, 34, 0.22);
    color: #0f172a;
    font-size: 14px;
    line-height: 1.4;
}

.webro-sidebar-note-list li::before {
    content: "!";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(180, 122, 34, 0.14);
    color: #b47a22;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}
/* =========================================================
   KINEK AJÁNLOTT – ELEGÁNS LISTA
   ========================================================= */

.webro-rich-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.webro-rich-list li {
    position: relative;
    padding-left: 30px;
    color: #0f172a;
    font-size: 15px;
    line-height: 1.5;
}

.webro-rich-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d6ad62, #b77a25);
    box-shadow: 0 0 0 5px rgba(198, 164, 108, 0.16);
}

.webro-rich-list li::after {
    content: "";
    position: absolute;
    left: 4px;
    top: calc(0.58em + 4px);
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #ffffff;
}
/* =========================================================
   MIÉRT EZT VÁLASZD – PRÉMIUM ELŐNYLISTA
   ========================================================= */

.webro-benefit-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webro-benefit-list li {
    position: relative;

    padding: 11px 14px 11px 46px;

    border-radius: 14px;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    border: 1px solid rgba(198, 164, 108, 0.28);

    color: #172033;
    font-size: 15px;
    line-height: 1.45;

    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
}

.webro-benefit-list li::before {
    content: "✓";

    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    background: linear-gradient(135deg, #d6ad62, #b77a25);
    color: #ffffff;

    font-size: 13px;
    font-weight: 800;
    line-height: 1;

    box-shadow: 0 6px 14px rgba(183, 122, 37, 0.22);
}
/* =========================================================
   KINEK AJÁNLOTT – BUBORÉKOS LISTA
   ========================================================= */

.webro-rich-list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webro-rich-list li {
    position: relative;

    min-height: 42px;
    padding: 10px 14px 10px 46px;

    border-radius: 14px;
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 100%);
    border: 1px solid rgba(198, 164, 108, 0.24);

    color: #0f172a;
    font-size: 15px;
    line-height: 1.45;

    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.035);
}
/*
.webro-rich-list li::before {
    content: "";

    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    border-radius: 999px;
    background: rgba(198, 164, 108, 0.16);
    border: 1px solid rgba(198, 164, 108, 0.28);
}
*/
.webro-rich-list li::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(198, 164, 108, 0.16);
  border: 1px solid rgba(198, 164, 108, 0.28);
}
.webro-rich-list li::after {
    content: "";

    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);

    width: 6px;
    height: 6px;

    border-radius: 999px;
    background: #c08a35;
}

/* új blokk */

/* =========================================================
   Webromedia Room Type - Premium Content Top
   SAFE PATCH: hero alatti felső tartalom
   ========================================================= */

.webro-content-top-section {
  margin-top: 28px;
}

.webro-room-content-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.webro-room-lead {
  position: relative;
  padding: 22px 26px;
  border: 1px solid rgba(174, 139, 84, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 252, 245, 0.96), rgba(248, 240, 225, 0.78));
  box-shadow: 0 18px 50px rgba(52, 43, 31, 0.08);
  color: #5b5144;
  font-size: 17px;
  line-height: 1.75;
}

.webro-room-lead p {
  margin: 0;
}

.webro-room-usp-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.webro-room-usp-card,
.webro-room-premium-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(174, 139, 84, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(212, 174, 112, 0.18), transparent 34%),
    linear-gradient(145deg, #fffaf0, #f7efe2);
  box-shadow:
    0 22px 60px rgba(52, 43, 31, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.webro-room-usp-card {
  padding: 26px;
}

.webro-room-premium-card {
  padding: 30px;
}

.webro-room-usp-card::before,
.webro-room-premium-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #caa160, #f0d9a4, #9f7a3e);
  opacity: 0.9;
}

.webro-room-usp-head,
.webro-room-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.webro-room-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: #9b7438;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.webro-room-usp-head h2,
.webro-room-card-head h2 {
  margin: 0;
  color: #2f2a22;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.webro-room-icon,
.webro-room-usp-icon,
.webro-room-card-icon,
.webro-room-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.webro-room-usp-icon,
.webro-room-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #8a642c;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(239, 222, 189, 0.78));
  box-shadow:
    0 12px 26px rgba(112, 82, 38, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.webro-room-usp-icon svg,
.webro-room-card-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.webro-room-usp-icon img,
.webro-room-card-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.webro-room-list-icon {
  width: 24px;
  height: 24px;
  margin-top: 1px;
  border-radius: 999px;
  color: #8b672f;
  background: rgba(202, 161, 96, 0.16);
}

.webro-room-list-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.webro-room-list-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.webro-room-usp-list,
.webro-room-benefit-list,
.webro-room-bubble-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.webro-room-usp-list,
.webro-room-benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webro-room-usp-list li,
.webro-room-benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #51483c;
  font-size: 15.5px;
  line-height: 1.55;
}

.webro-room-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.webro-room-choice-card {
  background:
    radial-gradient(circle at top left, rgba(212, 174, 112, 0.20), transparent 36%),
    linear-gradient(145deg, #fffaf2, #f8efe0);
}

.webro-room-recommend-card {
  background:
    radial-gradient(circle at top right, rgba(212, 174, 112, 0.18), transparent 36%),
    linear-gradient(145deg, #fffdf8, #f7eddd);
}

.webro-room-premium-card > p {
  margin: 0 0 14px;
  color: #51483c;
  font-size: 16px;
  line-height: 1.7;
}

.webro-room-bubble-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.webro-room-bubble-list li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(174, 139, 84, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: #4b4135;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.25;
  box-shadow: 0 10px 24px rgba(52, 43, 31, 0.06);
}

.webro-room-list--html ul,
.webro-room-list--html ol {
  margin: 0;
  padding-left: 20px;
}

.webro-room-list--html li {
  margin-bottom: 8px;
  color: #51483c;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .webro-room-usp-strip,
  .webro-room-decision-grid {
    grid-template-columns: 1fr;
  }

  .webro-room-usp-card,
  .webro-room-premium-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .webro-content-top-section {
    margin-top: 20px;
  }

  .webro-room-content-top {
    gap: 20px;
  }

  .webro-room-lead {
    padding: 18px;
    border-radius: 20px;
    font-size: 15.5px;
  }

  .webro-room-usp-card,
  .webro-room-premium-card {
    padding: 20px;
    border-radius: 22px;
  }

  .webro-room-usp-head,
  .webro-room-card-head {
    gap: 12px;
  }

  .webro-room-usp-icon,
  .webro-room-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .webro-room-usp-head h2,
  .webro-room-card-head h2 {
    font-size: 22px;
  }

  .webro-room-bubble-list li {
    width: 100%;
    justify-content: center;
  }
}
/* =========================================================
   Webromedia Room Type - Mockup Content Top
   SAFE PATCH: hero alatti prémium felső tartalom
   ========================================================= */



.webro-content-top-section {
  margin: 0;
}

.webro-room-content-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.webro-room-lead {
  position: relative;
  padding: 25px 32px;
  border: 1px solid rgba(188, 150, 91, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(218, 184, 128, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(250,242,229,0.88));
  box-shadow: 0 18px 48px rgba(70, 52, 28, 0.075);
  color: #4f4436;
  font-size: 17px;
  line-height: 1.75;
}

.webro-room-lead p {
  margin: 0;
}

.webro-room-usp-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(188, 150, 91, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(221, 188, 132, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(250,244,234,0.92));
  box-shadow:
    0 18px 52px rgba(70, 52, 28, 0.075),
    inset 0 1px 0 rgba(255,255,255,0.85);
}

.webro-room-usp-column {
  padding: 24px 28px;
}

.webro-room-usp-column + .webro-room-usp-column {
  border-left: 1px solid rgba(188, 150, 91, 0.18);
}

.webro-room-usp-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-bottom: 19px;
  text-align: center;
}

.webro-room-usp-title h2 {
  margin: 0;
  color: #22201d;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.webro-room-usp-title-icon,
.webro-room-usp-mini-icon,
.webro-room-list-check,
.webro-room-bubble-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.webro-room-usp-title-icon {
  width: 27px;
  height: 27px;
  color: #b68438;
}

.webro-room-usp-title-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.webro-room-usp-title-icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.webro-room-usp-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}

.webro-room-usp-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #4f463a;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 600;
}

.webro-room-usp-mini-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #2f8b54;
  background: rgba(60, 162, 98, 0.12);
}

.webro-room-usp-mini-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.webro-room-usp-mini-icon img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.webro-room-decision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.webro-room-feature-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid rgba(188, 150, 91, 0.23);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(218, 184, 128, 0.18), transparent 35%),
    linear-gradient(145deg, #fffdf8, #f8efe1);
  box-shadow:
    0 18px 52px rgba(70, 52, 28, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.8);
}



.webro-room-feature-card--soft {
  background:
    radial-gradient(circle at bottom right, rgba(218, 184, 128, 0.20), transparent 37%),
    linear-gradient(145deg, #fffdf8, #f7efe4);
}

.webro-room-feature-content {
  position: relative;
  z-index: 2;
  padding: 28px 28px 28px 32px;
}

.webro-room-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: #a87732;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.webro-room-feature-content h2,
.webro-room-description-card .webro-room-kicker + p {
  margin-top: 0;
}

.webro-room-feature-content h2 {
  margin: 0 0 18px;
  color: #211f1b;
  font-size: clamp(25px, 2.35vw, 34px);
  line-height: 1.08;
 font-weight: 600;
  letter-spacing: -0.055em;
}

.webro-room-premium-list,
.webro-room-recommend-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.webro-room-premium-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.webro-room-premium-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(188, 150, 91, 0.16);
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  color: #51473b;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
  box-shadow: 0 8px 18px rgba(70, 52, 28, 0.045);
}

.webro-room-list-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #a7742e;
  background: rgba(186, 133, 58, 0.14);
}

.webro-room-list-check svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.webro-room-list-check img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.webro-room-recommend-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.webro-room-recommend-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 13px 7px 8px;
  border: 1px solid rgba(67, 126, 82, 0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: #4c463b;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
  box-shadow: 0 8px 18px rgba(70, 52, 28, 0.04);
}

.webro-room-bubble-check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  color: #2e7b45;
  background: rgba(63, 151, 84, 0.13);
}

.webro-room-bubble-check svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.webro-room-bubble-check img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.webro-room-feature-visual {
  position: relative;
  min-height: 100%;
}

.webro-room-feature-visual img {
  position: absolute;
  inset: 28px 22px 28px auto;
  width: 168px;
  height: calc(100% - 56px);
  max-height: 205px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(70, 52, 28, 0.18);
}

.webro-room-feature-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 239, 225, 0), rgba(248, 239, 225, 0.95) 85%),
    radial-gradient(circle at center, rgba(255,255,255,0.15), transparent 58%);
  pointer-events: none;
}

.webro-room-feature-visual--decor img {
  opacity: 0.72;
  filter: saturate(0.88) brightness(1.04);
}

.webro-room-visual-placeholder {
  position: absolute;
  inset: 28px 22px 28px auto;
  width: 168px;
  height: calc(100% - 56px);
  max-height: 205px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 35% 30%, rgba(202, 151, 72, 0.28), transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(82, 126, 89, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.8), rgba(237,222,198,0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.webro-room-description-card {
  padding: 26px 30px;
  border: 1px solid rgba(188, 150, 91, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(218, 184, 128, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(249,241,229,0.9));
  box-shadow: 0 16px 46px rgba(70, 52, 28, 0.06);
}

.webro-room-description-card p {
  margin: 0 0 14px;
  color: #50463a;
  font-size: 16px;
  line-height: 1.75;
}

.webro-room-description-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1180px) {
  .webro-room-usp-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .webro-room-feature-card {
    grid-template-columns: minmax(0, 1fr) 150px;
  }

  .webro-room-feature-visual img,
  .webro-room-visual-placeholder {
    width: 132px;
  }
}

@media (max-width: 1024px) {
  .webro-room-usp-panel,
  .webro-room-decision-grid {
    grid-template-columns: 1fr;
  }

  .webro-room-usp-column + .webro-room-usp-column {
    border-left: 0;
    border-top: 1px solid rgba(188, 150, 91, 0.18);
  }
}

@media (max-width: 720px) {
  .webro-room-after-hero {
    margin-top: 20px;
  }

  .webro-room-content-top {
    gap: 20px;
  }

  .webro-room-lead,
  .webro-room-description-card {
    padding: 20px;
    border-radius: 20px;
  }

  .webro-room-usp-column {
    padding: 20px;
  }

  .webro-room-usp-title {
    justify-content: flex-start;
    text-align: left;
  }

  .webro-room-usp-items {
    grid-template-columns: 1fr;
  }

  .webro-room-feature-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .webro-room-feature-content {
    padding: 24px 22px;
  }

  .webro-room-feature-visual {
    display: none;
  }

  .webro-room-feature-content h2 {
    font-size: 26px;
  }

  .webro-room-premium-list li,
  .webro-room-recommend-list li {
    border-radius: 16px;
    align-items: flex-start;
  }
}
/* =========================================================
   Webromedia Room Type - Mockup Middle Content
   SAFE PATCH: section-content.php
   ========================================================= */

.webro-content-section {
  margin-top: 28px;
}

.webro-room-content-mid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.webro-room-info-grid,
.webro-room-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.webro-room-policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.webro-room-info-card,
.webro-room-service-card,
.webro-room-policy-card,
.webro-room-location-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 150, 91, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(218, 184, 128, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(249,241,229,0.92));
  box-shadow:
    0 18px 52px rgba(70, 52, 28, 0.075),
    inset 0 1px 0 rgba(255,255,255,0.86);
}

.webro-room-info-card,
.webro-room-service-card,
.webro-room-policy-card {
  padding: 26px;
}

.webro-room-important-card {
  background:
    radial-gradient(circle at top right, rgba(218, 184, 128, 0.18), transparent 34%),
    linear-gradient(145deg, #fff9ed, #f8ecdc);
}

.webro-room-block-head {
  margin-bottom: 18px;
}

.webro-room-block-head h2 {
  margin: 0;
  color: #211f1b;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.13;
 font-weight: 600;
  letter-spacing: -0.045em;
}

.webro-room-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 18px;
}

.webro-room-equipment-item {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  color: #4d4438;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
}

.webro-room-equipment-icon,
.webro-room-important-icon,
.webro-room-policy-icon,
.webro-room-service-icon,
.webro-room-map-placeholder-icon,
.webro-room-nearby-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.webro-room-equipment-icon {
  width: 25px;
  height: 25px;
  color: #7f7467;
}

.webro-room-equipment-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.webro-room-equipment-icon img {
  width: 19px;
  height: 19px;
  object-fit: contain;
}

.webro-room-important-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webro-room-important-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4e4437;
}

.webro-room-important-icon {
  width: 25px;
  height: 25px;
  margin-top: 1px;
  border-radius: 999px;
  color: #a7742e;
  background: rgba(186, 133, 58, 0.14);
}

.webro-room-important-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.webro-room-important-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.webro-room-important-item strong {
  display: block;
  margin-bottom: 2px;
  color: #2d2822;
  font-size: 14px;
  font-weight: 600;
}

.webro-room-important-item span {
  display: block;
  color: #605548;
  font-size: 14px;
  line-height: 1.45;
}

.webro-room-service-icons {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.webro-room-service-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  gap: 8px;
  color: #5a4c3b;
}

.webro-room-service-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  color: #a7742e;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(237,218,187,0.74));
  box-shadow:
    0 12px 28px rgba(70, 52, 28, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.82);
}

.webro-room-service-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.webro-room-service-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.webro-room-service-icon-item strong {
  display: block;
  color: #4d3f30;
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 800;
}

.webro-room-service-icon-item span {
  display: block;
  color: #786b5b;
  font-size: 12.5px;
  line-height: 1.35;
}

.webro-room-policy-card {
  min-height: 100%;
}

.webro-room-policy-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.webro-room-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #51463a;
  font-size: 14px;
  line-height: 1.5;
}

.webro-room-policy-icon {
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  color: #9e7130;
  background: rgba(186, 133, 58, 0.13);
}

.webro-room-policy-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.webro-room-policy-icon img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.webro-room-policy-list strong {
  color: #2d2822;
  font-weight: 600;
}

.webro-room-policy-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(188, 150, 91, 0.16);
}

.webro-room-policy-richtext p {
  margin: 0 0 10px;
  color: #62574a;
  font-size: 13.5px;
  line-height: 1.6;
}

.webro-room-policy-richtext p:last-child {
  margin-bottom: 0;
}

.webro-room-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: #a7742e;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
}

.webro-room-inline-link:hover {
  color: #7f5520;
}

.webro-room-location-card {
  padding: 28px;
}

.webro-room-location-head {
  margin-bottom: 20px;
}

.webro-room-location-head h2 {
  margin: 0;
  color: #211f1b;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.12;
 font-weight: 600;
  letter-spacing: -0.045em;
}

.webro-room-location-desc {
  margin-top: 10px;
  max-width: 760px;
}

.webro-room-location-desc p {
  margin: 0 0 10px;
  color: #5b5044;
  font-size: 15px;
  line-height: 1.7;
}

.webro-room-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.webro-room-map-box {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border: 1px solid rgba(188, 150, 91, 0.17);
  border-radius: 20px;
  background: #f3eadc;
}

.webro-room-map-box iframe {
  display: block;
  width: 100% !important;
  height: 320px !important;
  border: 0;
}

.webro-room-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 320px;
  color: #6c5d4b;
  font-size: 15px;
  font-weight: 500;
  background:
    radial-gradient(circle at center, rgba(202,151,72,0.16), transparent 36%),
    linear-gradient(145deg, #f7efe3, #eadcc8);
}

.webro-room-map-placeholder-icon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: #9f7130;
  background: rgba(255,255,255,0.72);
}

.webro-room-map-placeholder-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.webro-room-nearby-box {
  padding: 4px 0;
}

.webro-room-nearby-box h3 {
  margin: 0 0 14px;
  color: #211f1b;
  font-size: 20px;
  line-height: 1.2;
 font-weight: 600;
  letter-spacing: -0.035em;
}

.webro-room-nearby-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.webro-room-nearby-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(188, 150, 91, 0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.64);
  box-shadow: 0 10px 24px rgba(70,52,28,0.045);
}

.webro-room-nearby-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(237,218,187,0.7));
}

.webro-room-nearby-icon {
  width: 24px;
  height: 24px;
  color: #9f7130;
}

.webro-room-nearby-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.webro-room-nearby-content strong {
  display: block;
  color: #2d2822;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
}

.webro-room-nearby-content span {
  display: block;
  margin-top: 3px;
  color: #766a5b;
  font-size: 12.5px;
  line-height: 1.35;
}

.webro-room-empty-soft {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.62);
  color: #6d6255;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .webro-room-service-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .webro-room-policy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .webro-room-info-grid,
  .webro-room-service-grid,
  .webro-room-location-grid {
    grid-template-columns: 1fr;
  }

  .webro-room-map-box,
  .webro-room-map-box iframe,
  .webro-room-map-placeholder {
    min-height: 280px;
    height: 280px !important;
  }
}

@media (max-width: 720px) {
  .webro-content-section {
    margin-top: 20px;
  }

  .webro-room-content-mid {
    gap: 20px;
  }

  .webro-room-info-card,
  .webro-room-service-card,
  .webro-room-policy-card,
  .webro-room-location-card {
    padding: 22px;
    border-radius: 22px;
  }

  .webro-room-equipment-grid {
    grid-template-columns: 1fr;
  }

  .webro-room-service-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .webro-room-block-head h2,
  .webro-room-location-head h2 {
    font-size: 25px;
  }
}
/* =========================================================
   Webromedia Room Type - Mockup Bottom Content
   SAFE PATCH: section-content-bottom.php
   ========================================================= */

.webro-content-bottom-section {
  margin-top: 28px;
}

.webro-room-content-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.webro-room-reviews-card,
.webro-room-faq-card,
.webro-room-program-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(188, 150, 91, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(218, 184, 128, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.97), rgba(249,241,229,0.92));
  box-shadow:
    0 18px 52px rgba(70, 52, 28, 0.075),
    inset 0 1px 0 rgba(255,255,255,0.86);
  padding: 28px;
}

.webro-room-bottom-head {
  margin-bottom: 22px;
}

.webro-room-bottom-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.webro-room-bottom-head h2 {
  margin: 0;
  color: #211f1b;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.12;
 font-weight: 600;
  letter-spacing: -0.048em;
}

.webro-room-bottom-head p {
  max-width: 780px;
  margin: 9px 0 0;
  color: #5e5347;
  font-size: 15px;
  line-height: 1.65;
}

.webro-room-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.webro-room-review-item {
  padding: 20px;
  border: 1px solid rgba(188, 150, 91, 0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 12px 30px rgba(70,52,28,0.055);
}

.webro-room-review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  color: #d7c7a9;
  font-size: 15px;
  line-height: 1;
}

.webro-room-review-stars .is-active {
  color: #e1a83d;
}

.webro-room-review-item blockquote {
  margin: 0;
  color: #4e4439;
  font-size: 14.5px;
  line-height: 1.65;
}

.webro-room-review-author {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid rgba(188, 150, 91, 0.14);
}

.webro-room-review-author span {
  display: block;
  color: #29241e;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 600;
}

.webro-room-review-author small {
  display: block;
  margin-top: 2px;
  color: #7b6e5f;
  font-size: 12.5px;
  line-height: 1.35;
}

.webro-room-reviews-shortcode {
  overflow: hidden;
}

.webro-room-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.webro-room-faq-list details {
  border: 1px solid rgba(188, 150, 91, 0.16);
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 20px rgba(70,52,28,0.04);
}

.webro-room-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: #2d2822;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.webro-room-faq-list summary::-webkit-details-marker {
  display: none;
}

.webro-room-faq-arrow {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #9f7130;
  background: rgba(186, 133, 58, 0.12);
  font-size: 22px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .22s ease;
}

.webro-room-faq-list details[open] .webro-room-faq-arrow {
  transform: rotate(90deg);
}

.webro-room-faq-answer {
  padding: 0 18px 17px;
  color: #5e5347;
  font-size: 14.5px;
  line-height: 1.65;
}

.webro-room-faq-answer p {
  margin: 0 0 10px;
}

.webro-room-faq-answer p:last-child {
  margin-bottom: 0;
}

.webro-room-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.webro-room-program-item {
  overflow: hidden;
  border: 1px solid rgba(188, 150, 91, 0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 12px 30px rgba(70,52,28,0.055);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.webro-room-program-item:hover {
  transform: translateY(-3px);
  border-color: rgba(188, 150, 91, 0.28);
  box-shadow: 0 18px 42px rgba(70,52,28,0.095);
}

.webro-room-program-thumb {
  position: relative;
  display: block;
  height: 165px;
  overflow: hidden;
  color: inherit;
  text-decoration: none !important;
  background:
    radial-gradient(circle at center, rgba(202,151,72,0.18), transparent 40%),
    linear-gradient(145deg, #f4eadb, #e7d8c2);
}

.webro-room-program-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.webro-room-program-item:hover .webro-room-program-thumb img {
  transform: scale(1.045);
}

.webro-room-program-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  color: #4b3820;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 10px 22px rgba(39,29,16,0.14);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.webro-room-program-badge-icon {
  width: 15px;
  height: 15px;
  color: #a7742e;
}

.webro-room-program-badge-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.webro-room-program-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  height: 100%;
  color: #8b642b;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.webro-room-program-placeholder-icon {
  width: 42px;
  height: 42px;
  color: #9f7130;
}

.webro-room-program-placeholder-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.webro-room-program-body {
  padding: 18px;
}

.webro-room-program-body h3 {
  margin: 0 0 9px;
  color: #211f1b;
  font-size: 17px;
  line-height: 1.25;
 font-weight: 600;
  letter-spacing: -0.025em;
}

.webro-room-program-body h3 a {
  color: inherit;
  text-decoration: none !important;
}

.webro-room-program-body h3 a:hover {
  color: #9f7130;
}

.webro-room-program-body p {
  margin: 0 0 13px;
  color: #5f5549;
  font-size: 13.5px;
  line-height: 1.6;
}

.webro-room-program-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a7742e;
  font-size: 13.5px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none !important;
}

.webro-room-program-cta:hover {
  color: #7f5520;
}

@media (max-width: 1180px) {
  .webro-room-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .webro-room-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .webro-content-bottom-section {
    margin-top: 20px;
  }

  .webro-room-content-bottom {
    gap: 20px;
  }

  .webro-room-reviews-card,
  .webro-room-faq-card,
  .webro-room-program-card {
    padding: 22px;
    border-radius: 22px;
  }

  .webro-room-program-grid {
    grid-template-columns: 1fr;
  }

  .webro-room-program-thumb {
    height: 190px;
  }

  .webro-room-bottom-head h2 {
    font-size: 25px;
  }

  .webro-room-faq-list summary {
    padding: 15px 16px;
    font-size: 14.5px;
  }

  .webro-room-faq-answer {
    padding: 0 16px 16px;
  }
}
/* =========================================================
   Webromedia Room Type - Mockup Calendar
   SAFE PATCH: section-calendar.php
   ========================================================= */

.webro-calendar-section {
  margin-top: 28px;
}

.webro-room-calendar-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(188, 150, 91, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(218, 184, 128, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(249,241,229,0.93));
  box-shadow:
    0 18px 52px rgba(70, 52, 28, 0.075),
    inset 0 1px 0 rgba(255,255,255,0.86);
}

.webro-room-calendar-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.webro-room-calendar-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

.webro-room-calendar-head-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 17px;
  color: #a7742e;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(237,218,187,0.76));
  box-shadow:
    0 14px 30px rgba(70,52,28,0.10),
    inset 0 1px 0 rgba(255,255,255,0.86);
}

.webro-room-calendar-head-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.webro-room-calendar-head-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.webro-room-calendar-head h2 {
  margin: 0;
  color: #211f1b;
  font-size: clamp(25px, 2.25vw, 34px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.048em;
}

.webro-room-calendar-head p {
  max-width: 780px;
  margin: 9px 0 0;
  color: #5e5347;
  font-size: 15px;
  line-height: 1.65;
}

.webro-room-calendar-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #b8863f, #d6b06a);
  box-shadow: 0 14px 30px rgba(151, 103, 38, 0.22);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none !important;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}

.webro-room-calendar-jump:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 38px rgba(151, 103, 38, 0.28);
}

.webro-room-calendar-shell {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(188, 150, 91, 0.16);
  border-radius: 20px;
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82);
}

.webro-room-calendar-shell .webro-calendar,
.webro-room-calendar-shell .webro-calendar-wrap,
.webro-room-calendar-shell .webro-calendar-root {
  margin: 0;
}

.webro-room-calendar-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(188, 150, 91, 0.14);
  border-radius: 16px;
  background: rgba(255,255,255,0.62);
  color: #62574a;
  font-size: 13.5px;
  line-height: 1.55;
}

.webro-room-calendar-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  flex: 0 0 22px;
  border-radius: 999px;
  color: #2f8b54;
  background: rgba(60, 162, 98, 0.12);
}

.webro-room-calendar-note-icon svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.webro-room-calendar-note-icon img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .webro-calendar-section {
    margin-top: 20px;
  }

  .webro-room-calendar-card {
    padding: 22px;
    border-radius: 22px;
  }

  .webro-room-calendar-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .webro-room-calendar-title-wrap {
    gap: 12px;
  }

  .webro-room-calendar-head-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 15px;
  }

  .webro-room-calendar-head-icon svg,
  .webro-room-calendar-head-icon img {
    width: 22px;
    height: 22px;
  }

  .webro-room-calendar-head h2 {
    font-size: 25px;
  }

  .webro-room-calendar-jump {
    width: 100%;
  }

  .webro-room-calendar-shell {
    padding: 12px;
    border-radius: 18px;
  }
}
/* =========================================================
   Webromedia Room Type - Premium Booking Box
   SAFE PATCH: section-booking.php
   ========================================================= */

.webro-booking {
  margin: 0;
}

.webro-booking-anchor {
  position: relative;
  top: -110px;
  height: 0;
  visibility: hidden;
}

.webro-booking .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.webro-booking-wrapper {
  width: 100%;
}

.webro-booking-card-premium {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(188, 150, 91, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(218, 184, 128, 0.20), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(249,241,229,0.94));
  box-shadow:
    0 22px 60px rgba(70, 52, 28, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.88);
}

.webro-booking-card-premium::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #c99547, #efd39a, #9b6e2d);
}

.webro-booking-card-head {
  margin-bottom: 18px;
}
/*
.webro-booking-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: #a87732;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
*/
.webro-booking-kicker {
	display: block;
	font-size: 12px;
	letter-spacing: .06em;
	word-spacing: .22em;
	line-height: 1.4;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
	color: #a87732;
}

.webro-price-big {
  margin: 0;
  color: #211f1b;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.webro-price-sub {
  margin-top: 7px;
  color: #685c4d;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.webro-booking-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.webro-booking-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(188, 150, 91, 0.15);
  border-radius: 999px;
  background: rgba(255,255,255,0.68);
  color: #6c5b43;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.webro-booking-fields {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.webro-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.webro-field label {
  color: #3d352b;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}

.webro-field input,
.webro-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(188, 150, 91, 0.24);
  border-radius: 15px;
  background: rgba(255,255,255,0.82);
  color: #29241e;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 650;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.webro-field input:focus,
.webro-field select:focus {
  border-color: rgba(172, 124, 50, 0.55);
  background: rgba(255,255,255,0.96);
  box-shadow:
    0 0 0 4px rgba(186, 133, 58, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.webro-field input:disabled,
.webro-field select:disabled {
  opacity: .58;
  cursor: not-allowed;
}

.webro-field input.is-valid,
.webro-field select.is-valid {
  border-color: rgba(49, 144, 82, 0.45);
}

.webro-field input.is-error,
.webro-field select.is-error {
  border-color: rgba(190, 65, 65, 0.55);
  box-shadow: 0 0 0 4px rgba(190, 65, 65, 0.08);
}

.webro-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    color .2s ease,
    opacity .2s ease;
}

.webro-btn:disabled {
  opacity: .72;
  cursor: wait;
}

.webro-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, #b8863f, #d6b06a);
  box-shadow: 0 14px 30px rgba(151, 103, 38, 0.22);
}

.webro-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(151, 103, 38, 0.30);
}

.webro-btn-secondary {
  color: white !important;
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(188, 150, 91, 0.26);
  box-shadow: 0 10px 22px rgba(70,52,28,0.06);
  border-radius:8px !important;
}

.webro-btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,0.96);
}

.webro-btn-tertiary {
  color: #3f372d !important;
  background: rgba(88, 74, 55, 0.08);
  border: 1px solid rgba(88, 74, 55, 0.10);
}

.webro-btn-tertiary:hover {
  transform: translateY(-1px);
  background: rgba(88, 74, 55, 0.12);
}

.webro-check-btn {
  width: 100%;
  margin-top: 3px;
}

.webro-check-btn.is-loading {
  pointer-events: none;
}

.webro-booking-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.webro-booking-feedback {
  display: none;
  margin-top: 3px;
}

.webro-booking-feedback.success,
.webro-booking-feedback.error,
.webro-booking-feedback.loading {
  display: block;
}

.webro-booking-feedback.loading,
.webro-booking-feedback.error {
  padding: 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 700;
}

.webro-booking-feedback.loading {
  border: 1px solid rgba(188, 150, 91, 0.18);
  background: rgba(255,255,255,0.72);
  color: #6d5c45;
}

.webro-booking-feedback.error {
  border: 1px solid rgba(190, 65, 65, 0.20);
  background: rgba(190, 65, 65, 0.07);
  color: #8a2d2d;
}

.webro-feedback-title {
 font-weight: 600;
}

.webro-next-available {
  margin-top: 8px;
  color: #6f4d21;
}

.webro-use-next-date {
  width: 100%;
  margin-top: 12px;
}

.webro-result-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(49, 144, 82, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(69, 170, 102, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.95), rgba(239,248,241,0.88));
  box-shadow: 0 12px 30px rgba(42, 94, 58, 0.08);
}

.webro-result-status {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  color: #227743;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.webro-result-meta,
.webro-result-calc {
  color: #4f5a4f;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 700;
}

.webro-result-benefits {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 14px 0;
}

.webro-benefit {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #405241;
  font-size: 13px;
  line-height: 1.42;
  font-weight: 650;
}

.webro-benefit-dot {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #2f8b54;
}

.webro-result-label {
  margin-top: -10px;
  color: #a7742e;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.webroinfo {
  margin-top: 4px;
  color: #596354;
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 650;
}

.webro-result-total {
  margin-top: 7px;
  color: #1f3828;
  font-size: 29px;
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.webro-result-warning {
  margin-top: 13px;
  padding: 12px;
  border: 1px solid rgba(188, 150, 91, 0.20);
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  color: #6b562f;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.webro-book-now {
  width: 100%;
  margin-top: 15px;
}

.webro-booking-footnote {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(188, 150, 91, 0.16);
  color: #7a6a57;
  font-size: 12.5px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1024px) {
  .webro-booking-card-premium {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .webro-booking-card-premium {
    padding: 22px;
    border-radius: 22px;
  }

  .webro-booking-cta {
    grid-template-columns: 1fr;
  }

  .webro-price-big {
    font-size: 28px;
  }
}
/* =========================================================
   WEBRO POLISH PATCH 01
   - túl sok pipa helyett prémium bullet
   - mockuphoz közelebb álló lista-megjelenés
   - SAFE PATCH: csak CSS
   ========================================================= */

/* -----------------------------------------
   KÖZÖS PREMIUM BULLET
   ----------------------------------------- */

.webro-room-premium-list li,
.webro-room-recommend-list li,
.webro-room-equipment-item,
.webro-room-important-item,
.webro-room-policy-list li {
  position: relative;
}

/* régi ikonok elrejtése azokban a szekciókban,
   ahol most bullet kinézetet szeretnénk */
.webro-room-premium-list .webro-room-list-check,
.webro-room-recommend-list .webro-room-bubble-check,
.webro-room-equipment-item .webro-room-equipment-icon,
.webro-room-important-item .webro-room-important-icon,
.webro-room-policy-list .webro-room-policy-icon {
  display: none !important;
}

/* -----------------------------------------
   MIÉRT EZT VÁLASZD / KINEK AJÁNLJUK
   ----------------------------------------- */

.webro-room-premium-list li,
.webro-room-recommend-list li {
  padding-left: 42px !important;
  gap: 0 !important;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(210, 197, 176, 0.75);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92);
}

.webro-room-premium-list li::before,
.webro-room-recommend-list li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #efe5d5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.webro-room-premium-list li::after,
.webro-room-recommend-list li::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #b9853b;
}

/* a jobb oldali zöld pill-listát is közelítsük a mockuphoz */
.webro-room-recommend-list li {
  border-color: rgba(210, 197, 176, 0.75);
  background: rgba(255,255,255,0.82);
}

/* -----------------------------------------
   FELSZERELTSÉG
   ----------------------------------------- */

.webro-room-equipment-item {
  padding-left: 30px;
  gap: 0 !important;
  align-items: flex-start;
  color: #4d4438;
  font-size: 15px;
  line-height: 1.45;
}

.webro-room-equipment-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #efe5d5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.webro-room-equipment-item::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #8d7551;
}

/* -----------------------------------------
   FONTOS TUDNIVALÓK
   ----------------------------------------- */

.webro-room-important-item {
  padding-left: 38px;
  gap: 0 !important;
}

.webro-room-important-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #efe5d5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.webro-room-important-item::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b9853b;
}

.webro-room-important-item strong {
  font-size: 14px;
  line-height: 1.3;
}

.webro-room-important-item span {
  color: #6a5b4c;
}

/* -----------------------------------------
   HÁZIREND / FIZETÉS / LEMONDÁS
   ----------------------------------------- */

.webro-room-policy-list li {
  padding-left: 32px;
  gap: 0 !important;
  min-height: 24px;
}

.webro-room-policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #efe5d5;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.webro-room-policy-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #b9853b;
}

/* -----------------------------------------
   KÁRTYÁK FINOMABB STÍLUSA
   ----------------------------------------- */

.webro-room-info-card,
.webro-room-service-card,
.webro-room-policy-card,
.webro-room-location-card,
.webro-room-reviews-card,
.webro-room-faq-card,
.webro-room-program-card,
.webro-room-feature-card,
.webro-room-description-card,
.webro-room-calendar-card,
.webro-room-usp-panel,
.webro-room-lead {
  border-color: rgba(214, 199, 173, 0.75) !important;
  box-shadow:
    0 10px 28px rgba(84, 61, 26, 0.045),
    inset 0 1px 0 rgba(255,255,255,0.86) !important;
}

/* mockuphoz közelebbi, visszafogottabb belső tónus */
.webro-room-info-card,
.webro-room-service-card,
.webro-room-policy-card,
.webro-room-location-card,
.webro-room-reviews-card,
.webro-room-faq-card,
.webro-room-program-card,
.webro-room-feature-card,
.webro-room-description-card,
.webro-room-calendar-card {
  background:
    radial-gradient(circle at top right, rgba(222, 197, 154, 0.08), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(247,240,229,0.90)) !important;
}

/* -----------------------------------------
   "MIÉRT EZT VÁLASZD?" képes kártya – kevésbé erős fade
   ----------------------------------------- */

.webro-room-feature-visual::after {
  background:
    linear-gradient(90deg, rgba(247,240,229,0.10), rgba(247,240,229,0.86) 82%),
    radial-gradient(circle at center, rgba(255,255,255,0.10), transparent 58%) !important;
}

.webro-room-feature-visual img {
  opacity: 0.96;
}

/* -----------------------------------------
   SZOLGÁLTATÁS KÁRTYÁK – picit könnyedebb
   ----------------------------------------- */

.webro-room-service-icon-item strong {
  font-size: 14px;
  line-height: 1.3;
}

.webro-room-service-icon-item span {
  font-size: 12.5px;
  line-height: 1.45;
}

.webro-room-service-icon {
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(242,231,213,0.88));
  box-shadow:
    0 8px 18px rgba(70, 52, 28, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.86);
}

/* -----------------------------------------
   FAQ – mockup közelebbi letisztultság
   ----------------------------------------- */

.webro-room-faq-list details {
  background: rgba(255,255,255,0.82);
}

.webro-room-faq-list summary {
  font-weight: 800;
}

/* -----------------------------------------
   REVIEW fallback kártyák puhítása
   ----------------------------------------- */

.webro-room-review-item {
  background: rgba(255,255,255,0.82);
  border-color: rgba(214, 199, 173, 0.72);
}

.webro-room-review-item blockquote {
  color: #56493d;
}

/* -----------------------------------------
   MOBIL FINOMHANGOLÁS
   ----------------------------------------- */

@media (max-width: 720px) {
  .webro-room-premium-list li,
  .webro-room-recommend-list li {
    padding-left: 40px !important;
  }

  .webro-room-premium-list li::before,
  .webro-room-recommend-list li::before,
  .webro-room-important-item::before,
  .webro-room-policy-list li::before {
    width: 19px;
    height: 19px;
  }

  .webro-room-premium-list li::after,
  .webro-room-recommend-list li::after,
  .webro-room-important-item::after,
  .webro-room-policy-list li::after {
    width: 7px;
    height: 7px;
    left: 6px;
  }
}

/* =========================================================
   WEBRO SAFE PATCH 01 – frontend ikonok visszakapcsolása
   A korábbi polish CSS elrejtette a felszereltség / fontos tudnivalók ikonokat.
   ========================================================= */

.webro-room-single .webro-room-equipment-item .webro-room-equipment-icon,
.webro-room-single .webro-room-important-item .webro-room-important-icon,
.webro-room-single .webro-room-service-icon,
.webro-room-single .webro-room-policy-icon,
.webro-room-single .webro-room-nearby-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.webro-room-single .webro-room-equipment-icon img,
.webro-room-single .webro-room-important-icon img,
.webro-room-single .webro-room-service-icon img,
.webro-room-single .webro-room-policy-icon img,
.webro-room-single .webro-room-nearby-icon img,
.webro-room-single .webro-room-equipment-icon svg,
.webro-room-single .webro-room-important-icon svg,
.webro-room-single .webro-room-service-icon svg,
.webro-room-single .webro-room-policy-icon svg,
.webro-room-single .webro-room-nearby-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* =========================================================
   WEBRO SAFE PATCH 02 – felszereltség / fontos tudnivalók dupla bullet fix
   Az ikonok előtt ne jelenjen meg külön dekor bullet.
   ========================================================= */

.webro-room-single .webro-room-equipment-item::before,
.webro-room-single .webro-room-equipment-item::after,
.webro-room-single .webro-room-important-item::before,
.webro-room-single .webro-room-important-item::after {
    content: none !important;
    display: none !important;
}

/* ikon + szöveg tiszta igazítás */
.webro-room-single .webro-room-equipment-item,
.webro-room-single .webro-room-important-item {
    padding-left: 0 !important;
}

/* felszereltség ikon méret finomítás */
.webro-room-single .webro-room-equipment-icon {
    width: 22px !important;
    height: 22px !important;
    margin-right: 2px;
    color: #8b7a66;
}

/* fontos tudnivalók ikon méret finomítás */
.webro-room-single .webro-room-important-icon {
    width: 24px !important;
    height: 24px !important;
    margin-right: 2px;
}
/* =========================================================
   WEBRO SAFE PATCH 03 – policy grid dupla bullet fix
   Házirend / Fizetés / Lemondás blokkokban csak az adminból jövő ikon maradjon.
   ========================================================= */

.webro-room-single .webro-room-policy-list li::before,
.webro-room-single .webro-room-policy-list li::after {
    content: none !important;
    display: none !important;
}

.webro-room-single .webro-room-policy-list li {
    padding-left: 0 !important;
    gap: 10px !important;
    align-items: flex-start;
}

/* Policy ikon maradjon látható */
.webro-room-single .webro-room-policy-list .webro-room-policy-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 24px !important;
    height: 24px !important;
    flex: 0 0 24px !important;
    margin-top: 0px;
    border-radius: 999px;
    color: #a7742e;
    background: rgba(186, 133, 58, 0.14);
}

/* SVG / IMG pontos igazítás */
.webro-room-single .webro-room-policy-list .webro-room-policy-icon svg,
.webro-room-single .webro-room-policy-list .webro-room-policy-icon img {
    display: block;
    width: 14px !important;
    height: 14px !important;
    object-fit: contain;
}

/* Szöveg igazítás */
.webro-room-single .webro-room-policy-list li > span:last-child {
    display: block;
    line-height: 1.45;
}
/* =========================================================
   WEBRO SAFE PATCH 04 – 3 oszlopos info sor + mini FAQ
   Felszereltség | Fontos tudnivalók | Gyakori kérdések
   ========================================================= */

.webro-room-single .webro-room-info-grid--three {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    align-items: stretch;
}

.webro-room-single .webro-room-info-grid--three > .webro-room-info-card {
    height: 100%;
    min-width: 0;
}

/* Felszereltség 3 oszlopos kártyában: belül ne legyen túl sűrű */
.webro-room-single .webro-room-info-grid--three .webro-room-equipment-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

/* Dupla dekor bullet végleges letiltása ikonok előtt */
.webro-room-single .webro-room-equipment-item::before,
.webro-room-single .webro-room-equipment-item::after,
.webro-room-single .webro-room-important-item::before,
.webro-room-single .webro-room-important-item::after,
.webro-room-single .webro-room-policy-list li::before,
.webro-room-single .webro-room-policy-list li::after {
    content: none !important;
    display: none !important;
}

.webro-room-single .webro-room-equipment-item,
.webro-room-single .webro-room-important-item,
.webro-room-single .webro-room-policy-list li {
    padding-left: 0 !important;
}

/* Ikonok maradjanak láthatók */
.webro-room-single .webro-room-equipment-item .webro-room-equipment-icon,
.webro-room-single .webro-room-important-item .webro-room-important-icon,
.webro-room-single .webro-room-policy-list .webro-room-policy-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

/* Mini FAQ card */
.webro-room-single .webro-room-faq-mini-card {
    background:
        radial-gradient(circle at top right, rgba(218, 184, 128, 0.14), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.97), rgba(249,241,229,0.92));
}

.webro-room-single .webro-room-faq-mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.webro-room-single .webro-room-faq-mini-list details {
    border: 1px solid rgba(188, 150, 91, 0.16);
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 8px 20px rgba(70,52,28,0.04);
    overflow: hidden;
}

.webro-room-single .webro-room-faq-mini-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
    color: #2d2822;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.webro-room-single .webro-room-faq-mini-list summary::-webkit-details-marker {
    display: none;
}

.webro-room-single .webro-room-faq-mini-arrow {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 999px;
    color: #9f7130;
    background: rgba(186, 133, 58, 0.12);
    font-size: 20px;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform .22s ease;
}

.webro-room-single .webro-room-faq-mini-list details[open] .webro-room-faq-mini-arrow {
    transform: rotate(90deg);
}

.webro-room-single .webro-room-faq-mini-answer {
    padding: 0 15px 14px;
    color: #5e5347;
    font-size: 13.5px;
    line-height: 1.6;
}

.webro-room-single .webro-room-faq-mini-answer p {
    margin: 0 0 8px;
}

.webro-room-single .webro-room-faq-mini-answer p:last-child {
    margin-bottom: 0;
}

/* Tablet */
@media (max-width: 1180px) {
    .webro-room-single .webro-room-info-grid--three {
        grid-template-columns: 1fr !important;
    }
}

/* Mobil */
@media (max-width: 720px) {
    .webro-room-single .webro-room-info-grid--three {
        gap: 20px !important;
    }

    .webro-room-single .webro-room-faq-mini-list summary {
        padding: 12px 14px;
    }
}
/* =========================================================
   WEBRO SAFE PATCH 05 – Kapcsolódó szállások
   Vendégvélemények körüli frontend blokk
   ========================================================= */

.webro-room-single .webro-room-related-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(188, 150, 91, 0.22);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(218, 184, 128, 0.13), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.97), rgba(249,241,229,0.92));
    box-shadow:
        0 18px 52px rgba(70, 52, 28, 0.075),
        inset 0 1px 0 rgba(255,255,255,0.86);
    padding: 28px;
}

.webro-room-single .webro-room-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.webro-room-single .webro-room-related-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(188, 150, 91, 0.18);
    border-radius: 20px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 10px 26px rgba(70,52,28,0.055);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.webro-room-single .webro-room-related-item:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 164, 108, 0.62);
    box-shadow: 0 16px 34px rgba(70,52,28,0.09);
}

.webro-room-single .webro-room-related-thumb {
    display: block;
    height: 170px;
    overflow: hidden;
    background: #f5efe4;
    text-decoration: none !important;
}

.webro-room-single .webro-room-related-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.webro-room-single .webro-room-related-item:hover .webro-room-related-thumb img {
    transform: scale(1.045);
}

.webro-room-single .webro-room-related-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.webro-room-single .webro-room-related-placeholder-icon {
    width: 38px;
    height: 38px;
    color: #a97832;
}

.webro-room-single .webro-room-related-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    flex: 1;
}

.webro-room-single .webro-room-related-body h3 {
    margin: 0;
    color: #211f1b;
    font-size: 19px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.webro-room-single .webro-room-related-body h3 a {
    color: inherit;
    text-decoration: none !important;
}

.webro-room-single .webro-room-related-body h3 a:hover {
    color: #9f7130;
}

.webro-room-single .webro-room-related-body p {
    margin: 0;
    color: #5e5347;
    font-size: 14px;
    line-height: 1.55;
}

.webro-room-single .webro-room-related-meta {
    margin-top: 2px;
    color: #766a5b;
    font-size: 13px;
    line-height: 1.4;
}

.webro-room-single .webro-room-related-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: #b68132;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none !important;
}

.webro-room-single .webro-room-related-cta span {
    transition: transform .2s ease;
}

.webro-room-single .webro-room-related-cta:hover span {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .webro-room-single .webro-room-related-grid {
        grid-template-columns: 1fr;
    }

    .webro-room-single .webro-room-related-thumb {
        height: 210px;
    }
}

@media (max-width: 640px) {
    .webro-room-single .webro-room-related-card {
        padding: 22px;
        border-radius: 22px;
    }

    .webro-room-single .webro-room-related-thumb {
        height: 185px;
    }
}
/* =========================================================
   WEBRO FINAL FIX – arany szegélyek ívre simulva
   Döntési / ajánlási kártyák + booking box
   ========================================================= */

/* 1. Döntési / ajánlási kártyák alap */
.webro-room-single .webro-room-feature-card--image,
.webro-room-single .webro-room-feature-card--soft {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 28px !important;
    border-left: 5px solid #c99036 !important;
}

/* Korábbi pseudo arany csíkok teljes kikapcsolása */
.webro-room-single .webro-room-feature-card--image::before,
.webro-room-single .webro-room-feature-card--soft::before {
    content: none !important;
    display: none !important;
}

/* Tartalom ne tapadjon rá a bal oldali arany borderre */
.webro-room-single .webro-room-feature-card--image .webro-room-feature-content,
.webro-room-single .webro-room-feature-card--soft .webro-room-feature-content {
    padding-left: clamp(28px, 3vw, 42px);
}


/* 2. Jobb oldali booking box felső arany szegély */
.webro-room-single .webro-booking-card.webro-booking-card-premium,
.webro-room-single .webro-booking-card-premium {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 24px !important;
    border-top: 5px solid #c99036 !important;
}

/* Korábbi booking pseudo felső csíkok kikapcsolása */
.webro-room-single .webro-booking-card::before,
.webro-room-single .webro-booking-card-premium::before {
    content: none !important;
    display: none !important;
}


/* 3. Mobil finomítás */
@media (max-width: 767px) {
    .webro-room-single .webro-room-feature-card--image,
    .webro-room-single .webro-room-feature-card--soft {
        border-left-width: 4px !important;
        border-radius: 22px !important;
    }

    .webro-room-single .webro-room-feature-card--image .webro-room-feature-content,
    .webro-room-single .webro-room-feature-card--soft .webro-room-feature-content {
        padding-left: 24px;
    }

    .webro-room-single .webro-booking-card.webro-booking-card-premium,
    .webro-room-single .webro-booking-card-premium {
        border-top-width: 4px !important;
        border-radius: 22px !important;
    }
}
/* =========================================================
   WEBRO POLICY ICON – dot-gold frontend ikon
   ========================================================= */

.webro-room-single .webro-room-icon--dot-gold {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(186, 133, 58, 0.13);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.webro-room-single .webro-room-icon--dot-gold > span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #d3a14a;
    box-shadow: 0 0 0 3px rgba(211, 161, 74, 0.16);
}
/* ==========================================================================
   WEBRO SZÁLLÁSLISTA – SHORTCODE
   Shortcode: [webro_szallaslista base="szallasok"]
   ========================================================================== */

.webro-szallaslista,
.webro-szallaslista * {
	box-sizing: border-box;
}

.webro-szallaslista {
	--webro-list-bg: #f7f2eb;
	--webro-list-card: #ffffff;
	--webro-list-soft: #fcfaf7;
	--webro-list-text: #2b2a28;
	--webro-list-muted: #70675e;
	--webro-list-line: #e8ddd0;
	--webro-list-gold: #c8a05f;
	--webro-list-gold-dark: #a97834;
	--webro-list-gold-soft: #f4ebdd;
	--webro-list-green: #234c40;
	--webro-list-green-hover: #2c6756;
	--webro-list-shadow: 0 18px 42px rgba(63, 45, 26, 0.11);
	--webro-list-radius: 26px;

	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
	padding: 34px 18px;
	color: var(--webro-list-text);
}

/* Header */

.webro-szallaslista-head {
	margin: 0 0 26px;
	padding: 28px;
	border-radius: 30px;
	background:
		radial-gradient(circle at 90% 10%, rgba(200, 160, 95, 0.15), transparent 34%),
		linear-gradient(135deg, rgba(255,255,255,0.94), rgba(247,239,226,0.92));
	border: 1px solid rgba(200,160,95,0.18);
	box-shadow: var(--webro-list-shadow);
}

.webro-szallaslista-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 10px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255,255,255,0.76);
	border: 1px solid rgba(200,160,95,0.34);
	color: #8a672f;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.webro-szallaslista-head h2 {
	margin: 0 0 8px;
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.08;
	font-weight: 850;
	color: var(--webro-list-text);
}

.webro-szallaslista-head p {
	max-width: 780px;
	margin: 0;
	color: var(--webro-list-muted);
	font-size: 18px;
	line-height: 1.65;
}

/* List */

.webro-szallaslista-grid {
	display: grid;
	gap: 22px;
}

/* Card */

.webro-szallaslista-card {
	display: grid;
	grid-template-columns: minmax(300px, 0.95fr) minmax(340px, 1.35fr) minmax(245px, 0.8fr);
	gap: 18px;
	align-items: stretch;
	padding: 18px;
	border-radius: var(--webro-list-radius);
	background: var(--webro-list-card);
	border: 1px solid rgba(200,160,95,0.16);
	box-shadow: var(--webro-list-shadow);
	overflow: hidden;
}

.webro-szallaslista-card + .webro-szallaslista-card {
	margin-top: 4px;
}

/* Media / slider */

.webro-szallaslista-media {
	position: relative;
	min-height: 310px;
	border-radius: 22px;
	overflow: hidden;
	background: #eadfce;
	isolation: isolate;
}

.webro-szallaslista-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.webro-szallaslista-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.webro-szallaslista-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.webro-szallaslista-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.18));
	pointer-events: none;
	z-index: 1;
}

.webro-szallaslista-slide-btn {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 42px;
	height: 42px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.35);
	background: rgba(30, 24, 16, 0.34);
	color: #fff;
	font-size: 28px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: background 0.2s ease, transform 0.2s ease;
}

.webro-szallaslista-slide-btn:hover {
	background: rgba(30, 24, 16, 0.54);
	transform: translateY(-50%) scale(1.04);
}

.webro-szallaslista-slide-btn--prev {
	left: 14px;
	transform: translateY(-50%);
}

.webro-szallaslista-slide-btn--next {
	right: 14px;
	transform: translateY(-50%);
}

.webro-szallaslista-placeholder {
	width: 100%;
	height: 100%;
	min-height: 310px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	text-align: center;
	color: var(--webro-list-muted);
	background:
		linear-gradient(135deg, rgba(255,255,255,0.42), rgba(255,255,255,0)),
		#eadfce;
	font-weight: 700;
}

/* Body */

.webro-szallaslista-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 4px 2px;
	min-width: 0;
}

.webro-szallaslista-body h3 {
	margin: 0;
	font-size: clamp(24px, 2.3vw, 31px);
	line-height: 1.12;
	font-weight: 850;
	color: var(--webro-list-text);
}
.webro-szallaslista-body h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px;
  border-radius: 10px;
  background: linear-gradient(0deg, #fff, #fcfaf7);
  border: 1px solid #efe4d6;
}

.webro-szallaslista-subtitle {
	margin: -5px 0 0;
	color: #8a672f;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.5;
}

.webro-szallaslista-desc {
	margin: 0;
	color: var(--webro-list-muted);
	font-size: 15px;
	line-height: 1.65;
}

/* Szállás Head */
.webro-szallaslista-head{
	display:grid;
	grid-template-columns:1fr auto;
	align-items:center;
	gap:24px;
}

.webro-house-cta{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:14px 22px;
	border-radius:12px;
	background:linear-gradient(135deg,#B9853F,#D6A85A);
	color:#fff;
	font-weight:700;
	text-decoration:none;
	white-space:nowrap;
	box-shadow:0 12px 26px rgba(185,133,63,.22);
	border: 3px solid #fffefd;
}

.webro-house-cta:hover{
	background:linear-gradient(135deg,#A87434,#C99645);
	color:#fff;
	transform:translateY(-1px);
}

.webro-booking-mode-text {
  margin: 5px 0 0 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #6B6257 !important;
  font-weight: 600;
}

.webro-booking-mode-text strong{
	color:#2A241F;
	font-weight:700;
}

@media(max-width:768px){
	.webro-szallaslista-head{
		grid-template-columns:1fr;
	}

	.webro-house-cta{
		width:100%;
	}
}

/* Features */

.webro-szallaslista-features {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 2px;
}

.webro-szallaslista-feature {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 39px;
	padding: 9px 12px;
	border-radius: 999px;
	background: var(--webro-list-soft);
	border: 1px solid var(--webro-list-line);
	color: #5d544d;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
}

.webro-szallaslista-icon,
.webro-szallaslista-feature svg {
	display: inline-block;
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	color: var(--webro-list-gold-dark);
	fill: none;
	stroke: currentColor;
	vertical-align: middle;
}

.webro-szallaslista-icon--dot-gold {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
}

.webro-szallaslista-icon--dot-gold span {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--webro-list-gold);
	box-shadow: 0 0 0 4px rgba(200,160,95,0.14);
}

/* Availability box */

.webro-szallaslista-availability {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 15px 16px;
	border-radius: 20px;
	background: linear-gradient(180deg, #fff, #fcfaf7);
	border: 1px solid #efe4d6;
}

.webro-szallaslista-availability strong {
	display: block;
	margin-bottom: 3px;
	font-size: 15px;
	color: var(--webro-list-text);
}

.webro-szallaslista-availability span {
	display: block;
	color: var(--webro-list-muted);
	font-size: 13px;
	line-height: 1.45;
}

.webro-szallaslista-calendar-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 14px;
	border-radius: 14px;
	border: 1px solid var(--webro-list-line);
	background: #fff;
	color: var(--webro-list-text);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.webro-szallaslista-calendar-btn:hover {
	background: var(--webro-list-gold-soft);
	border-color: rgba(200,160,95,0.46);
	transform: translateY(-1px);
}

/* CTA */

.webro-szallaslista-cta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px;
	border-radius: 22px;
	background:
		radial-gradient(circle at 100% 0%, rgba(200,160,95,0.14), transparent 38%),
		linear-gradient(180deg, #fff 0%, #fbf7f2 100%);
	border: 1px solid rgba(200,160,95,0.22);
	min-height: 100%;
}

.webro-szallaslista-price {
	margin-bottom: 4px;
}

.webro-szallaslista-price span {
	display: block;
	margin-bottom: 4px;
	color: #8b7141;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.webro-szallaslista-price strong {
	display: block;
	color: var(--webro-list-text);
	font-size: clamp(25px, 2.6vw, 34px);
	line-height: 1.05;
	font-weight: 900;
}

.webro-szallaslista-btn {
	width: 100%;
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 13px 15px;
	border-radius: 16px;
	border: 1px solid transparent;
	text-align: center;
	text-decoration: none !important;
	font-size: 15px;
	font-weight: 850;
	line-height: 1.25;
	cursor: pointer;
	white-space: normal;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.webro-szallaslista-btn:hover {
	transform: translateY(-1px);
}

.webro-szallaslista-btn--primary{
	background:linear-gradient(135deg,#B9853F,#D6A85A);
	color:#fff;
	border:1px solid #C99A52;
	box-shadow:0 10px 22px rgba(185,133,63,.22);
}

.webro-szallaslista-btn--primary:hover{
	background:linear-gradient(135deg,#A87434,#C99645);
	color:#fff;
	transform:translateY(-1px);
	box-shadow:0 14px 30px rgba(185,133,63,.32);
}

.webro-szallaslista-btn--secondary{
	background:#F4E8D7;
	color:#6B4A24;
	border:1px solid #D8BF95;
}

.webro-szallaslista-btn--secondary:hover{
	background:#E8D2AE;
	color:#4A3218;
	border-color:#C99A52;
	transform:translateY(-1px);
}

.webro-szallaslista-btn--phone{
	background:#fff;
	color:#3A2A1A;
	border:1px solid #E1D2BD;
}

.webro-szallaslista-btn--phone:hover{
	background:#FFF7EC;
	color:#2D1E12;
	border-color:#C99A52;
	transform:translateY(-1px);
}

.webro-szallaslista-detail {
	background:transparent;
	color:#6B4A24;
	border:1px solid #E1D2BD;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 10px 12px;
	border-radius: 14px;
	color: #5d544d !important;
	background: #fff;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	transition: background 0.2s ease, color 0.2s ease;
}

.webro-szallaslista-detail:hover {
	background:#F7EFE3;
	color:#3A2A1A !important;
	border-color:#C99A52;
}

.webro-szallaslista-cta small {
	display: block;
	margin-top: auto;
	color: var(--webro-list-muted);
	font-size: 12px;
	line-height: 1.45;
	text-align: center;
}

/* Empty */

.webro-szallaslista-empty {
	max-width: 920px;
	margin: 24px auto;
	padding: 24px;
	border-radius: 22px;
	background: #fff;
	border: 1px dashed var(--webro-list-line, #e8ddd0);
	color: #70675e;
	text-align: center;
	font-weight: 700;
}

/* Modal */

.webro-szallaslista-calendar-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 18px;
	background: rgba(24, 18, 12, 0.56);
	backdrop-filter: blur(5px);
}

.webro-szallaslista-calendar-modal.is-open {
	display: flex;
}

.webro-szallaslista-calendar-inner {
	position: relative;
	width: min(920px, 100%);
	max-height: 90vh;
	overflow: auto;
	padding: 24px;
	border-radius: 28px;
	background: #fff;
	border: 1px solid rgba(200,160,95,0.2);
	box-shadow: 0 30px 80px rgba(25, 18, 10, 0.32);
}

.webro-szallaslista-calendar-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--webro-list-line);
	background: #fff;
	color: var(--webro-list-text);
	font-size: 24px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.webro-szallaslista-calendar-close:hover {
	background: var(--webro-list-gold-soft);
	transform: rotate(4deg);
}

.webro-szallaslista-calendar-inner h3 {
	margin: 10px 54px 18px 0;
	font-size: clamp(25px, 3vw, 28px);
	line-height: 1.15;
	color: var(--webro-list-text);
}

.webro-szallaslista-calendar-box {
	min-height: 260px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px;
	border-radius: 22px;
	background: linear-gradient(180deg, #fff, #fbf8f3);
	border: 1px solid #efe4d6;
	color: var(--webro-list-muted);
	text-align: center;
	font-size: 15px;
	line-height: 1.6;
}

/* Page builder / theme compatibility */

.webro-szallaslista img {
	max-width: 100%;
}

.webro-szallaslista button {
	font-family: inherit;
}

/* Responsive */

@media (max-width: 1180px) {
	.webro-szallaslista-card {
		grid-template-columns: 1fr;
	}

	.webro-szallaslista-media,
	.webro-szallaslista-placeholder {
		min-height: 340px;
	}

	.webro-szallaslista-cta {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.webro-szallaslista-price,
	.webro-szallaslista-cta small {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.webro-szallaslista {
		padding: 22px 12px;
	}

	.webro-szallaslista-head {
		padding: 20px;
		border-radius: 24px;
	}

	.webro-szallaslista-card {
		padding: 14px;
		border-radius: 22px;
		gap: 15px;
	}

	.webro-szallaslista-media,
	.webro-szallaslista-placeholder {
		min-height: 250px;
		border-radius: 18px;
	}

	.webro-szallaslista-body h3 {
		font-size: 24px;
	}

	.webro-szallaslista-features {
		gap: 8px;
	}

	.webro-szallaslista-feature {
		font-size: 12px;
		padding: 8px 10px;
	}

	.webro-szallaslista-availability {
		flex-direction: column;
		align-items: stretch;
	}

	.webro-szallaslista-calendar-btn {
		width: 100%;
	}

	.webro-szallaslista-cta {
		display: flex;
	}

	.webro-szallaslista-price strong {
		font-size: 28px;
	}

	.webro-szallaslista-calendar-inner {
		padding: 20px;
		border-radius: 22px;
	}

	.webro-szallaslista-calendar-box {
		min-height: 220px;
	}
}

@media (max-width: 480px) {
	.webro-szallaslista {
		padding-left: 8px;
		padding-right: 8px;
	}

	.webro-szallaslista-card {
		padding: 12px;
	}

	.webro-szallaslista-media,
	.webro-szallaslista-placeholder {
		min-height: 220px;
	}

	.webro-szallaslista-slide-btn {
		width: 38px;
		height: 38px;
		font-size: 24px;
	}

	.webro-szallaslista-btn {
		min-height: 46px;
		font-size: 14px;
	}
}
/* ==========================================================================
   WEBRO SZÁLLÁSLISTA – VALÓS FOGLALTSÁGI POPUP NAPTÁR
   ========================================================================== */

body.webro-szallaslista-modal-open {
	overflow: hidden !important;
}

.webro-szallaslista-calendar-inner {
	width: min(980px, calc(100vw - 28px));
}

.webro-szallaslista-calendar-box {
	display: block;
	min-height: auto;
	padding: 18px;
	text-align: left;
}

.webro-szallaslista-calendar-toolbar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.webro-szallaslista-calendar-toolbar strong {
	text-align: center;
	color: var(--webro-list-text, #2b2a28);
	font-size: clamp(20px, 2.2vw, 28px);
	line-height: 1.15;
	font-weight: 900;
	text-transform: capitalize;
}

.webro-szallaslista-calendar-nav {
	min-height: 42px;
	padding: 10px 14px;
	border: 1px solid var(--webro-list-line, #e8ddd0);
	border-radius: 14px;
	background: #fff;
	color: var(--webro-list-text, #2b2a28);
	font-size: 13px;
	font-weight: 850;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.webro-szallaslista-calendar-nav:hover {
	background: var(--webro-list-gold-soft, #f4ebdd);
	border-color: rgba(200,160,95,.46);
	transform: translateY(-1px);
}

.webro-szallaslista-calendar-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 14px;
}

.webro-szallaslista-calendar-legend span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 32px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid var(--webro-list-line, #e8ddd0);
	color: #5f564d;
	font-size: 13px;
	font-weight: 750;
}

.webro-szallaslista-calendar-legend i {
	display: inline-block;
	width: 11px;
	height: 11px;
	border-radius: 999px;
}

.webro-szallaslista-calendar-legend i.free {
	background: #58a86f;
}

.webro-szallaslista-calendar-legend i.reserved {
	background: #d76b63;
}

.webro-szallaslista-calendar-legend i.past {
	background: #b9b2aa;
}

.webro-szallaslista-calendar-status {
	margin-bottom: 12px;
	padding: 10px 12px;
	border-radius: 14px;
	background: #fbf8f3;
	border: 1px solid #efe4d6;
	color: #70675e;
	font-size: 14px;
	line-height: 1.45;
}

.webro-szallaslista-calendar-status:empty {
	display: none;
}

.webro-szallaslista-calendar-status.is-error {
	background: #fff2f1;
	border-color: #f0c9c5;
	color: #a7443e;
}

.webro-szallaslista-calendar-status.is-loading {
	background: #f7f1e7;
	border-color: #eadbc5;
	color: #7c643c;
}

.webro-szallaslista-calendar-status.is-success {
	display: none;
}

.webro-szallaslista-calendar-monthgrid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
}

.webro-szallaslista-calendar-weekday {
	padding: 10px 4px;
	text-align: center;
	color: #8b7d6d;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.webro-szallaslista-calendar-day {
	min-height: 78px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	padding: 10px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid var(--webro-list-line, #e8ddd0);
}

.webro-szallaslista-calendar-day strong {
	color: var(--webro-list-text, #2b2a28);
	font-size: 15px;
	font-weight: 900;
	line-height: 1;
}

.webro-szallaslista-calendar-day span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 850;
	line-height: 1;
}

.webro-szallaslista-calendar-day.is-free {
	background: #f1faf4;
	border-color: #cfe8d6;
}

.webro-szallaslista-calendar-day.is-free span {
	background: #dff3e5;
	color: #23643a;
}

.webro-szallaslista-calendar-day.is-reserved {
	background: #fff1f0;
	border-color: #efc9c5;
}

.webro-szallaslista-calendar-day.is-reserved span {
	background: #f8dcd9;
	color: #a3413b;
}

.webro-szallaslista-calendar-day.is-past {
	opacity: .58;
	background: #f4f1ee;
	border-color: #e4ddd5;
}

.webro-szallaslista-calendar-day.is-past span {
	background: #e8e1da;
	color: #70675e;
}

.webro-szallaslista-calendar-day.is-empty {
	min-height: 78px;
	background: transparent;
	border-color: transparent;
}



@media (max-width: 768px) {
	.webro-szallaslista-calendar-inner {
		width: calc(100vw - 20px);
		padding: 18px;
	}

	.webro-szallaslista-calendar-toolbar {
		grid-template-columns: 1fr;
	}

	.webro-szallaslista-calendar-toolbar strong {
		order: -1;
		text-align: left;
	}

	.webro-szallaslista-calendar-nav {
		width: 100%;
	}

	.webro-szallaslista-calendar-monthgrid {
		gap: 6px;
	}

	.webro-szallaslista-calendar-day {
		min-height: 64px;
		padding: 8px 6px;
		border-radius: 12px;
	}

	.webro-szallaslista-calendar-day strong {
		font-size: 13px;
	}

	.webro-szallaslista-calendar-day span {
		padding: 4px 6px;
		font-size: 10px;
	}
}

@media (max-width: 480px) {
	.webro-szallaslista-calendar-box {
		padding: 12px;
	}

	.webro-szallaslista-calendar-monthgrid {
		gap: 4px;
	}

	.webro-szallaslista-calendar-weekday {
		padding: 8px 2px;
		font-size: 10px;
	}

	.webro-szallaslista-calendar-day {
		min-height: 58px;
	}
}
.webro-sidebar-sticky{
	position:sticky;
	top:120px;
	overflow:visible !important;
}
/* =====================================================
   GRID / SIDEBAR
===================================================== */

.webro-top-grid{
	align-items:start !important;
}

/* Webro Hero mobil */
/* =========================================================
   MOBILE HERO FIX
========================================================= */

@media (max-width: 768px) {

  /* HERO */
  .webro-hero {
    padding: 16px;
  }

  .webro-hero-glass {
    padding: 18px;
    border-radius: 24px;
  }

  .webro-hero-inner {
    gap: 18px;
  }

  .webro-hero-text h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  /*.webro-hero-subtitle {
    font-size: 0.95rem;
  }
*/
  .webro-hero-price {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.95rem;
  }

  .webro-hero-price .sep {
    display: none;
  }

  /* =========================================================
     QUICK INFO ICONS -> HORIZONTAL SCROLL
  ========================================================= */

  .webro-quick-inline {
    display: flex;
    gap: 12px;

    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 6px;
    margin-top: 18px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .webro-quick-inline::-webkit-scrollbar {
    display: none;
  }

  .webro-quick-item {
    min-width: 88px;
    flex: 0 0 auto;

    scroll-snap-align: start;

    border-radius: 14px;
    padding: 12px 10px;
  }

  .webro-quick-item .webro-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
  }

  .webro-quick-text {
    font-size: 0.82rem;
    line-height: 1.2;
  }

  /* =========================================================
     GALLERY THUMBS
  ========================================================= */

  .webro-gallery-thumbs,
  .webro-room-gallery-thumbs,
  .webro-single-gallery-thumbs {
    display: flex;
    gap: 10px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 6px;

    scrollbar-width: none;
  }

  .webro-gallery-thumbs::-webkit-scrollbar,
  .webro-room-gallery-thumbs::-webkit-scrollbar,
  .webro-single-gallery-thumbs::-webkit-scrollbar {
    display: none;
  }

  .webro-gallery-thumb,
  .webro-room-gallery-thumb,
  .webro-single-gallery-thumb {
    flex: 0 0 auto;

    width: 84px;
    height: 84px;

    border-radius: 14px;
    overflow: hidden;

    scroll-snap-align: start;
  }

  .webro-gallery-thumb img,
  .webro-room-gallery-thumb img,
  .webro-single-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* =========================================================
     HERO GALLERY HINT
  ========================================================= */

  .webro-hero-gallery-hint {
    top: 14px;
    right: 14px;
  }

  .webro-hero-gallery-count {
    font-size: 0.8rem;
    padding: 6px 10px;
  }

  .webro-hero-gallery-text {
    display: none;
  }

}
/* =========================================================
   MOBILE HERO GALLERY
========================================================= */
@media (max-width: 768px) {

  .webro-hero-thumbs-wrap {

    position: relative;

    margin-top: 18px;
  }

  .webro-hero-thumbs-viewport {

    overflow-x: auto;

    overflow-y: hidden;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }

  .webro-hero-thumbs-viewport::-webkit-scrollbar {
    display: none;
  }

  .webro-hero-thumbs {

    display: flex;

    gap: 12px;

    padding: 0;

    width: max-content;
  }

  .webro-hero-thumb {

    flex: 0 0 auto;

    width: 160px;

    height: 95px;

    border-radius: 20px;

    overflow: hidden;

    background: #fff;

    border: 2px solid transparent;

    box-shadow:
      0 6px 18px rgba(0,0,0,.12);

    transition:
      border-color .2s ease,
      transform .2s ease;
  }

  .webro-hero-thumb img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
  }

  .webro-hero-thumb.is-active {

    border-color: #c89a3d;

    transform: translateY(-2px);
  }

  .webro-strip-nav {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 34px;
    height: 34px;

    border-radius: 50%;

    border: none;

    background: rgba(255,255,255,.96);

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
      0 4px 12px rgba(0,0,0,.14);
  }

  .webro-strip-prev {
    left: 2px;
  }

  .webro-strip-next {
    right: 2px;
  }

  .webro-strip-nav span {

    font-size: 18px;

    line-height: 1;
    margin-top:30px;
    color: #111;
  }
  .webro-lightbox-nav.webro-lightbox-next {
  margin-top:135px;
  margin-right: -18px;
}
.webro-lightbox-nav.webro-lightbox-prev {
  margin-top: 135px;
  margin-left: -18px;
}
.webro-lightbox-stage {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .webro-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: 360px;
}
  .webro-container {
    padding: 0px;
  }
}
@media (max-width: 768px) {

  /* ENGEDÉLYEZZÜK A TOUCHOT */

  .webro-quick-inline {
    pointer-events: auto !important;
  }

  /* HORIZONTAL STRIP */

  .webro-quick-inline {

    display: flex !important;

    flex-wrap: nowrap !important;

    overflow-x: auto;

    overflow-y: hidden;

    gap: 10px;

    margin-top: 14px;

    padding-bottom: 6px;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    scroll-snap-type: x proximity;
  }

  .webro-quick-inline::-webkit-scrollbar {
    display: none;
  }

  /* ITEM */

  .webro-quick-inline .webro-quick-item {
    flex: 0 0 auto;
    min-width: 75px;
    max-width: 75px;
    height: 50px;
    scroll-snap-align: start;
  }
.webro-hero-text h1 {
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .webro-hero-gallery-hint {
    top: 60px;
    right: 14px;
  }
    .webro-hero-glass {
    padding: 0px;
    border-radius: 24px;
  }
  .webro-hero-topline {
  display: inline-block;
  background-color: #ffffff1f;
  border-radius: 5px;
  padding: 4px 5px;
  margin-top: -5px;
  align-self: flex-start;
  margin-left: -5px;
}
/* =========================================
   DESKTOP + MOBILE
========================================= 

.webro-hero-subtitle {

  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color: #f7e7ce;

  will-change: transform, opacity;

  transform: translateZ(0);

  animation:
    webroSubtitlePulse 3.2s ease-in-out infinite;
}

.webro-hero-subtitle::before {

  content: '';

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: #d8a24a;

  box-shadow:
    0 0 0 rgba(216,162,74,0.6);

  transform: translateZ(0);

  animation:
    webroDotPulse 2.4s ease-out infinite;
}

/* TEXT PULSE 

@keyframes webroSubtitlePulse {

  0% {
    opacity: .88;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-1px);
  }

  100% {
    opacity: .88;
    transform: translateY(0);
  }
}

/* DOT PULSE 

@keyframes webroDotPulse {

  0% {
    box-shadow:
      0 0 0 0 rgba(216,162,74,0.55);
  }

  70% {
    box-shadow:
      0 0 0 10px rgba(216,162,74,0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(216,162,74,0);
  }
}


/* =========================================
   MOBILE ONLY
========================================= 

@media (max-width: 768px) {

  .webro-quick-inline {

    pointer-events: auto !important;

    display: flex !important;

    flex-wrap: nowrap !important;

    overflow-x: auto;

    overflow-y: hidden;

    gap: 10px;

    margin-top: 14px;

    padding-bottom: 6px;

    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;

    scroll-snap-type: x proximity;
  }

  .webro-quick-inline::-webkit-scrollbar {
    display: none;
  }

  .webro-quick-inline .webro-quick-item {

    flex: 0 0 auto;

    min-width: 75px;
    max-width: 75px;

    height: 50px;

    scroll-snap-align: start;
  }

  .webro-hero-text h1 {

    font-size: clamp(1.25rem, 4vw, 2.5rem);

    line-height: 1.15;

    margin-bottom: 10px;
  }

  .webro-hero-gallery-hint {

    top: 60px;

    right: 14px;
  }

  .webro-hero-glass {

    padding: 0;

    border-radius: 24px;
  }

  .webro-hero-topline {

    display: inline-block;

    background-color: #ffffff1f;

    border-radius: 5px;

    padding: 4px 5px;

    margin-top: -5px;

    align-self: flex-start;

    margin-left: -5px;
  }

}
*/
.webro-result-price-note{
	margin-top:8px;
	padding:10px 12px;
	border-radius:10px;
	background:rgba(122,90,55,.08);
	color:#7a5a37;
	font-size:13px;
	font-weight:700;
	line-height:1.35;
}

.webro-result-total-sub{
	margin-top:4px;
	color:#496056;
	font-size:13px;
	font-weight:700;
	line-height:1.3;
}