/* Property detail page — v2 editorial layout */

.dlf-homepage--property-detail {
    padding-top: 0;
}

/* Classic centered page hero (location + title on image) */
.dlf-homepage--property-detail .dlf-homepage__page-hero {
    min-height: clamp(280px, 38vh, 420px);
    margin-top: 0;
}

.dlf-homepage--property-detail .dlf-homepage__page-hero--image {
    min-height: clamp(300px, 40vh, 440px);
    background-size: cover;
    background-position: center;
}

.dlf-homepage--property-detail .dlf-homepage__page-hero-content {
    padding: 3rem 1.5rem 2.5rem;
}

.dlf-homepage--property-detail .dlf-homepage__page-hero-content h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.dlf-homepage--property-detail .dlf-homepage__page-hero--image .dlf-homepage__page-hero-overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.65) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.dlf-v2-wrap--narrow {
    max-width: 960px;
}

.dlf-v2-detail {
    width: 100%;
}

.dlf-v2-section-head--center {
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

/* Breadcrumb strip */
.dlf-v2-detail__crumb {
    padding: 0.75rem 0;
    background: var(--dlf-v2-canvas);
}

.dlf-v2-detail__crumb-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.dlf-v2-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dlf-v2-text-muted);
}

.dlf-v2-detail__breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.dlf-v2-detail__breadcrumb a:hover {
    color: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__breadcrumb .is-current {
    color: var(--dlf-v2-text);
    font-weight: 600;
}

.dlf-v2-detail__rera {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dlf-v2-subtle);
    padding: 0.25rem 0.75rem;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dlf-v2-whatsapp);
    animation: dlf-v2-pulse 2s ease-in-out infinite;
}

@keyframes dlf-v2-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Hero intro (below page banner) */
.dlf-v2-detail__hero {
    padding: 2rem 0 4.5rem;
    background: var(--dlf-v2-canvas);
}

.dlf-v2-detail__hero-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .dlf-v2-detail__hero-intro {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
}

.dlf-v2-detail__hero-tagline {
    font-size: 18px;
    line-height: 30px;
    color: var(--dlf-v2-text-secondary);
    max-width: 42rem;
    margin: 0;
}

.dlf-v2-detail__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .dlf-v2-detail__hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .dlf-v2-detail__hero-actions {
        flex-direction: column;
        align-items: flex-end;
    }
}

.dlf-v2-detail__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--dlf-v2-subtle);
    padding: 0.25rem 0.75rem;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.24em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__badge--center {
    margin-bottom: 0.5rem;
}

.dlf-v2-detail__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.dlf-v2-detail__btn--primary {
    background: var(--dlf-v2-obsidian);
    color: #ffffff !important;
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(15, 20, 28, 0.12);
}

.dlf-homepage--property-detail a.dlf-v2-detail__btn--primary,
.dlf-homepage--property-detail a.dlf-v2-detail__btn--primary:visited {
    color: #ffffff !important;
}

.dlf-v2-detail__btn--primary:hover,
.dlf-v2-detail__btn--primary.is-gold,
.dlf-homepage--property-detail a.dlf-v2-detail__btn--primary:hover {
    background: var(--dlf-v2-gold-deep);
    color: #ffffff !important;
}

.dlf-v2-detail__btn--secondary {
    background: var(--dlf-v2-card);
    color: var(--dlf-v2-text) !important;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 1px 4px rgba(15, 20, 28, 0.06);
}

.dlf-homepage--property-detail a.dlf-v2-detail__btn--secondary,
.dlf-homepage--property-detail a.dlf-v2-detail__btn--secondary:visited {
    color: var(--dlf-v2-text) !important;
}

.dlf-v2-detail__btn--secondary:hover,
.dlf-homepage--property-detail a.dlf-v2-detail__btn--secondary:hover {
    background: var(--dlf-v2-subtle);
    color: var(--dlf-v2-text) !important;
}

/* Metrics strip */
.dlf-v2-detail__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    margin-top: 1rem;
    background: var(--dlf-v2-subtle);
    padding: 2px;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
}

@media (min-width: 768px) {
    .dlf-v2-detail__metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .dlf-v2-detail__metrics {
        grid-template-columns: repeat(6, 1fr);
    }
}

.dlf-v2-detail__metric {
    background: var(--dlf-v2-card);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dlf-v2-detail__metric-label {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dlf-v2-text-muted);
}

