/* ═══════════════════════════════════════════
   PLAYAZUL — Single Cabaña Detail Page
   Based on Figma node 2248-1050
   ═══════════════════════════════════════════ */

.paz-csingle__sidebar-agenote {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff8ec;
    border: 1px solid #fde5aa;
    border-left: 3px solid #f5a623;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
}

.paz-csingle__sidebar-agenote-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d48a00;
    margin-top: 1px;
}

.paz-csingle__sidebar-agenote p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #7a5200;
}

.paz-csingle__sidebar-agenote strong {
    color: #5a3c00;
    font-weight: 600;
}
/* ─── Base / Container ─── */
.paz-csingle {
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.paz-csingle__container {
    max-width: 1123px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════ HEADER ═══════ */
.paz-csingle__header {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.paz-csingle__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.paz-csingle__breadcrumb:hover {
    color: #1B2B5B;
}

.paz-csingle__title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.paz-csingle__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 500;
    color: #1B2B5B;
    margin: 0 0 4px 0;
    line-height: 1.1;
}

.paz-csingle__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.paz-csingle__meta-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    color: #1B2B5B;
}

.paz-csingle__meta-dot {
    color: #ccc;
    font-size: 16px;
}

.paz-csingle__meta-reviews {
    text-decoration: underline;
    color: #555;
    cursor: pointer;
}

.paz-csingle__meta-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #555;
}

.paz-csingle__meta-superhost {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #1B2B5B;
    font-weight: 500;
    cursor: help;
}

.paz-csingle__meta-superhost svg { flex-shrink: 0; }

.paz-csingle__title-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

button.paz-csingle__action-btn,
.paz-csingle__action-btn[onclick] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1B2B5B;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
}

button.paz-csingle__action-btn:hover,
.paz-csingle__action-btn[onclick]:hover {
    opacity: 0.7;
    background: none;
    border: none;
    color: #1B2B5B;
}

/* ═══════ GALLERY ═══════ */
.paz-csingle__gallery-wrap {
    padding: 24px 0 0;
}

.paz-csingle__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border-radius: 14px;
    overflow: hidden;
    height: 460px;
}

.paz-csingle__gallery-main {
    grid-row: 1 / 2;
}

.paz-csingle__gallery-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.paz-csingle__gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.paz-csingle__gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s;
}

.paz-csingle__gallery-thumb img:hover {
    opacity: 0.9;
}

/* Single-image mode: hide grid, expand main */
.paz-csingle__gallery--single {
    grid-template-columns: 1fr;
}

.paz-csingle__gallery--single .paz-csingle__gallery-main {
    position: relative;
}

.paz-csingle__gallery--single .paz-csingle__gallery-main img {
    height: 460px;
    object-fit: cover;
}

.paz-csingle__gallery-more {
    position: absolute;
    right: 16px;
    bottom: 16px;
    background: rgba(255,255,255,0.95);
    color: #1B2B5B;
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.paz-csingle__gallery-more:hover { background: #fff; }

.paz-csingle__gallery-thumb {
    position: relative;
}

.paz-csingle__gallery-thumb-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 500;
    pointer-events: none;
}

/* ═══════ TWO-COLUMN BODY ═══════ */
.paz-csingle__body {
    padding: 40px 0;
}

.paz-csingle__columns {
    display: grid;
    grid-template-columns: 695px 1fr;
    gap: 48px;
}

/* ─── Left column sections ─── */
.paz-csingle__left {
    min-width: 0;
}

.paz-csingle__section {
    padding: 32px 0;
}

.paz-csingle__section--border {
    border-bottom: 1px solid #e5e7eb;
}

.paz-csingle__section:first-child {
    padding-top: 0;
}

.paz-csingle__subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: #1B2B5B;
    margin: 0 0 4px 0;
}

.paz-csingle__specs {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 14px;
    flex-wrap: wrap;
}

.paz-csingle__specs-dot {
    color: #555;
}

/* ─── Highlights ─── */
.paz-csingle__highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.paz-csingle__highlight:last-child {
    margin-bottom: 0;
}

.paz-csingle__highlight-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
}

.paz-csingle__highlight-text {
    display: flex;
    flex-direction: column;
}

.paz-csingle__highlight-text strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1B2B5B;
    line-height: 24px;
}

.paz-csingle__highlight-text span {
    font-size: 14px;
    color: #888;
    line-height: 20px;
}

/* ─── Section titles ─── */
.paz-csingle__section-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #1B2B5B;
    margin: 0 0 16px 0;
    line-height: 28px;
}

/* ─── Description ─── */
.paz-csingle__description p {
    font-size: 14px;
    color: #555;
    line-height: 22.75px;
    margin: 0 0 16px 0;
}

