/* ============================================
   PROPERTY SHOW — Travelo-style redesign
   Scoped to .property-show page.
   ============================================ */

.property-show {
    /* Brand colors */
    --ps-bg: #faf5ef;
    --ps-bg-alt: #f0ddc1;
    --ps-accent-light: #f0ddc1;
    --ps-accent: #d1aa6a;
    --ps-accent-dark: #a4773a;
    --ps-text: #5b3818;
    --ps-text-muted: rgba(91, 56, 24, 0.72);
    --ps-text-light: rgba(91, 56, 24, 0.55);
    --ps-border: #f0ddc1;
    --ps-border-soft: rgba(208, 170, 106, 0.2);
    --ps-card-bg: #ffffff;
    --ps-card-shadow: 0 4px 20px rgba(91, 56, 24, 0.06);
    --ps-card-shadow-hover: 0 12px 36px rgba(91, 56, 24, 0.12);

    /* Typography */
    --ps-display: 'Playfair Display', Georgia, serif;
    --ps-sans: 'Poppins', -apple-system, 'Segoe UI', sans-serif;

    /* Sizing */
    --ps-radius-sm: 10px;
    --ps-radius: 16px;
    --ps-radius-lg: 24px;
    --ps-radius-pill: 999px;

    font-family: var(--ps-sans);
    color: var(--ps-text);
    background: var(--ps-bg);
}

/* Ensure Poppins applies to all content inside property-show */
.property-show,
.property-show p,
.property-show span,
.property-show div,
.property-show li,
.property-show a,
.property-show button {
    font-family: var(--ps-sans);
}

/* Playfair only for explicit display elements */
.property-show .ps-display {
    font-family: var(--ps-display);
}

/* ============================================
   HERO — UNCHANGED FROM PREVIOUS BUILD
   Keep existing hero styles from the earlier phase.
   ============================================ */

.property-show .ps-hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 560px;
    max-height: 820px;
    overflow: hidden;
    background: #1a1108;
}

.property-show .ps-hero__gallery,
.property-show .ps-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.property-show .ps-hero__slide {
    opacity: 0;
    transition: opacity 900ms ease;
}

.property-show .ps-hero__slide.is-active {
    opacity: 1;
}

.property-show .ps-hero__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-show .ps-hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
    pointer-events: none;
}

.property-show .ps-hero__breadcrumb {
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 0 48px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.property-show .ps-hero__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 200ms ease;
}

.property-show .ps-hero__breadcrumb a:hover {
    color: #ffffff;
}

.property-show .ps-hero__breadcrumb-sep {
    margin: 0 10px;
    opacity: 0.5;
}

.property-show .ps-hero__title-block {
    position: absolute;
    left: 48px;
    bottom: 60px;
    right: 48px;
    z-index: 5;
    max-width: 880px;
    color: #ffffff;
}

.property-show .ps-hero__label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 18px;
    font-weight: 500;
}

.property-show .ps-hero__name {
    font-family: var(--ps-display);
    font-weight: 500;
    font-size: clamp(2.6rem, 5.8vw, 5.4rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
    margin: 0 0 18px 0;
    color: #ffffff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.property-show .ps-hero__location {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.property-show .ps-hero__location-pin {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ps-accent);
    flex-shrink: 0;
}

.property-show .ps-hero__stars {
    margin-top: 14px;
    color: var(--ps-accent);
    letter-spacing: 4px;
    font-size: 14px;
}

.property-show .ps-hero__price {
    position: absolute;
    right: 48px;
    bottom: 60px;
    z-index: 5;
    color: #ffffff;
    text-align: right;
    padding-left: 28px;
    border-left: 1px solid var(--ps-accent);
}

.property-show .ps-hero__price-label {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
    font-weight: 500;
}

.property-show .ps-hero__price-amount {
    font-family: var(--ps-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
    color: #ffffff;
}

.property-show .ps-hero__price-unit {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
    font-weight: 400;
}

.property-show .ps-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: all 220ms ease;
    border-radius: var(--ps-radius-pill);
}

.property-show .ps-hero__nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.property-show .ps-hero__nav--prev { left: 24px; }
.property-show .ps-hero__nav--next { right: 24px; }

.property-show .ps-hero__count {
    position: absolute;
    top: 24px;
    right: 48px;
    z-index: 5;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
}

.property-show .ps-hero__count strong {
    color: #ffffff;
    font-weight: 500;
}

/* Mobile hero */
@media (max-width: 768px) {
    .property-show .ps-hero { height: 70vh; min-height: 440px; }
    .property-show .ps-hero__breadcrumb { padding: 0 20px; top: 16px; }
    .property-show .ps-hero__title-block { left: 20px; right: 20px; bottom: 32px; }
    .property-show .ps-hero__price { display: none; }
    .property-show .ps-hero__nav { display: none; }
    .property-show .ps-hero__count { top: 16px; right: 20px; }
}

/* ============================================
   COMMON UTILITIES — Used by Phase B sections
   ============================================ */

.property-show .ps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.property-show .ps-section {
    padding: 80px 0;
}

.property-show .ps-section--alt {
    background: var(--ps-bg-alt);
}

.property-show .ps-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.property-show .ps-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ps-accent-dark);
    background: var(--ps-accent-light);
    padding: 8px 18px;
    border-radius: var(--ps-radius-pill);
    font-weight: 500;
    margin-bottom: 16px;
}