.dlf-v2-detail__metric-value {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--dlf-v2-text);
    margin-top: 0.25rem;
}

.dlf-v2-detail__metric-value.is-accent {
    color: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__metric-sub {
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    margin-top: 0.125rem;
}

/* Overview */
.dlf-v2-detail__overview {
    background: var(--dlf-v2-card);
    padding: 6.5rem 0;
}

.dlf-v2-detail__overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .dlf-v2-detail__overview-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.dlf-v2-detail__overview-copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    line-height: 1.15;
    color: var(--dlf-v2-text);
    margin: 0.25rem 0 1rem;
}

.dlf-v2-detail__overview-copy > p {
    font-size: 18px;
    line-height: 30px;
    color: var(--dlf-v2-text-secondary);
    margin: 0 0 1rem;
}

.dlf-v2-detail__overview-copy > p:last-of-type {
    font-size: 15px;
    line-height: 26px;
}

.dlf-v2-detail__feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 0.75rem;
}

@media (min-width: 640px) {
    .dlf-v2-detail__feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dlf-v2-detail__feature {
    background: var(--dlf-v2-subtle);
    padding: 1rem;
}

.dlf-v2-detail__feature h4 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--dlf-v2-text);
    margin: 0.25rem 0 0;
}

.dlf-v2-detail__feature p {
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    margin: 0.25rem 0 0;
}

.dlf-v2-detail__overview-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .dlf-v2-detail__overview-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dlf-v2-detail__overview-col--offset {
    padding-top: 0;
}

@media (min-width: 768px) {
    .dlf-v2-detail__overview-col--offset {
        padding-top: 3rem;
    }
}

.dlf-v2-detail__overview-img {
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 20, 28, 0.08);
}

.dlf-v2-detail__overview-img img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s;
}

.dlf-v2-detail__overview-img:hover img {
    transform: scale(1.05);
}

.dlf-v2-detail__info-card {
    background: var(--dlf-v2-subtle);
    padding: 1.5rem;
}

.dlf-v2-detail__info-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 32px;
    color: var(--dlf-v2-text);
    margin: 0.25rem 0;
}

.dlf-v2-detail__info-card p {
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    margin: 0;
}

.dlf-v2-detail__info-card--dark {
    background: var(--dlf-v2-obsidian);
    color: #fff;
}

.dlf-homepage--property-detail .dlf-v2-detail__info-card--dark h3,
.dlf-v2-detail__info-card--dark h3 {
    color: #ffffff !important;
}

.dlf-v2-detail__info-card--dark p {
    color: #dfe2ec;
}

.dlf-v2-detail__info-card--dark .dlf-v2-eyebrow {
    color: var(--dlf-v2-gold-light) !important;
}

/* Project Highlights */
.dlf-v2-detail__highlights {
    background: var(--dlf-v2-card);
    padding: 0 0 4.5rem;
}

.dlf-v2-detail__highlights-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 500;
    color: var(--dlf-v2-text);
    margin: 0 0 1rem;
}

.dlf-v2-detail__highlights-list {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--dlf-v2-text-secondary);
    font-size: 15px;
    line-height: 1.75;
    font-weight: 300;
}

.dlf-v2-detail__highlights-list li {
    margin-bottom: 0.5rem;
}

.dlf-v2-detail__highlights--connectivity {
    padding-top: 0;
}

.dlf-v2-detail__highlights--connectivity + .dlf-v2-detail__pricing {
    padding-top: 4.5rem;
}
.dlf-v2-detail__pricing {
    background: var(--dlf-v2-canvas);
    padding: 6.5rem 0;
}

.dlf-v2-detail__pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .dlf-v2-detail__pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dlf-v2-detail__pricing-grid.is-single {
        grid-template-columns: 1fr;
        max-width: 28rem;
        margin: 0 auto;
    }
}

.dlf-v2-detail__price-card {
    position: relative;
    background: var(--dlf-v2-card);
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.dlf-v2-detail__price-card:hover {
    box-shadow: 0 20px 45px rgba(15, 20, 28, 0.1);
}

.dlf-v2-detail__price-card.is-highlight {
    background: var(--dlf-v2-obsidian);
    color: #fff;
    box-shadow: 0 20px 45px rgba(15, 20, 28, 0.18);
    margin-top: -0.5rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .dlf-v2-detail__price-card.is-highlight {
        margin-top: -1rem;
        margin-bottom: 0;
    }
}

.dlf-v2-detail__price-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dlf-v2-gold-deep);
    color: #fff;
    padding: 0.25rem 1rem;
    font-size: 11px;
    letter-spacing: 0.18em;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dlf-v2-detail__price-head {
    margin-bottom: 1rem;
}