.paz-csingle__description p:last-child {
    margin-bottom: 0;
}

/* ─── Amenities ─── */
.paz-csingle__amenities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.paz-csingle__amenity {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #555;
    line-height: 20px;
}

.paz-csingle__amenity svg {
    flex-shrink: 0;
}

/* ─── Reviews ─── */
.paz-csingle__reviews-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.paz-csingle__ratings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 48px;
    margin-bottom: 32px;
}

.paz-csingle__rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.paz-csingle__rating-label {
    width: 112px;
    flex-shrink: 0;
    font-size: 14px;
    color: #555;
}

.paz-csingle__rating-bar {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.paz-csingle__rating-bar-fill {
    height: 100%;
    background: #1B2B5B;
    border-radius: 999px;
}

.paz-csingle__rating-score {
    width: 32px;
    text-align: right;
    font-size: 14px;
    color: #1B2B5B;
    flex-shrink: 0;
}

.paz-csingle__reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.paz-csingle__review-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
}

.paz-csingle__review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.paz-csingle__review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1B2B5B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    flex-shrink: 0;
}

.paz-csingle__review-name {
    display: block;
    font-size: 14px;
    color: #1B2B5B;
    font-weight: 600;
}

.paz-csingle__review-date {
    display: block;
    font-size: 12px;
    color: #888;
}

.paz-csingle__review-text {
    font-size: 14px;
    color: #555;
    line-height: 22px;
    margin: 0;
}

/* ─── Map ─── */
.paz-csingle__map-placeholder {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #e8dfd4 0%, #c8d8c8 50%, #b8c8d8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.paz-csingle__map-placeholder span {
    background: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1B2B5B;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.paz-csingle__map-desc {
    font-size: 14px;
    color: #555;
    line-height: 22px;
    margin: 0;
}

/* ─── Rules ─── */
.paz-csingle__rules {
    list-style: none;
    padding: 0;
    margin: 0;
}

.paz-csingle__rules li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
}

.paz-csingle__rules li svg {
    flex-shrink: 0;
}

/* ─── Host ─── */
.paz-csingle__host {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.paz-csingle__host-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1B2B5B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    flex-shrink: 0;
}

.paz-csingle__host-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 500;
    color: #1B2B5B;
    margin: 0 0 4px 0;
}

.paz-csingle__host-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.paz-csingle__host-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #555;
}

.paz-csingle__host-desc {
    font-size: 14px;
    color: #555;
    line-height: 22px;
    margin: 0 0 12px 0;
}

.paz-csingle__host-response {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* ═══════ TARIFAS ═══════ */
.paz-csingle__tarifas {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.paz-csingle__tarifa-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}

.paz-csingle__tarifa-row:last-child {
    border-bottom: none;
}

.paz-csingle__tarifa-row--child {
    background: #fef9e7;
}

.paz-csingle__tarifa-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.paz-csingle__tarifa-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1B2B5B;
}

/* ═══════ MAP EMBED ═══════ */
.paz-csingle__map-embed {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.paz-csingle__map-embed iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

.paz-csingle__map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 14px;
    color: #1B2B5B;
    text-decoration: underline;
    font-weight: 500;
}

.paz-csingle__map-link:hover {
    color: #2a4a8a;
}

/* ═══════ HOST PHOTO ═══════ */
.paz-csingle__host-avatar-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ═══════ RIGHT SIDEBAR ═══════ */
.paz-csingle__right {
    min-width: 0;
}

.paz-csingle__sidebar {
    position: static !important;
    top: auto !important;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.paz-csingle__sidebar-price {
    margin-bottom: 20px;
}

.paz-csingle__sidebar-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #1B2B5B;
}

.paz-csingle__sidebar-per {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

/* ─── Restrictions ─── */
.paz-csingle__sidebar-restrictions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 12px;
    color: #666;
}

.paz-csingle__sidebar-restrictions strong {
    color: #1B2B5B;
}

/* ── Age note above date inputs ── */
.paz-csingle__sidebar-agenote {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 12px;
    padding: 8px 12px;
    background: #fef9e7;
    border: 1px solid #fde68a;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
    color: #854d0e;
}

.paz-csingle__sidebar-agenote svg {
    flex-shrink: 0;
    color: #ca8a04;
    margin-top: 1px;
}

.paz-csingle__sidebar-agenote strong {
    color: #713f12;
    font-weight: 600;
}

/* ─── Sidebar form ─── */
.paz-csingle__sidebar-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
    overflow: visible;
}