.property-show .ps-section-title {
    font-family: var(--ps-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 600;
    color: var(--ps-text);
    line-height: 1.15;
    margin: 0 0 12px 0;
}

.property-show .ps-section-title--left {
    text-align: left;
}

.property-show .ps-section-subtitle {
    color: var(--ps-text-muted);
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Buttons */
.property-show .ps-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--ps-sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--ps-radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 220ms ease;
    text-decoration: none;
    line-height: 1;
}

.property-show .ps-btn--primary {
    background: var(--ps-accent-dark);
    color: #ffffff;
}

.property-show .ps-btn--primary:hover {
    background: var(--ps-text);
    color: #ffffff;
    transform: translateY(-1px);
}

.property-show .ps-btn--outline {
    background: transparent;
    border-color: var(--ps-accent);
    color: var(--ps-accent-dark);
}

.property-show .ps-btn--outline:hover {
    background: var(--ps-accent-dark);
    color: #ffffff;
    border-color: var(--ps-accent-dark);
}

.property-show .ps-btn--sm {
    padding: 10px 20px;
    font-size: 13px;
}

.property-show .ps-btn__arrow {
    font-size: 15px;
    line-height: 1;
}

/* Card base */
.property-show .ps-card {
    background: var(--ps-card-bg);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-card-shadow);
    overflow: hidden;
    transition: box-shadow 300ms ease, transform 300ms ease;
}

.property-show .ps-card:hover {
    box-shadow: var(--ps-card-shadow-hover);
    transform: translateY(-4px);
}

/* Mobile common */
@media (max-width: 768px) {
    .property-show .ps-section { padding: 56px 0; }
    .property-show .ps-container { padding: 0 20px; }
    .property-show .ps-section-head { margin-bottom: 32px; }
}

/* ============================================
   ABOUT CARD
   ============================================ */

.property-show .ps-about-card {
    display: flex;
    background: var(--ps-card-bg);
    border-radius: var(--ps-radius-lg);
    box-shadow: var(--ps-card-shadow);
    overflow: hidden;
}

.property-show .ps-about-card__accent {
    width: 6px;
    flex-shrink: 0;
    background: linear-gradient(180deg, var(--ps-accent) 0%, var(--ps-accent-dark) 100%);
}

.property-show .ps-about-card__content {
    flex: 1;
    padding: 40px 48px;
}

.property-show .ps-about-card__body {
    color: var(--ps-text-muted);
    font-size: 16px;
    line-height: 1.85;
}

.property-show .ps-about-card__body p {
    margin: 0 0 1em 0;
}

.property-show .ps-about-card__body p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .property-show .ps-about-card__content {
        padding: 28px 24px;
    }
    .property-show .ps-about-card__body {
        font-size: 15px;
    }
}

/* ============================================
   HIGHLIGHTS STRIP
   ============================================ */

.property-show .ps-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
}

.property-show .ps-highlights__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: var(--ps-card-bg);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-card-shadow);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.property-show .ps-highlights__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--ps-card-shadow-hover);
}

.property-show .ps-highlights__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    border-radius: 50%;
    color: var(--ps-accent-dark);
}

.property-show .ps-highlights__icon svg {
    width: 22px;
    height: 22px;
}