.dlf-v2-detail__price-head > div:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.dlf-v2-detail__price-tag {
    background: var(--dlf-v2-subtle);
    color: var(--dlf-v2-text);
    font-size: 11px;
    font-weight: 600;
    padding: 0.125rem 0.5rem;
    text-transform: uppercase;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-tag {
    background: #171c24;
    color: var(--dlf-v2-gold);
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-eyebrow {
    color: var(--dlf-v2-gold-light);
}

.dlf-v2-detail__price-head h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    margin: 0;
}

.dlf-v2-detail__price-card.is-highlight h3 {
    color: #fff;
}

.dlf-v2-detail__price-area {
    display: block;
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    margin-top: 0.25rem;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-area {
    color: #dfe2ec;
}

.dlf-v2-detail__price-box {
    background: var(--dlf-v2-subtle);
    padding: 1rem;
    margin-bottom: 0.75rem;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-box {
    background: #171c24;
}

.dlf-v2-detail__price-value {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: var(--dlf-v2-gold-deep);
    margin-top: 0.25rem;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-value {
    color: var(--dlf-v2-gold-light);
}

.dlf-v2-detail__price-sub {
    display: block;
    font-size: 13px;
    color: var(--dlf-v2-text-muted);
    margin-top: 0.125rem;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-sub {
    color: #dfe2ec;
}

.dlf-v2-detail__price-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.dlf-v2-detail__price-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    margin-bottom: 0.75rem;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-features li {
    color: #dfe2ec;
}

.dlf-v2-detail__price-features svg {
    flex-shrink: 0;
    color: var(--dlf-v2-gold-deep);
    margin-top: 1px;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-features svg {
    color: var(--dlf-v2-gold-light);
}

.dlf-v2-detail__price-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dlf-v2-detail__price-actions .dlf-v2-detail__btn {
    width: 100%;
    padding: 0.75rem 1rem;
    color: #ffffff !important;
}

.dlf-v2-detail__price-card:not(.is-highlight) .dlf-v2-detail__price-actions .dlf-v2-detail__btn--primary,
.dlf-homepage--property-detail .dlf-v2-detail__price-card:not(.is-highlight) a.dlf-v2-detail__btn--primary {
    color: #ffffff !important;
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-actions .dlf-v2-detail__btn--primary.is-gold,
.dlf-homepage--property-detail .dlf-v2-detail__price-card.is-highlight a.dlf-v2-detail__btn--primary.is-gold {
    color: #ffffff !important;
}

.dlf-v2-detail__price-link {
    display: block;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dlf-v2-text-secondary);
    text-decoration: none;
    padding: 0.25rem;
    transition: color 0.2s;
}

.dlf-v2-detail__price-link:hover {
    color: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-link {
    color: var(--dlf-v2-gold-light);
}

.dlf-v2-detail__price-card.is-highlight .dlf-v2-detail__price-link:hover {
    color: #fff;
}

/* Amenities */
.dlf-v2-detail__amenities {
    background: var(--dlf-v2-subtle);
    padding: 6.5rem 0;
}

.dlf-v2-detail__amenities-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .dlf-v2-detail__amenities-top {
        grid-template-columns: 1fr 1fr;
    }
}

.dlf-v2-detail__amenities-top h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    line-height: 1.15;
    color: var(--dlf-v2-text);
    margin: 0.25rem 0 1rem;
}

.dlf-v2-detail__amenities-top > div > p {
    font-size: 15px;
    line-height: 26px;
    color: var(--dlf-v2-text-secondary);
    margin: 0 0 1rem;
}

.dlf-v2-detail__amenity-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 0.75rem;
}

@media (min-width: 640px) {
    .dlf-v2-detail__amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dlf-v2-detail__amenity-item {
    background: var(--dlf-v2-card);
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
}

.dlf-v2-detail__amenity-item h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--dlf-v2-text);
    margin: 0.25rem 0 0;
}

.dlf-v2-detail__amenity-item p {
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    margin: 0.25rem 0 0;
}

.dlf-v2-detail__amenity-featured {
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 20, 28, 0.12);
}

.dlf-v2-detail__amenity-featured img {
    width: 100%;
    height: clamp(280px, 42vw, 520px);
    object-fit: cover;
    transition: transform 0.7s;
    display: block;
}

.dlf-v2-detail__amenity-featured:hover img {
    transform: scale(1.05);
}

.dlf-v2-detail__amenity-float {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: auto;
    background: rgba(11, 14, 19, 0.92);
    color: #fff;
    padding: 1rem 1.25rem;
    max-width: min(20rem, calc(100% - 3rem));
    box-shadow: 0 12px 32px rgba(15, 20, 28, 0.2);
}

.dlf-v2-detail__amenity-float p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
    font-weight: 600;
    margin: 0.25rem 0 0;
    color: #ffffff !important;
}

.dlf-v2-detail__amenity-float .dlf-v2-eyebrow {
    color: var(--dlf-v2-gold-light) !important;
}

.dlf-v2-detail__amenity-ribbon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    text-align: center;
    margin-top: 0;
}