.paz-csingle__sidebar-guests-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.paz-csingle__sidebar-validation {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
    font-size: 12px;
    color: #856404;
    line-height: 1.5;
}

/* ── Microcopy: noches ── */
.paz-csingle__sidebar-nights {
    margin: -6px 0 14px;
    font-size: 12px;
    color: #555;
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 0.1px;
}

/* ── Availability intent pill ── */
.paz-csingle__sidebar-availability {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
}

.paz-csingle__sidebar-availability svg { flex-shrink: 0; }

.paz-csingle__sidebar-availability--pending {
    background: #f1f5f9;
    color: #475569;
}

.paz-csingle__sidebar-availability--checking {
    background: #eff6ff;
    color: #1e40af;
}

.paz-csingle__sidebar-availability--available {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.paz-csingle__sidebar-availability--unavailable {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.paz-csingle__sidebar-availability--error {
    background: #fef9c3;
    color: #92400e;
}

@keyframes paz-spin { to { transform: rotate(360deg); } }
.paz-spin { transform-origin: center; animation: paz-spin 0.9s linear infinite; }

/* ── Trust badge (under Reservar button) ── */
.paz-csingle__sidebar-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 0;
    padding: 10px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    line-height: 1.35;
}

.paz-csingle__sidebar-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    flex-shrink: 0;
}

.paz-csingle__sidebar-trust-icon svg { display: block; }

.paz-csingle__sidebar-trust-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.paz-csingle__sidebar-trust-title {
    font-size: 12.5px;
    font-weight: 600;
    color: #166534;
    line-height: 1.3;
}

.paz-csingle__sidebar-trust-sub {
    font-size: 11.5px;
    color: #4b5563;
    line-height: 1.3;
}

.paz-csingle__sidebar-trust-sub strong {
    color: #166534;
    font-weight: 600;
}

/* ── Tooltip (service fee) ── */
.paz-csingle__tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: help;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 2px;
    outline: none;
}

.paz-csingle__tooltip svg {
    color: #888;
    flex-shrink: 0;
}

.paz-csingle__tooltip-bubble {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    background: #1B2B5B;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
    width: 240px;
    max-width: 80vw;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    z-index: 10;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    font-weight: 400;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.paz-csingle__tooltip-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 16px;
    border: 6px solid transparent;
    border-top-color: #1B2B5B;
}

.paz-csingle__tooltip:hover .paz-csingle__tooltip-bubble,
.paz-csingle__tooltip:focus .paz-csingle__tooltip-bubble,
.paz-csingle__tooltip:focus-within .paz-csingle__tooltip-bubble {
    opacity: 1;
}


.paz-csingle__sidebar-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.paz-csingle__sidebar-cap-info {
    font-size: 12px;
    color: #888;
    margin: 0 0 12px;
    text-align: center;
}

.paz-csingle__sidebar-cap-info strong {
    color: #1B2B5B;
}

.paz-csingle__sidebar-childrate {
    font-size: 13px;
    color: #666;
    margin: 12px 0 0;
    text-align: center;
}

.paz-csingle__sidebar-childrate strong {
    color: #1B2B5B;
}

.paz-csingle__sidebar-field {
    padding: 10px 12px;
    position: relative;
    cursor: pointer;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background .15s ease;
}

.paz-csingle__sidebar-field:hover,
.paz-csingle__sidebar-field:focus-within {
    background: #f1f3f5;
}

/* Label clickable to open Flatpickr */
.paz-csingle__sidebar-field label {
    cursor: pointer;
}

/* Flatpickr alt-input fills the field */
.paz-csingle__sidebar-field input.flatpickr-input.form-control {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #333;
    outline: none;
    cursor: pointer;
}