.property-show .ps-highlights__text {
    font-size: 14px;
    font-weight: 500;
    color: var(--ps-text);
    line-height: 1.35;
}

@media (max-width: 768px) {
    .property-show .ps-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .property-show .ps-highlights__item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .property-show .ps-highlights__icon {
        width: 40px;
        height: 40px;
    }
    .property-show .ps-highlights__text {
        font-size: 13px;
    }
}

/* ============================================
   AMENITIES GRID
   ============================================ */

.property-show .ps-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}

.property-show .ps-amenity-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--ps-card-bg);
    border-radius: var(--ps-radius);
    box-shadow: var(--ps-card-shadow);
    text-align: center;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.property-show .ps-amenity-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--ps-card-shadow-hover);
}

.property-show .ps-amenity-tile__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    border-radius: 50%;
    color: var(--ps-accent-dark);
}

.property-show .ps-amenity-tile__icon svg {
    width: 24px;
    height: 24px;
}

.property-show .ps-amenity-tile__name {
    font-size: 13px;
    font-weight: 500;
    color: var(--ps-text);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .property-show .ps-amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .property-show .ps-amenity-tile {
        padding: 18px 12px;
    }
    .property-show .ps-amenity-tile__icon {
        width: 40px;
        height: 40px;
    }
    .property-show .ps-amenity-tile__name {
        font-size: 11px;
    }
}

/* ============================================
   ROOM CARDS GRID
   ============================================ */

.property-show .ps-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.property-show .ps-room-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.property-show .ps-room-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-show .ps-room-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.property-show .ps-room-card:hover .ps-room-card__image img {
    transform: scale(1.08);
}

.property-show .ps-room-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    color: var(--ps-accent-dark);
}

.property-show .ps-room-card__count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: var(--ps-radius-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.property-show .ps-room-card__body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-show .ps-room-card__name {
    font-family: var(--ps-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ps-text);
    margin: 0 0 12px 0;
}

.property-show .ps-room-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}

.property-show .ps-room-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ps-text-muted);
}

.property-show .ps-room-card__meta-item svg {
    color: var(--ps-accent);
    flex-shrink: 0;
}

.property-show .ps-room-card__beds,
.property-show .ps-room-card__location {
    font-size: 13px;
    color: var(--ps-text-light);
    margin-bottom: 8px;
}

.property-show .ps-room-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid var(--ps-border-soft);
}

.property-show .ps-room-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.property-show .ps-room-card__price-amount {
    font-family: var(--ps-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ps-accent-dark);
}

.property-show .ps-room-card__price-unit {
    font-size: 13px;
    color: var(--ps-text-muted);
}

.property-show .ps-room-card__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--ps-accent-dark);
    transition: color 200ms ease;
}

.property-show .ps-room-card:hover .ps-room-card__link {
    color: var(--ps-text);
}

@media (max-width: 768px) {
    .property-show .ps-rooms-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .property-show .ps-room-card__image {
        height: 180px;
    }
    .property-show .ps-room-card__body {
        padding: 16px 20px;
    }
}

/* ============================================
   TRIP CARDS GRID
   ============================================ */

.property-show .ps-trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.property-show .ps-trip-card {
    display: flex;
    flex-direction: column;
}

.property-show .ps-trip-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-show .ps-trip-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.property-show .ps-trip-card:hover .ps-trip-card__image img {
    transform: scale(1.08);
}

.property-show .ps-trip-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    color: var(--ps-accent-dark);
}

.property-show .ps-trip-card__duration {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--ps-accent-dark);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--ps-radius-pill);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.property-show .ps-trip-card__body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.property-show .ps-trip-card__name {
    font-family: var(--ps-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ps-text);
    margin: 0 0 12px 0;
}

.property-show .ps-trip-card__dates,
.property-show .ps-trip-card__area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ps-text-muted);
    margin-bottom: 8px;
}

.property-show .ps-trip-card__dates svg,
.property-show .ps-trip-card__area svg {
    color: var(--ps-accent);
    flex-shrink: 0;
}

.property-show .ps-trip-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    margin-top: auto;
    border-top: 1px solid var(--ps-border-soft);
}

.property-show .ps-trip-card__price {
    display: flex;
    flex-direction: column;
}

.property-show .ps-trip-card__price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ps-text-light);
}