@media (min-width: 768px) {
    .dlf-v2-detail__amenity-ribbon {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .dlf-v2-detail__amenity-ribbon {
        grid-template-columns: repeat(6, 1fr);
    }
}

.dlf-v2-detail__ribbon-item {
    background: var(--dlf-v2-card);
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
    transition: box-shadow 0.2s;
}

.dlf-v2-detail__ribbon-item:hover {
    box-shadow: 0 4px 12px rgba(15, 20, 28, 0.08);
}

.dlf-v2-detail__ribbon-title {
    display: block;
    font-size: 13px;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dlf-v2-text);
    margin-top: 0.5rem;
}

.dlf-v2-detail__ribbon-sub {
    display: block;
    font-size: 12px;
    color: var(--dlf-v2-text-muted);
    margin-top: 0.125rem;
}

/* Gallery */
.dlf-v2-detail__gallery {
    background: var(--dlf-v2-canvas);
    padding: 6.5rem 0;
}

.dlf-v2-detail__gallery-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .dlf-v2-detail__gallery-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.dlf-v2-detail__gallery-head h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.75rem, 3vw, 2.625rem);
    line-height: 1.15;
    color: var(--dlf-v2-text);
    margin: 0.25rem 0 0;
}

.dlf-v2-detail__gallery-nav {
    display: flex;
    gap: 0.5rem;
}

.dlf-v2-detail__gallery-btn {
    width: 44px;
    height: 44px;
    background: var(--dlf-v2-card);
    border: none;
    color: var(--dlf-v2-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.dlf-v2-detail__gallery-btn:hover,
.dlf-v2-detail__gallery-btn.is-pressed {
    background: var(--dlf-v2-obsidian);
    color: #fff;
}

.dlf-v2-detail__gallery-btn.is-pressed {
    transform: scale(0.9);
}

.dlf-v2-detail__gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

@media (min-width: 768px) {
    .dlf-v2-detail__gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        overflow: visible;
        scroll-snap-type: none;
    }
}

@media (min-width: 1024px) {
    .dlf-v2-detail__gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dlf-v2-detail__gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--dlf-v2-card);
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
    scroll-snap-align: start;
    min-width: 85%;
}

@media (min-width: 768px) {
    .dlf-v2-detail__gallery-item {
        min-width: 0;
    }
}

.dlf-v2-detail__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.dlf-v2-detail__gallery-item:hover img {
    transform: scale(1.1);
}

.dlf-v2-detail__gallery-caption {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(11, 14, 19, 0.88) 0%, rgba(11, 14, 19, 0.35) 45%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: #fff;
    pointer-events: none;
}

.dlf-homepage--property-detail .dlf-v2-detail__gallery-caption .dlf-v2-detail__gallery-label,
.dlf-v2-detail__gallery-caption .dlf-v2-detail__gallery-label {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif !important;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--dlf-v2-gold-light) !important;
    -webkit-text-fill-color: var(--dlf-v2-gold-light);
    margin: 0 0 0.25rem;
}

.dlf-homepage--property-detail .dlf-v2-detail__gallery-caption .dlf-v2-detail__gallery-title,
.dlf-v2-detail__gallery-caption .dlf-v2-detail__gallery-title {
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500 !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    letter-spacing: normal !important;
    margin: 0;
}

