.svu-pg-single {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
}

.svu-pg-hero {
    margin-bottom: 20px;
}

.svu-pg-hero img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.svu-pg-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.svu-pg-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.svu-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.svu-featured {
    background: #fff3cd;
    color: #856404;
}

.svu-verified {
    background: #d4edda;
    color: #155724;
}

.svu-meta-row {
    margin-bottom: 15px;
    font-size: 16px;
}

.svu-meta-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin: 20px 0;
}

.svu-meta-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
}

.svu-price {
    font-size: 42px;
    font-weight: 700;
    color: #16a34a;
    margin-top: 20px;
}

.svu-price::before {
    content: "Starting From";
    display: block;
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 4px;
}

.svu-availability {
    display: inline-flex;
    margin-top: 15px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.svu-status-available {
    background: #dcfce7;
    color: #166534;
}

.svu-status-limited-availability {
    background: #fef3c7;
    color: #92400e;
}

.svu-status-full {
    background: #fee2e2;
    color: #991b1b;
}

.svu-status-coming-soon {
    background: #dbeafe;
    color: #1e40af;
}

/* Quick Actions */

.svu-action-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 30px;
}

.svu-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;

    min-height: 90px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;

    text-decoration: none;
    color: #111827;

    font-weight: 600;

    transition: 0.2s ease;
}

.svu-action-btn:hover {
    transform: translateY(-2px);
}

.svu-action-btn span {
    font-size: 14px;
}

@media (max-width:768px) {

    .svu-pg-title {
        font-size: 30px;
    }

    .svu-price {
        font-size: 34px;
    }
}
.svu-section {
    margin-top: 40px;
}

.svu-section h2 {
    margin-bottom: 16px;
    font-size: 24px;
}

.svu-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svu-highlight-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #e5e7eb;
}

.svu-room-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svu-room-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e5e7eb;
}

.svu-room-card h3 {
    margin-bottom: 10px;
}

.svu-amenities {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.svu-amenity {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
}

.svu-details-grid {
    display: grid;
    gap: 12px;
}

.svu-detail-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
}

/* --------------------
   Rules
--------------------- */

.svu-detail-card {
    line-height: 1.7;
}

/* --------------------
   Gallery
--------------------- */

.svu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.svu-gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

.svu-gallery-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}

.svu-gallery-item img:hover {
    transform: scale(1.03);
}

@media (min-width: 768px) {

    .svu-gallery-grid {
        grid-template-columns: repeat(3,1fr);
    }

}
/* =========================
   Sticky CTA
========================= */

.svu-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;

    z-index: 999;

    background: #ffffff;
    border-top: 1px solid #e5e7eb;

    box-shadow: 0 -2px 12px rgba(0,0,0,.08);
}

.svu-sticky-cta a {
    flex: 1;

    text-align: center;

    padding: 16px;

    text-decoration: none;

    font-weight: 700;
}

.svu-sticky-call {
    background: #ffffff;
    color: #111827;
}

.svu-sticky-whatsapp {
    background: #25D366;
    color: #ffffff;
}

.svu-pg-single {
    padding-bottom: 90px;
}

@media (min-width: 992px) {

    .svu-sticky-cta {
        display: none;
    }

    .svu-pg-single {
        padding-bottom: 0;
    }

}

/* =========================
   Archive Listing
========================= */

.svu-pg-archive {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.svu-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
}

.svu-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.svu-card-content {
    padding: 16px;
}

.svu-card-content h3 {
    margin-bottom: 10px;
}

.svu-card-content h3 a {
    text-decoration: none;
}

.svu-card-rent {
    font-size: 22px;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 10px;
}

.svu-card-area,
.svu-card-distance {
    margin-bottom: 8px;
}

.svu-view-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: #111827;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
}

/* =========================
   Owner CTA
========================= */

.svu-owner-cta {
    margin-top: 50px;
    padding: 30px;
    background: #f3f4f6;
    border-radius: 16px;
    text-align: center;
}

.svu-owner-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.svu-owner-buttons a {
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    background: #111827;
    color: #fff;
}

/* =========================
   Responsive Archive Grid
========================= */

@media (min-width: 768px) {

    .svu-pg-archive {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1200px) {

    .svu-pg-archive {
        grid-template-columns: repeat(3, 1fr);
    }

}

/* =========================
   Featured Listings
========================= */

.svu-featured-wrapper {
    margin: 40px 0;
}

.svu-featured-title {
    margin-bottom: 25px;
    text-align: center;
    font-size: 32px;
}