.property-show .ps-trip-card__price-amount {
    font-family: var(--ps-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ps-accent-dark);
}

@media (max-width: 768px) {
    .property-show .ps-trips-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ADD-ONS GRID
   ============================================ */

.property-show .ps-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.property-show .ps-addon-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
}

.property-show .ps-addon-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    border-radius: var(--ps-radius-sm);
    color: var(--ps-accent-dark);
}

.property-show .ps-addon-card__content {
    flex: 1;
    min-width: 0;
}

.property-show .ps-addon-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ps-text);
    margin: 0 0 6px 0;
}

.property-show .ps-addon-card__desc {
    font-size: 13px;
    color: var(--ps-text-muted);
    line-height: 1.5;
    margin: 0;
}

.property-show .ps-addon-card__price {
    text-align: right;
    flex-shrink: 0;
}

.property-show .ps-addon-card__price-amount {
    display: block;
    font-family: var(--ps-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ps-accent-dark);
}

.property-show .ps-addon-card__price-unit {
    font-size: 11px;
    color: var(--ps-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .property-show .ps-addons-grid {
        grid-template-columns: 1fr;
    }
    .property-show .ps-addon-card {
        padding: 20px;
    }
}

/* ============================================
   PLACES GRID
   ============================================ */

.property-show .ps-places-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    justify-content: center;
}

.property-show .ps-places-tab {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--ps-border);
    border-radius: var(--ps-radius-pill);
    font-family: var(--ps-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--ps-text-muted);
    cursor: pointer;
    transition: all 200ms ease;
}

.property-show .ps-places-tab:hover {
    border-color: var(--ps-accent);
    color: var(--ps-accent-dark);
}

.property-show .ps-places-tab.is-active {
    background: var(--ps-accent-dark);
    border-color: var(--ps-accent-dark);
    color: #ffffff;
}

.property-show .ps-places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.property-show .ps-place-card {
    display: flex;
    flex-direction: column;
}

.property-show .ps-place-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-show .ps-place-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.property-show .ps-place-card:hover .ps-place-card__image img {
    transform: scale(1.08);
}

.property-show .ps-place-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    color: var(--ps-accent-dark);
}

.property-show .ps-place-card__count {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
}

.property-show .ps-place-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ps-text);
    padding: 5px 12px;
    border-radius: var(--ps-radius-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.property-show .ps-place-card__body {
    padding: 20px 24px;
}

.property-show .ps-place-card__name {
    font-family: var(--ps-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ps-text);
    margin: 0 0 8px 0;
}

.property-show .ps-place-card__desc {
    font-size: 13px;
    color: var(--ps-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .property-show .ps-places-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin-bottom: 24px;
    }
    .property-show .ps-places-tab {
        flex-shrink: 0;
    }
    .property-show .ps-places-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INFO CARDS (Policies / Transfer)
   ============================================ */

.property-show .ps-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.property-show .ps-info-card {
    padding: 28px;
}

.property-show .ps-info-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--ps-border-soft);
}

.property-show .ps-info-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    border-radius: var(--ps-radius-sm);
    color: var(--ps-accent-dark);
}

.property-show .ps-info-card__title {
    font-family: var(--ps-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ps-text);
    margin: 0;
}

