/* =================================================================
   SPACE DETAIL — [pis_space_detail] shortcode styles
   =================================================================
   Prefix: psd- (Plugin Space Detail)
   Brand green: #20B35D
   Fonts: Montserrat (headings), Poppins (body), Inter (cards)
   ================================================================= */

/* ----- CONTAINER ----- */
.psd-space-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px;
    gap: 50px;
    max-width: 1440px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
.psd-space-detail *, .psd-space-detail *::before, .psd-space-detail *::after {
    box-sizing: border-box;
}

/* ----- HEADER ----- */
.psd-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 750px;
}
.psd-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 39.5px;
    line-height: 48px;
    color: #000;
    margin: 0;
    text-transform: capitalize;
}
.psd-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    color: #000;
    margin: 0;
    text-wrap: balance;
}

/* ----- FLOOR TABS BAR ----- */
.psd-floor-tabs-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1152px;
    gap: 12px;
}
.psd-floor-hint {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #334155;
}
.psd-floor-tabs {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0px;
    gap: 24px;
    justify-content: center;
    max-width: 1280px;
}
.psd-floor-tab {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 24px 48px;
    border: 2px solid #94A3B8;
    border-radius: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #64748B;
    transition: all 0.25s ease;
    min-width: 220px;
    height: 104px;
    box-sizing: border-box;
}
.psd-floor-tab .psd-ft-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #1e293b;
}
.psd-floor-tab .psd-ft-sub {
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #94a3b8;
}
.psd-floor-tab:hover {
    border-color: #20B35D;
    background: rgba(32, 179, 93, 0.04);
}
.psd-floor-tab.active {
    border-color: #20B35D;
    background: rgba(32, 179, 93, 0.06);
    box-shadow: 0 2px 12px rgba(32, 179, 93, 0.12);
}
.psd-floor-tab.active::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 12px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #20B35D;
}
.psd-floor-tab.active .psd-ft-label {
    color: #1e293b;
}

/* ----- FLOOR CONTENT ----- */
.psd-floor-content {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 1152px;
}
.psd-floor-content.active {
    display: flex;
}

/* ----- HERO CAROUSEL ----- */
.psd-hero {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: linear-gradient(95.47deg, #061A19 1.38%, #116466 62.7%, #20B35D 144.06%);
}
.psd-hero-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}
.psd-hero-slide {
    min-width: 100%;
    flex-shrink: 0;
}
.psd-hero-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}
/* Nav arrows */
.psd-hero-prev,
.psd-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid #fff !important;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
    padding: 0;
}
.psd-hero-prev:hover,
.psd-hero-next:hover,
.psd-hero-prev:focus,
.psd-hero-next:focus,
.psd-hero-prev:active,
.psd-hero-next:active {
    background: rgba(255, 255, 255, 0.85) !important;
    border-color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}
.psd-hero-prev { left: 24px; }
.psd-hero-next { right: 24px; }
.psd-hero-prev svg,
.psd-hero-next svg {
    color: #20B35D;
    width: 7px;
    height: 12px;
}
/* Dots */
.psd-hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}
.psd-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.25s;
}
.psd-dot.active {
    background: #fff;
}

/* ----- TWO-COLUMN LAYOUT ----- */
.psd-columns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
    padding-top: 16px;
}
.psd-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    min-width: 0;
}
.psd-right {
    width: 336px;
    flex-shrink: 0;
}

/* ----- FEATURE TABS ----- */
.psd-feature-tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 87, 80, 0.3);
}
.psd-feat-tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 16px;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    color: #94A3B8 !important;
    position: relative;
    min-width: 0;
    flex: 1;
    transition: color 0.25s;
}
.psd-feat-tab:hover,
.psd-feat-tab:focus,
.psd-feat-tab:active {
    background: none !important;
    background-color: transparent !important;
    color: #64d897 !important;
    box-shadow: none !important;
    outline: none !important;
}
.psd-feat-tab:hover::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #64d897;
    border-radius: 9999px;
}
.psd-feat-tab.active {
    background: none !important;
    background-color: transparent !important;
    color: #20B35D !important;
}
.psd-feat-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: #20B35D;
    border-radius: 9999px;
}

/* ----- FEATURE CONTENT ----- */
.psd-feat-content {
    display: none;
}
.psd-feat-content.active {
    display: block;
}

/* ----- SPACE DESCRIPTION ----- */
.psd-space-description {
    padding: 8px 0;
}
.psd-space-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #475569;
    margin: 0 0 16px;
}
.psd-space-description p:last-child {
    margin-bottom: 0;
}