/* Floor plans */
.dlf-v2-detail__plans {
    background: var(--dlf-v2-card);
    padding: 6.5rem 0;
}

.dlf-v2-detail__plan-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem;
    background: var(--dlf-v2-subtle);
    padding: 0.25rem;
    margin-bottom: 2rem;
    max-width: 100%;
    overflow-x: auto;
}

.dlf-v2-detail__plan-tab {
    background: transparent;
    border: none;
    color: var(--dlf-v2-text-secondary);
    padding: 0.5rem 1.5rem;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

.dlf-v2-detail__plan-tab:hover {
    background: var(--dlf-v2-card);
}

.dlf-v2-detail__plan-tab.is-active {
    background: var(--dlf-v2-obsidian);
    color: #fff;
}

.dlf-v2-detail__plan-panels {
    background: var(--dlf-v2-canvas);
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
}

@media (min-width: 768px) {
    .dlf-v2-detail__plan-panels {
        padding: 3rem;
    }
}

.dlf-v2-detail__plan-panel {
    display: none;
}

.dlf-v2-detail__plan-panel.is-active {
    display: block;
}

.dlf-v2-detail__plan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .dlf-v2-detail__plan-grid {
        grid-template-columns: 5fr 7fr;
    }
}

.dlf-v2-detail__plan-copy h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    color: var(--dlf-v2-text);
    margin: 0.25rem 0;
}

.dlf-v2-detail__plan-copy > p {
    font-size: 15px;
    line-height: 26px;
    color: var(--dlf-v2-text-secondary);
    margin: 0.5rem 0 1rem;
}

.dlf-v2-detail__plan-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.dlf-v2-detail__plan-spec {
    background: var(--dlf-v2-card);
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 5rem;
}

.dlf-v2-detail__plan-spec .dlf-v2-detail__metric-label {
    display: block;
    margin-bottom: 0.35rem;
}

.dlf-v2-detail__plan-spec-value {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--dlf-v2-text);
    white-space: nowrap;
}

.dlf-v2-detail__plan-copy .dlf-v2-detail__plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    margin-top: 0.5rem;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.dlf-homepage--property-detail .dlf-v2-detail__plan-copy a.dlf-v2-detail__plan-cta,
.dlf-homepage--property-detail .dlf-v2-detail__plan-copy a.dlf-v2-detail__plan-cta:visited,
.dlf-homepage--property-detail .dlf-v2-detail__plan-copy a.dlf-v2-detail__plan-cta:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

.dlf-v2-detail__plan-cta svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.dlf-v2-detail__plan-bullets {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.dlf-v2-detail__plan-bullets li {
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    padding: 0.25rem 0 0.25rem 1.25rem;
    position: relative;
}

.dlf-v2-detail__plan-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__plan-visual {
    background: var(--dlf-v2-card);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(15, 20, 28, 0.08);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlf-v2-detail__plan-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.dlf-v2-detail__plan-mock {
    width: 100%;
    max-width: 32rem;
    aspect-ratio: 4 / 3;
    background: var(--dlf-v2-subtle);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dlf-v2-detail__plan-mock-head,
.dlf-v2-detail__plan-mock-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dlf-v2-text-muted);
}

.dlf-v2-detail__plan-mock-foot .is-accent {
    color: var(--dlf-v2-gold-deep);
    font-weight: 600;
}

.dlf-v2-detail__plan-mock-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin: auto 0;
}

.dlf-v2-detail__plan-mock-cell {
    background: var(--dlf-v2-canvas);
    padding: 0.5rem;
    font-size: 11px;
    color: var(--dlf-v2-text-secondary);
    box-shadow: 0 1px 2px rgba(15, 20, 28, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 4.5rem;
}

.dlf-v2-detail__plan-mock-cell strong {
    color: var(--dlf-v2-text);
    font-weight: 600;
}

/* Location */
.dlf-v2-detail__location {
    background: var(--dlf-v2-subtle);
    padding: 6.5rem 0;
}

.dlf-v2-detail__location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: stretch;
}

@media (min-width: 1024px) {
    .dlf-v2-detail__location-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dlf-v2-detail__connectivity {
    background: var(--dlf-v2-card);
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(15, 20, 28, 0.06);
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .dlf-v2-detail__connectivity {
        padding: 3rem;
    }
}

.dlf-v2-detail__connectivity h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 32px;
    color: var(--dlf-v2-text);
    margin: 0 0 1rem;
}