.property-show .ps-info-card__body {
    color: var(--ps-text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.property-show .ps-info-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.property-show .ps-info-card__item {
    padding: 12px 0;
    border-bottom: 1px solid var(--ps-border-soft);
}

.property-show .ps-info-card__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.property-show .ps-info-card__item strong {
    display: block;
    font-weight: 600;
    color: var(--ps-text);
    margin-bottom: 4px;
}

.property-show .ps-info-card__value {
    color: var(--ps-text-muted);
}

.property-show .ps-info-card__text {
    color: var(--ps-text-muted);
    line-height: 1.6;
}

.property-show .ps-info-card__content {
    line-height: 1.7;
}

.property-show .ps-info-card__content p {
    margin: 0 0 1em 0;
}

.property-show .ps-info-card__content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .property-show .ps-info-grid {
        grid-template-columns: 1fr;
    }
    .property-show .ps-info-card {
        padding: 20px;
    }
}

/* ============================================
   PROPERTY MAPS GRID
   ============================================ */

.property-show .ps-maps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

.property-show .ps-map-card {
    position: relative;
    border-radius: var(--ps-radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 2;
}

.property-show .ps-map-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.property-show .ps-map-card:hover img {
    transform: scale(1.05);
}

.property-show .ps-map-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    opacity: 0;
    transition: opacity 300ms ease;
}

.property-show .ps-map-card:hover .ps-map-card__overlay {
    opacity: 1;
}

.property-show .ps-map-card__overlay span {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .property-show .ps-maps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOCATION MAP
   ============================================ */

.property-show .ps-location-map {
    border-radius: var(--ps-radius-lg);
    overflow: hidden;
    box-shadow: var(--ps-card-shadow);
}

.property-show .ps-location-map iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .property-show .ps-location-map iframe {
        height: 300px;
    }
}

/* ============================================
   SIMILAR PROPERTIES GRID
   ============================================ */

.property-show .ps-similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.property-show .ps-similar-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.property-show .ps-similar-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.property-show .ps-similar-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.property-show .ps-similar-card:hover .ps-similar-card__image img {
    transform: scale(1.08);
}

.property-show .ps-similar-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    color: var(--ps-accent-dark);
}

.property-show .ps-similar-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--ps-text);
    padding: 5px 12px;
    border-radius: var(--ps-radius-pill);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.property-show .ps-similar-card__body {
    padding: 20px 24px;
}

.property-show .ps-similar-card__name {
    font-family: var(--ps-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ps-text);
    margin: 0 0 8px 0;
}

.property-show .ps-similar-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ps-text-muted);
    margin: 0 0 10px 0;
}

.property-show .ps-similar-card__location svg {
    color: var(--ps-accent);
    flex-shrink: 0;
}

.property-show .ps-similar-card__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--ps-accent-dark);
}

@media (max-width: 768px) {
    .property-show .ps-similar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .property-show .ps-similar-card__image {
        height: 140px;
    }
    .property-show .ps-similar-card__body {
        padding: 14px 16px;
    }
    .property-show .ps-similar-card__name {
        font-size: 14px;
    }
}

/* ============================================
   STICKY BOOKING BAR
   ============================================ */

.property-show .ps-booking-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid var(--ps-border);
    box-shadow: 0 -6px 30px rgba(91, 56, 24, 0.1);
    transform: translateY(100%);
    transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-show .ps-booking-bar.is-visible {
    transform: translateY(0);
}

.property-show .ps-booking-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.property-show .ps-booking-bar__info {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.property-show .ps-booking-bar__thumb {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.property-show .ps-booking-bar__meta {
    min-width: 0;
}

.property-show .ps-booking-bar__name {
    font-family: var(--ps-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ps-text);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.property-show .ps-booking-bar__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--ps-text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-show .ps-booking-bar__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-right: 20px;
    border-right: 1px solid var(--ps-border);
    padding-left: 8px;
}

.property-show .ps-booking-bar__price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ps-text-muted);
    margin-right: 4px;
}

.property-show .ps-booking-bar__price-amount {
    font-family: var(--ps-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ps-accent-dark);
    line-height: 1;
}

.property-show .ps-booking-bar__price-unit {
    font-size: 12px;
    color: var(--ps-text-muted);
}

.property-show .ps-booking-bar__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ps-accent-dark);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: var(--ps-radius-pill);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 220ms ease;
    white-space: nowrap;
}

.property-show .ps-booking-bar__cta:hover {
    background: var(--ps-text);
    color: #fff;
    gap: 12px;
}

/* Mobile booking bar */
@media (max-width: 768px) {
    .property-show .ps-booking-bar__inner {
        padding: 10px 16px;
        gap: 10px;
    }
    .property-show .ps-booking-bar__thumb {
        width: 44px;
        height: 44px;
    }
    .property-show .ps-booking-bar__name {
        font-size: 14px;
    }
    .property-show .ps-booking-bar__location {
        display: none;
    }
    .property-show .ps-booking-bar__price {
        display: none;
    }
    .property-show .ps-booking-bar__cta {
        padding: 11px 18px;
        font-size: 13px;
    }
}

/* Prevent booking bar from being hidden by browser chrome on mobile */
.property-show {
    padding-bottom: 90px;
}

@media (max-width: 768px) {
    .property-show {
        padding-bottom: 74px;
    }
}