.paz-csingle__sidebar-field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #1B2B5B;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.paz-csingle__sidebar-field input,
.paz-csingle__sidebar-field select,
.paz-csingle__sidebar-field input[type=date],
.paz-csingle__sidebar-field select[name] {
    width: 100%;
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #333;
    padding: 0;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.paz-csingle__sidebar-field select[name] {
    -webkit-appearance: none;
    appearance: none;
}

.paz-csingle__sidebar-field--full {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 16px;
}

button.paz-csingle__sidebar-btn,
.paz-csingle__sidebar-btn[type=submit] {
    width: 100%;
    background: linear-gradient(135deg, #f5c518 0%, #e6a817 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 14px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 12px rgba(240,177,0,0.3);
}

button.paz-csingle__sidebar-btn:hover,
.paz-csingle__sidebar-btn[type=submit]:hover {
    background: linear-gradient(135deg, #e6a817 0%, #d49a10 100%);
    box-shadow: 0 6px 16px rgba(240,177,0,0.4);
    color: #fff;
}

/* ─── Price breakdown ─── */
.paz-csingle__sidebar-breakdown {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.paz-csingle__sidebar-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.paz-csingle__sidebar-line-label {
    font-size: 14px;
    color: #555;
    text-decoration: underline;
}

.paz-csingle__sidebar-line-value {
    font-size: 14px;
    color: #555;
}

.paz-csingle__sidebar-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    font-size: 16px;
    color: #1B2B5B;
    font-weight: 400;
}

/* ─── WhatsApp ─── */
.paz-csingle__sidebar-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    border: 1px solid #25D366;
    border-radius: 14px;
    padding: 12px;
    margin-top: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #25D366;
    text-decoration: none;
    transition: 0.2s;
}

.paz-csingle__sidebar-whatsapp:hover {
    background: #25D366;
    color: #fff;
}

.paz-csingle__sidebar-whatsapp:hover svg {
    fill: #fff;
}

/* ─── Rare find ─── */
.paz-csingle__sidebar-rare {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fef7ea;
    border-radius: 14px;
    padding: 16px;
    margin-top: 16px;
}

.paz-csingle__sidebar-rare-emoji {
    font-size: 20px;
    line-height: 28px;
    flex-shrink: 0;
}

.paz-csingle__sidebar-rare strong {
    display: block;
    font-size: 14px;
    color: #1B2B5B;
    font-weight: 400;
    line-height: 20px;
}

.paz-csingle__sidebar-rare span {
    font-size: 12px;
    color: #888;
    line-height: 16px;
}

/* ═══════ RELATED CABINS ═══════ */
.paz-csingle__related {
    background: #1B2B5B;
    padding: 60px 0;
}

.paz-csingle__related-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 32px 0;
}

.paz-csingle__related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.paz-csingle__related-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.paz-csingle__related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.paz-csingle__related-img {
    height: 200px;
    overflow: hidden;
}

.paz-csingle__related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.paz-csingle__related-body {
    padding: 16px;
}

.paz-csingle__related-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    color: #1B2B5B;
    margin: 0 0 4px 0;
}

.paz-csingle__related-info {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
}

.paz-csingle__related-info-dot {
    color: #ccc;
}

/* ═══════ RESPONSIVE ═══════ */
@media (max-width: 1024px) {
    .paz-csingle__columns {
        grid-template-columns: 1fr 340px;
        gap: 32px;
    }

    .paz-csingle__gallery {
        height: 380px;
    }

    .paz-csingle__gallery-main img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .paz-csingle__title {
        font-size: 28px;
    }

    .paz-csingle__title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .paz-csingle__gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .paz-csingle__gallery-main img {
        height: 280px;
    }

    .paz-csingle__gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .paz-csingle__gallery-thumb img {
        height: 90px;
    }

    .paz-csingle__columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .paz-csingle__right {
        order: -1;
    }

    .paz-csingle__sidebar {
        position: static;
        margin-bottom: 32px;
    }

    .paz-csingle__amenities {
        grid-template-columns: 1fr;
    }

    .paz-csingle__ratings-grid {
        grid-template-columns: 1fr;
    }

    .paz-csingle__reviews-grid {
        grid-template-columns: 1fr;
    }

    .paz-csingle__related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .paz-csingle__related-card {
        display: grid;
        grid-template-columns: 120px 1fr;
    }

    .paz-csingle__related-img {
        height: 100%;
    }
}

@media (max-width: 480px) {
    .paz-csingle__container {
        padding: 0 16px;
    }

    .paz-csingle__title {
        font-size: 24px;
    }

    .paz-csingle__gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .paz-csingle__subtitle {
        font-size: 20px;
    }

    .paz-csingle__sidebar {
        padding: 16px;
        border-radius: 12px;
    }
}

/* =========================================
   LIGHTBOX
   ========================================= */
.paz-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paz-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.92);
}

.paz-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 3;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
    padding: 4px 10px;
    transition: opacity 0.2s;
}

.paz-lightbox__close:hover {
    opacity: 0.7;
}

.paz-lightbox__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 40px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.paz-lightbox__arrow:hover {
    background: rgba(255,255,255,0.3);
}

.paz-lightbox__arrow--prev { left: 16px; }
.paz-lightbox__arrow--next { right: 16px; }

.paz-lightbox__img-wrap {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paz-lightbox__img-wrap img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.paz-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

@media (max-width: 768px) {
    .paz-lightbox__arrow { width: 40px; height: 40px; font-size: 30px; }
    .paz-lightbox__arrow--prev { left: 8px; }
    .paz-lightbox__arrow--next { right: 8px; }
}