.dlf-v2-detail__connect-list {
    flex: 1;
}

.dlf-v2-detail__connect-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    background: var(--dlf-v2-canvas);
    padding: 0.75rem;
    margin-bottom: 0.75rem;
}

.dlf-v2-detail__connect-item h4 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--dlf-v2-text);
    margin: 0;
}

.dlf-v2-detail__connect-item p {
    font-size: 13px;
    line-height: 20px;
    color: var(--dlf-v2-text-secondary);
    margin: 0.25rem 0 0;
}

.dlf-v2-detail__connect-badge {
    flex-shrink: 0;
    background: var(--dlf-v2-subtle);
    color: var(--dlf-v2-text);
    font-size: 11px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.125rem 0.5rem;
    white-space: nowrap;
}

.dlf-v2-detail__connect-badge.is-primary {
    background: var(--dlf-v2-gold-deep);
    color: #fff;
}

.dlf-v2-detail__connect-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--dlf-v2-subtle);
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dlf-v2-text-muted);
}

.dlf-v2-detail__connect-foot a {
    color: var(--dlf-v2-gold-deep);
    text-decoration: none;
    transition: color 0.2s;
}

.dlf-v2-detail__connect-foot a:hover {
    color: var(--dlf-v2-text);
}

.dlf-v2-detail__map-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dlf-v2-detail__map {
    position: relative;
    height: 20rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(15, 20, 28, 0.08);
}

@media (min-width: 1024px) {
    .dlf-v2-detail__map {
        height: 24rem;
    }
}

.dlf-v2-detail__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.dlf-v2-detail__map-card {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(15, 20, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.dlf-v2-detail__map-card strong {
    display: block;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--dlf-v2-text);
    margin-top: 0.125rem;
}

.dlf-v2-detail__map-card a {
    width: 40px;
    height: 40px;
    background: var(--dlf-v2-obsidian);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.2s;
}

.dlf-v2-detail__map-card a:hover {
    background: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__visit-card {
    background: var(--dlf-v2-obsidian);
    color: #fff;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(15, 20, 28, 0.08);
}

.dlf-v2-detail__visit-card h4 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 0.5rem;
}

.dlf-v2-detail__visit-card > p {
    font-size: 13px;
    line-height: 20px;
    color: #dfe2ec;
    margin: 0;
}

.dlf-v2-detail__visit-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: #dfe2ec;
}

/* Inquiry */
.dlf-v2-detail__inquiry {
    background: var(--dlf-v2-canvas);
    padding: 9rem 0;
}

.dlf-v2-detail__inquiry-card {
    background: var(--dlf-v2-card);
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(15, 20, 28, 0.1);
}

@media (min-width: 768px) {
    .dlf-v2-detail__inquiry-card {
        padding: 3rem 4.5rem;
    }
}

.dlf-v2-detail__inquiry-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--dlf-v2-subtle);
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dlf-v2-text-muted);
    text-align: center;
}

@media (min-width: 640px) {
    .dlf-v2-detail__inquiry-foot {
        flex-direction: row;
        text-align: left;
    }
}

.dlf-v2-detail__inquiry-foot a {
    color: var(--dlf-v2-text);
    text-decoration: none;
    font-weight: 600;
}

.dlf-v2-detail__inquiry-foot a:hover {
    color: var(--dlf-v2-gold-deep);
}

.dlf-v2-detail__inquiry .dlf-homepage__contact-form {
    margin-top: 1.5rem;
}

.dlf-v2-detail__inquiry .dlf-homepage__field label,
.dlf-v2-detail__inquiry .dlf-homepage__privacy {
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-transform: uppercase;
}

.dlf-v2-detail__inquiry .dlf-homepage__field input,
.dlf-v2-detail__inquiry .dlf-homepage__field select,
.dlf-v2-detail__inquiry .dlf-homepage__field textarea {
    background: var(--dlf-v2-subtle);
    border: none;
    box-shadow: inset 0 1px 3px rgba(15, 20, 28, 0.06);
}

.dlf-v2-detail__inquiry .dlf-homepage__form-submit .btn {
    width: 100%;
    background: var(--dlf-v2-obsidian);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 13px;
    letter-spacing: 0.16em;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.dlf-v2-detail__inquiry .dlf-homepage__form-submit .btn:hover {
    background: var(--dlf-v2-gold-deep);
}