/* ============================================
   WHATSAPP BUTTON REPOSITIONING
   Push above booking bar on property show page
   ============================================ */

body:has(.property-show) .whatsapp-float,
body:has(.property-show) .search-fab {
    bottom: 100px !important;
}

@media (max-width: 768px) {
    body:has(.property-show) .whatsapp-float,
    body:has(.property-show) .search-fab {
        bottom: 82px !important;
    }
}

/* ============================================
   MOBILE POLISH — Additional tweaks for Phase B
   ============================================ */

@media (max-width: 768px) {
    .property-show .ps-about-card__content {
        padding: 24px 20px;
    }

    .property-show .ps-section-title {
        font-size: 1.6rem;
    }

    .property-show .ps-section-subtitle {
        font-size: 14px;
    }

    .property-show .ps-highlights {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .property-show .ps-highlights__item {
        padding: 16px 20px;
    }

    .property-show .ps-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .property-show .ps-amenity-tile {
        padding: 18px 12px;
    }

    .property-show .ps-amenity-tile__icon {
        width: 44px;
        height: 44px;
    }

    .property-show .ps-amenity-tile__icon svg {
        width: 20px;
        height: 20px;
    }

    .property-show .ps-amenity-tile__name {
        font-size: 12px;
    }

    .property-show .ps-rooms-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .property-show .ps-trips-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .property-show .ps-addons-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .property-show .ps-addon-card {
        padding: 18px;
    }

    .property-show .ps-places-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .property-show .ps-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .property-show .ps-info-card {
        padding: 22px 18px;
    }

    .property-show .ps-maps-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .property-show .ps-map-card {
        aspect-ratio: 16 / 10;
    }

    .property-show .ps-location-map iframe {
        height: 280px;
    }

    .property-show .ps-similar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .property-show .ps-similar-card__image {
        height: 120px;
    }

    .property-show .ps-similar-card__body {
        padding: 12px 14px;
    }

    .property-show .ps-similar-card__name {
        font-size: 13px;
        line-height: 1.3;
    }

    .property-show .ps-similar-card__location {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .property-show .ps-similar-card__price {
        font-size: 13px;
    }
}

/* ============================================
   ROOM TYPE PAGE — Additional components
   ============================================ */

/* Smaller hero variant for room type page */
.property-show .ps-hero--room {
    height: 60vh;
    min-height: 440px;
    max-height: 620px;
}

@media (max-width: 768px) {
    .property-show .ps-hero--room {
        height: 55vh;
        min-height: 380px;
    }
}

.property-show .ps-hero__slide--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ps-accent-light);
    color: var(--ps-accent-dark);
}

.property-show .ps-hero__slide--placeholder svg {
    width: 80px;
    height: 80px;
    opacity: 0.4;
}

/* ---- QUICK FACTS STRIP ---- */
.property-show .ps-quick-facts {
    background: var(--ps-bg);
    padding: 32px 0;
    border-bottom: 1px solid var(--ps-border);
}

.property-show .ps-quick-facts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.property-show .ps-quick-fact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.property-show .ps-quick-fact__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ps-accent-light);
    color: var(--ps-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-show .ps-quick-fact__icon svg {
    width: 22px;
    height: 22px;
}

.property-show .ps-quick-fact__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ps-text-muted);
    font-weight: 500;
    margin-bottom: 2px;
}

.property-show .ps-quick-fact__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--ps-text);
    line-height: 1.2;
}

/* ---- BED CONFIG ---- */
.property-show .ps-bed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    max-width: 720px;
    margin: 0 auto;
}

.property-show .ps-bed-card {
    background: #fff;
    border-radius: var(--ps-radius);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--ps-card-shadow);
    transition: all 300ms ease;
}

.property-show .ps-bed-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ps-card-shadow-hover);
}

.property-show .ps-bed-card__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--ps-accent-light);
    color: var(--ps-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-show .ps-bed-card__icon svg {
    width: 26px;
    height: 26px;
}

.property-show .ps-bed-card__count {
    font-family: var(--ps-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ps-accent-dark);
    line-height: 1;
}

.property-show .ps-bed-card__type {
    font-size: 13px;
    color: var(--ps-text-muted);
    margin-top: 4px;
}

/* ---- PARENT PROPERTY CARD ---- */
.property-show .ps-parent-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    background: #fff;
    border-radius: var(--ps-radius-lg);
    overflow: hidden;
    box-shadow: var(--ps-card-shadow);
    text-decoration: none;
    color: inherit;
    transition: all 300ms ease;
    max-width: 920px;
    margin: 0 auto;
}