/* ----- FEATURE CARDS GRID ----- */
.psd-feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 4px;
}
.psd-feat-grid::-webkit-scrollbar {
    width: 4px;
}
.psd-feat-grid::-webkit-scrollbar-track {
    background: transparent;
}
.psd-feat-grid::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 9999px;
}
.psd-feat-grid::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}
.psd-feat-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    gap: 16px;
    background: #fff;
    border: 1px solid rgba(15, 87, 80, 0.1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}
.psd-feat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: rgba(32, 179, 93, 0.1);
    border-radius: 10px;
    color: #20B35D;
    padding: 9px;
    box-sizing: border-box;
}
.psd-feat-icon svg {
    width: 100%;
    height: 100%;
}
.psd-feat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.psd-feat-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.psd-feat-text h4 {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    margin: 0;
}
.psd-feat-text p {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #64748B;
    margin: 0;
}

/* ----- CENTRE AMENITIES ----- */
.psd-amenities {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 28px 56px;
    gap: 40px;
    background: rgba(32, 179, 93, 0.07);
    border-radius: 16px;
    width: 100%;
    max-width: 1152px;
    overflow: hidden;
}
.psd-amenities-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.psd-amenities-text h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #0F172A;
    margin: 0;
}
.psd-amenities-text > p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475569;
    margin: 0;
}
.psd-amenities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    margin-top: 16px;
}
.psd-amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #334155;
}
.psd-amenity-item svg {
    width: 18px;
    height: 18px;
    color: #20B35D;
    flex-shrink: 0;
}

/* Amenities Carousel */
.psd-amenities-carousel {
    position: relative;
    flex-shrink: 0;
    width: 510px;
    height: 217px;
    overflow: visible;
}
.psd-ac-viewport {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}
.psd-ac-track {
    display: flex;
    gap: 0;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    height: 100%;
}
.psd-ac-slide {
    flex: 0 0 170px;
    height: 217px;
    border-radius: 0;
    overflow: hidden;
}
.psd-ac-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.psd-ac-prev,
.psd-ac-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.6) !important;
    border: 1px solid #20B35D !important;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    padding: 0;
    transition: background 0.2s;
    outline: none !important;
    box-shadow: none !important;
}
.psd-ac-prev:hover,
.psd-ac-next:hover {
    background: rgba(255, 255, 255, 0.9) !important;
}
.psd-ac-prev:focus,
.psd-ac-next:focus {
    background: rgba(255, 255, 255, 0.6) !important;
    outline: none !important;
    box-shadow: none !important;
}
.psd-ac-prev:active,
.psd-ac-next:active {
    background: #20B35D !important;
    border-color: #20B35D !important;
}
.psd-ac-prev:active svg,
.psd-ac-next:active svg {
    color: #fff;
}
.psd-ac-prev {
    left: -24px;
}
.psd-ac-next {
    right: -24px;
}
.psd-ac-prev svg,
.psd-ac-next svg {
    width: 7px;
    height: 12px;
    color: #20B35D;
}

/* ----- TOUR CARD (Right Column) ----- */
.psd-tour-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08),
                0 4px 12px rgba(0, 0, 0, 0.06),
                0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 25px;
    position: sticky;
    top: 100px;
}
.psd-tour-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #0F172A;
    margin: 0 0 8px;
}
.psd-tour-intro {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #64748B;
    margin: 0 0 24px;
}

/* Form */
.psd-tour-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.psd-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.psd-form-group label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #20B35D;
}
.psd-form-group input[type="tel"],
.psd-form-group input[type="email"],
.psd-form-group input[type="text"],
.psd-datepicker {
    width: 100%;
    padding: 13px 16px;
    background: #F6F6F6;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #111;
    outline: none;
    transition: box-shadow 0.2s;
}
.psd-form-group input::placeholder {
    color: #6B7280;
}
.psd-form-group input:focus {
    box-shadow: 0 0 0 2px rgba(32, 179, 93, 0.3);
}

/* Date wrap */
.psd-date-wrap {
    position: relative;
}
.psd-date-wrap .psd-datepicker {
    padding-right: 48px;
    cursor: pointer;
}
.psd-cal-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: #20B35D;
}
.psd-cal-icon svg {
    width: 17px;
    height: 19px;
}

/* Submit button */
.psd-submit-btn {
    width: 100%;
    padding: 16px 0;
    background: #20B35D;
    border: none;
    border-radius: 31px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s, transform 0.15s;
    margin-top: 8px;
}
.psd-submit-btn:hover {
    background: #1a9b4f;
}
.psd-submit-btn:active {
    transform: scale(0.98);
}
.psd-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form message */
.psd-form-msg {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    padding: 8px 0;
    border-radius: 8px;
}
.psd-form-msg.success {
    color: #16a34a;
    background: rgba(32, 179, 93, 0.08);
}
.psd-form-msg.error {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.08);
}

/* =================================================================
   RESPONSIVE
   ================================================================= */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .psd-space-detail {
        padding: 60px 20px;
        gap: 40px;
    }
    .psd-title {
        font-size: 32px;
        line-height: 40px;
    }
    .psd-subtitle {
        font-size: 20px;
        line-height: 30px;
    }
    .psd-floor-tabs-bar {
        gap: 8px;
        width: 100%;
    }
    .psd-floor-tabs {
        width: 100%;
        gap: 12px;
        justify-content: center;
    }
    .psd-floor-tab {
        flex: 1 1 auto;
        min-width: 0;
        padding: 16px 20px;
        height: auto;
    }
    .psd-floor-tab.active::after {
        top: 8px;
        right: 10px;
        width: 8px;
        height: 8px;
    }
    .psd-hero-slide img {
        height: 380px;
    }
    .psd-columns {
        gap: 32px;
    }
    .psd-right {
        width: 280px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    /* Container */
    .psd-space-detail {
        padding: 32px 16px;
        gap: 24px;
        overflow-x: hidden;
        max-width: 100vw;
    }

    /* Header — centred, compact */
    .psd-header {
        align-items: center;
        text-align: center;
        gap: 10px;
    }
    .psd-title {
        font-size: 24px;
        line-height: 32px;
    }
    .psd-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    /* Floor tabs — always visible, equal-width pills */
    .psd-floor-hint {
        font-size: 11px;
        line-height: 16px;
        text-align: center;
    }
    .psd-floor-tabs-bar {
        align-items: stretch;
        gap: 6px;
        width: 100%;
    }
    .psd-floor-tabs {
        width: 100%;
        gap: 8px;
    }
    .psd-floor-tabs[data-tab-count="4"] {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .psd-floor-tab {
        min-width: 0;
        padding: 14px 10px;
        border-radius: 10px;
        gap: 4px;
        height: auto;
    }
    .psd-floor-tab .psd-ft-label {
        font-size: 13px;
        line-height: 18px;
    }
    .psd-floor-tab .psd-ft-sub {
        font-size: 11px;
        line-height: 14px;
    }
    .psd-floor-tab.active::after {
        top: 6px;
        right: 8px;
        width: 7px;
        height: 7px;
    }

    /* Floor content gap */
    .psd-floor-content {
        gap: 20px;
        max-width: 100%;
        overflow: hidden;
    }

    /* Hero carousel — aspect-ratio, compact nav */
    .psd-hero {
        border-radius: 14px;
        box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.2);
    }
    .psd-hero-slide img {
        height: auto;
        aspect-ratio: 16 / 10;
        min-height: 200px;
        max-height: 280px;
    }
    .psd-hero-prev,
    .psd-hero-next {
        width: 32px;
        height: 32px;
        backdrop-filter: blur(4px);
    }
    .psd-hero-prev { left: 8px; }
    .psd-hero-next { right: 8px; }
    .psd-hero-prev svg,
    .psd-hero-next svg {
        width: 5px;
        height: 10px;
    }
    .psd-hero-dots {
        bottom: 12px;
        gap: 6px;
    }
    .psd-dot {
        width: 6px;
        height: 6px;
    }

    /* Two-column → single column */
    .psd-columns {
        flex-direction: column;
        gap: 24px;
        padding-top: 8px;
    }
    .psd-right {
        width: 100%;
        order: 2;
    }
    .psd-left {
        gap: 24px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    /* Feature tabs — evenly distributed on mobile */
    .psd-feature-tabs {
        gap: 0;
        padding-bottom: 12px;
        flex-wrap: nowrap;
    }
    .psd-feat-tab {
        flex: 1 1 0;
        min-width: 0 !important;
        font-size: 12px !important;
        line-height: 18px;
        padding: 8px 4px 12px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Description — readable line length + padding */
    .psd-space-description {
        padding: 8px 4px;
    }
    .psd-space-description p {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Feature cards — single column, compact */
    .psd-feat-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .psd-feat-card {
        padding: 14px;
        gap: 12px;
        border-radius: 10px;
    }
    .psd-feat-icon {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 8px;
        padding: 4px;
    }
    .psd-feat-icon svg {
        width: 100%;
        height: 100%;
    }
    .psd-feat-text h4 {
        font-size: 14px; 
        line-height: 20px;
    }
    .psd-feat-text p {
        font-size: 13px;
        line-height: 18px;
    }

    /* Centre amenities — stacked, carousel on top */
    .psd-amenities {
        flex-direction: column;
        padding: 20px 28px;
        gap: 20px;
        border-radius: 12px;
    }
    .psd-amenities-text h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .psd-amenities-text > p {
        font-size: 13px;
        line-height: 18px;
    }
    .psd-amenities-list {
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
    }
    .psd-amenity-item {
        font-size: 13px;
        line-height: 18px;
    }
    .psd-amenities-carousel {
        width: 95% !important;
        height: 200px;
        order: -1;
        border-radius: 12px;
    }
    .psd-ac-slide {
        flex: 0 0 50%;
        height: 200px;
        border-radius: 0;
    }
    .psd-ac-prev,
    .psd-ac-next {
        width: 36px;
        height: 36px;
    }
    .psd-ac-prev {
        left: 8px;
    }
    .psd-ac-next {
        right: 8px;
    }
    .psd-ac-prev svg,
    .psd-ac-next svg {
        width: 6px;
        height: 10px;
    }

    /* Tour card — full width, clean */
    .psd-tour-card {
        position: static;
        border-radius: 14px;
        padding: 20px;
        box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.12);
    }
    .psd-tour-card h3 {
        font-size: 20px;
        line-height: 28px;
    }
    .psd-tour-intro {
        font-size: 13px;
        line-height: 18px;
        margin-bottom: 16px;
    }
    .psd-tour-form {
        gap: 14px;
    }
    .psd-form-group input[type="tel"],
    .psd-form-group input[type="email"],
    .psd-form-group input[type="text"],
    .psd-datepicker {
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 10px;
    }
    .psd-submit-btn {
        padding: 14px 0;
        font-size: 15px;
        border-radius: 28px;
    }

    /* Flatpickr — fit within mobile viewport */
    .flatpickr-calendar {
        max-width: calc(100vw - 32px) !important;
        width: auto !important;
        font-size: 13px !important;
    }
    .flatpickr-day {
        max-height: 36px !important;
        height: 36px !important;
        line-height: 36px !important;
    }
    .flatpickr-months {
        margin-bottom: 4px;
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    .psd-space-detail {
        padding: 24px 12px;
        gap: 20px;
        overflow-x: hidden;
    }
    .psd-title {
        font-size: 20px;
        line-height: 28px;
    }
    .psd-subtitle {
        font-size: 13px;
        line-height: 20px;
    }
    .psd-floor-tab {
        padding: 10px 6px;
        flex: 1 1 0;
        min-width: 0;
        gap: 3px;
        border-radius: 8px;
        height: auto;
    }
    .psd-floor-tab .psd-ft-label {
        font-size: 11px;
        line-height: 16px;
    }
    .psd-floor-tab .psd-ft-sub {
        font-size: 10px;
        line-height: 13px;
    }
    .psd-floor-tab.active::after {
        top: 5px;
        right: 6px;
        width: 6px;
        height: 6px;
    }
    .psd-hero {
        border-radius: 10px;
    }
    .psd-hero-slide img {
        aspect-ratio: 16 / 10;
        min-height: 160px;
        max-height: 220px;
    }
    .psd-hero-prev,
    .psd-hero-next {
        width: 28px;
        height: 28px;
    }
    .psd-hero-prev { left: 6px; }
    .psd-hero-next { right: 6px; }
    .psd-hero-dots {
        bottom: 8px;
        gap: 5px;
    }
    .psd-dot {
        width: 5px;
        height: 5px;
    }
    .psd-feat-tab {
        font-size: 11px !important;
        padding: 6px 6px 10px;
    }
    .psd-space-description p {
        font-size: 13px;
        line-height: 22px;
    }
    .psd-feat-card {
        padding: 12px;
        gap: 10px;
    }
    .psd-feat-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 8px;
        padding: 6px;
    }
    .psd-feat-icon svg {
        width: 100%;
        height: 100%;
    }
    .psd-feat-text h4 {
        font-size: 13px;
        line-height: 18px;
    }
    .psd-feat-text p {
        font-size: 12px;
        line-height: 16px;
    }
    .psd-amenities {
        padding: 16px 12px;
    }
    .psd-amenities-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .psd-amenity-item {
        font-size: 12px;
    }
    .psd-amenities-carousel {
        height: 170px;
        border-radius: 10px;
    }
    .psd-ac-slide {
        flex: 0 0 50%;
        height: 170px;
        border-radius: 0;
    }
    .psd-ac-prev,
    .psd-ac-next {
        width: 32px;
        height: 32px;
    }
    .psd-ac-prev {
        left: 6px;
    }
    .psd-ac-next {
        right: 6px;
    }
    .psd-tour-card {
        padding: 16px;
        border-radius: 12px;
    }
    .psd-tour-card h3 {
        font-size: 18px;
        line-height: 24px;
    }
    .psd-form-group input[type="tel"],
    .psd-form-group input[type="email"],
    .psd-form-group input[type="text"],
    .psd-datepicker {
        padding: 11px 12px;
        font-size: 16px;
        border-radius: 8px;
    }
    .psd-submit-btn {
        padding: 13px 0;
        font-size: 14px;
    }
}