.property-show .ps-parent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ps-card-shadow-hover);
    color: inherit;
}

.property-show .ps-parent-card__image {
    background: var(--ps-accent-light);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.property-show .ps-parent-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.property-show .ps-parent-card:hover .ps-parent-card__image img {
    transform: scale(1.05);
}

.property-show .ps-parent-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ps-accent-dark);
}

.property-show .ps-parent-card__placeholder svg {
    width: 60px;
    height: 60px;
}

.property-show .ps-parent-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.property-show .ps-parent-card__category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--ps-accent-dark);
    font-weight: 500;
    margin-bottom: 4px;
}

.property-show .ps-parent-card__name {
    font-family: var(--ps-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--ps-text);
    margin: 0;
    line-height: 1.15;
}

.property-show .ps-parent-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--ps-text-muted);
    margin-bottom: 8px;
}

.property-show .ps-parent-card__location svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.property-show .ps-parent-card__excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ps-text-muted);
    margin: 0 0 12px;
}

.property-show .ps-parent-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ps-accent-dark);
    margin-top: auto;
    transition: gap 200ms ease;
}

.property-show .ps-parent-card:hover .ps-parent-card__cta {
    gap: 10px;
}

@media (max-width: 768px) {
    .property-show .ps-parent-card {
        grid-template-columns: 1fr;
    }
    .property-show .ps-parent-card__image {
        aspect-ratio: 16/9;
    }
    .property-show .ps-parent-card__body {
        padding: 24px 20px;
    }
    .property-show .ps-parent-card__name {
        font-size: 22px;
    }
}

/* ---- ROOM TYPE TILES (image-first, no body) ---- */
.property-show .ps-room-tiles {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.property-show .ps-room-tiles--1 {
    grid-template-columns: minmax(300px, 600px);
    justify-content: center;
}

.property-show .ps-room-tiles--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 820px;
}

.property-show .ps-room-tiles--3,
.property-show .ps-room-tiles--4 {
    grid-template-columns: repeat(3, 1fr);
}

.property-show .ps-room-tile {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 320ms ease;
}

.property-show .ps-room-tile:hover {
    transform: translateY(-4px);
    color: inherit;
}

.property-show .ps-room-tile__image {
    aspect-ratio: 4/3;
    border-radius: 28px;
    overflow: hidden;
    background: var(--ps-accent-light);
    box-shadow: var(--ps-card-shadow);
    transition: box-shadow 320ms ease;
    margin-bottom: 18px;
}

.property-show .ps-room-tile:hover .ps-room-tile__image {
    box-shadow: var(--ps-card-shadow-hover);
}

.property-show .ps-room-tile__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
    display: block;
}

.property-show .ps-room-tile:hover .ps-room-tile__image img {
    transform: scale(1.06);
}

.property-show .ps-room-tile__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ps-accent-dark);
}

.property-show .ps-room-tile__placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.55;
}

.property-show .ps-room-tile__caption {
    font-family: var(--ps-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ps-text);
    text-align: center;
    line-height: 1.3;
    transition: color 200ms ease;
    padding: 0 8px;
}

.property-show .ps-room-tile:hover .ps-room-tile__caption {
    color: var(--ps-accent-dark);
}

@media (max-width: 900px) {
    .property-show .ps-room-tiles {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px;
    }
    .property-show .ps-room-tiles--1 {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 540px) {
    .property-show .ps-room-tiles {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }
    .property-show .ps-room-tile__image {
        border-radius: 22px;
        margin-bottom: 14px;
    }
    .property-show .ps-room-tile__caption {
        font-size: 17px;
    }
}

/* ============================================
   HERO TAGS
   ============================================ */

.property-show .ps-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.property-show .ps-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.property-show .ps-hero__tag i {
    font-size: 12px;
    color: var(--ps-accent);
}

@media (max-width: 768px) {
    .property-show .ps-hero__tags {
        margin-top: 14px;
        gap: 6px;
    }
    .property-show .ps-hero__tag {
        font-size: 10px;
        padding: 4px 10px;
    }
}
