/* ============================================
   PROPERTY PAGE CSS - Property Detail Styles
   ============================================ */

/* Page Background */
body {
    background: var(--white) !important;
}

main {
    background: var(--white);
}

section {
    position: relative;
    background: var(--white);
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 16px 0;
}

/* Breadcrumbs container uses main .container class */

.breadcrumbs-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(0,0,0,.6);
}

.breadcrumbs a {
    color: rgba(0,0,0,.6);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--orange);
}

.breadcrumbs-separator {
    font-size: 10px;
    color: rgba(0,0,0,.3);
}

.breadcrumbs-current {
    color: var(--black);
    font-weight: 400;
}

/* ===== Gallery Section ===== */
.property-gallery {
    padding: 32px 0;
    background: var(--white);
}

/* ===== Property Gallery Section - Professional Rebuild ===== */
.property-gallery-section {
    padding: 40px 0;
    position: relative;
    background: var(--white);
}

.property-gallery-wrapper {
    position: relative;
}

.property-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: var(--radius-22);
    overflow: hidden;
    min-height: 520px;
    border: 1px solid rgba(0,0,0,.08);
}

@media (min-width: 769px) {
    .property-gallery-grid {
        grid-template-columns: 2fr 1fr;
        grid-template-rows: 1fr 1fr;
        height: 520px;
    }
}

.property-gallery-main {
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,.1);
    border-radius: var(--radius-22);
}

@media (max-width: 768px) {
    .property-gallery-main {
        grid-row: span 1;
        min-height: 300px;
    }
}

.property-gallery-main .property-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.property-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.property-gallery-main:hover img {
    transform: scale(1.03);
}

.property-gallery-item {
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,.1);
    border-radius: var(--radius-22);
}

.property-gallery-item-top {
    grid-column: 2;
    grid-row: 1;
}

.property-gallery-item-bottom {
    grid-column: 2;
    grid-row: 2;
}

@media (max-width: 768px) {
    .property-gallery-item-top,
    .property-gallery-item-bottom {
        grid-column: 1;
        min-height: 150px;
    }
}

.property-gallery-item .property-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.property-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.property-gallery-item:hover img {
    transform: scale(1.03);
}

.property-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.property-gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.property-gallery-overlay-content i {
    font-size: 24px;
    margin-bottom: 4px;
    display: block;
}

.property-gallery-more-count {
    font-size: 18px;
    font-weight: 900;
    display: block;
    margin: 0;
}

.property-gallery-more-text {
    font-size: 11px;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.property-gallery-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    color: var(--black);
    padding: 10px 20px;
    border-radius: var(--radius-18);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid rgba(0,0,0,.12);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.property-gallery-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.property-gallery-button i {
    color: var(--orange);
    font-size: 16px;
}

.property-gallery-button-count {
    background: rgba(255, 59, 20, .15);
    color: var(--orange);
    padding: 2px 8px;
    border-radius: var(--radius-999);
    font-size: 11px;
    font-weight: 700;
}

.property-gallery-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(6px);
    padding: 12px 20px;
    border-radius: var(--radius-18);
    border: 2px solid rgba(0,0,0,.12);
    z-index: 10;
}

.property-gallery-info-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.property-gallery-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-gallery-info-item i {
    color: var(--orange);
    font-size: 12px;
}

.property-gallery-info-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
}

.property-gallery-info-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 59, 20, .1);
    border-radius: var(--radius-999);
}

.property-gallery-info-badge i {
    color: var(--orange);
    font-size: 10px;
}

.property-gallery-info-badge span:first-of-type {
    font-size: 12px;
    font-weight: 900;
    color: var(--black);
}

.property-gallery-info-badge span:last-of-type {
    font-size: 10px;
    color: rgba(0,0,0,.6);
}

.property-gallery-info-features {
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-gallery-info-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
}

.property-gallery-info-features i {
    color: var(--orange);
    font-size: 12px;
}

.property-gallery-no-images {
    border-radius: var(--radius-22);
    overflow: hidden;
    height: 520px;
}

.property-gallery-no-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-gallery-link {
    cursor: pointer;
    position: relative;
    z-index: 1;
    pointer-events: auto !important;
    text-decoration: none;
}

.property-gallery-link.glightbox,
.property-gallery-link.property-gallery-trigger {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.property-gallery-link.glightbox img,
.property-gallery-link.property-gallery-trigger img {
    pointer-events: none;
    user-select: none;
}

/* Simple photo viewer (no external library) */
.simple-photo-viewer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
.simple-photo-viewer[hidden] {
    display: none !important;
}
.simple-photo-viewer.simple-photo-viewer--open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}
.simple-photo-viewer__img {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.simple-photo-viewer__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}
.simple-photo-viewer__close:hover {
    background: #ff4a17;
    color: #fff;
    transform: scale(1.05);
}
.simple-photo-viewer__prev,
.simple-photo-viewer__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}
.simple-photo-viewer__prev { left: 24px; }
.simple-photo-viewer__next { right: 24px; }
.simple-photo-viewer__prev:hover,
.simple-photo-viewer__next:hover {
    background: #ff4a17;
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}
.simple-photo-viewer__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    z-index: 10;
}
@media (max-width: 768px) {
    .simple-photo-viewer__close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 18px; }
    .simple-photo-viewer__prev, .simple-photo-viewer__next { width: 44px; height: 44px; font-size: 18px; }
    .simple-photo-viewer__prev { left: 12px; }
    .simple-photo-viewer__next { right: 12px; }
    .simple-photo-viewer__counter { bottom: 16px; font-size: 13px; padding: 8px 16px; }
}

/* GLightbox Styles for Adjacent Slides Effect */
.glightbox-container {
    overflow: visible !important;
    position: relative !important;
}

.glightbox-slides {
    overflow: visible !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.glightbox-slides-wrapper {
    overflow: visible !important;
}

.gslide {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gslide.current {
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: blur(0) !important;
    z-index: 10 !important;
    position: relative !important;
}

.gslide.prev {
    display: block !important;
    opacity: 0.3 !important;
    transform: scale(0.85) translateX(-30%) !important;
    filter: blur(4px) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -25% !important;
    top: 50% !important;
    margin-top: -25% !important;
}

.gslide.next {
    display: block !important;
    opacity: 0.3 !important;
    transform: scale(0.85) translateX(30%) !important;
    filter: blur(4px) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    position: absolute !important;
    right: -25% !important;
    top: 50% !important;
    margin-top: -25% !important;
}

/* Gallery container uses main .container class */

.gallery-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-radius: var(--radius-22);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    height: 520px;
}

.gallery-main {
    grid-column: span 4;
    grid-row: span 2;
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,.1);
    min-height: 0;
}

@media (min-width: 769px) {
    .gallery-main {
        grid-column: span 2;
    }
}

.gallery-main a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: rgba(0,0,0,.1);
    min-height: 0;
}

@media (min-width: 769px) {
    .gallery-item-top {
        grid-column: span 1;
    }
    
    .gallery-item-bottom {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-item-top,
    .gallery-item-bottom {
        grid-column: span 1 !important;
    }
}

.gallery-main a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    backdrop-filter: blur(2px);
    display: grid;
    place-items: center;
    transition: all 0.3s ease;
}

.gallery-overlay-content {
    text-align: center;
    color: var(--white);
}

.gallery-overlay-content i {
    font-size: 24px;
    margin-bottom: 4px;
    display: block;
}

.gallery-overlay-content p:first-of-type {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.gallery-overlay-content p:last-of-type {
    font-size: 11px;
    opacity: 0.9;
    margin: 4px 0 0;
}

.gallery-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    color: var(--black);
    padding: 10px 20px;
    border-radius: var(--radius-18);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    border: 2px solid rgba(0,0,0,.12);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.gallery-btn i {
    color: var(--orange);
    font-size: 16px;
}

.gallery-btn-count {
    background: rgba(255, 59, 20, .15);
    color: var(--orange);
    padding: 2px 8px;
    border-radius: var(--radius-999);
    font-size: 11px;
    font-weight: 700;
}

.gallery-info {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(6px);
    padding: 12px 20px;
    border-radius: var(--radius-18);
    border: 2px solid rgba(0,0,0,.12);
}

.gallery-info-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-info-item i {
    color: var(--orange);
    font-size: 12px;
}

.gallery-info-item span {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
}

.gallery-info-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 59, 20, .1);
    border-radius: var(--radius-999);
}

.gallery-info-badge i {
    color: var(--orange);
    font-size: 10px;
}

.gallery-info-badge span:first-of-type {
    font-size: 12px;
    font-weight: 900;
    color: var(--black);
}

.gallery-info-badge span:last-of-type {
    font-size: 10px;
    color: rgba(0,0,0,.6);
}

.gallery-info-features {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: rgba(0,0,0,.6);
    font-weight: 400;
}

.gallery-info-features span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gallery-info-features i {
    color: var(--orange);
}

/* GLightbox Clean */
.glightbox {
    cursor: pointer;
    position: relative;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.glightbox:hover {
    text-decoration: none;
    transform: scale(1.02);
    opacity: 0.9;
}

.glightbox::before,
.glightbox::after,
.glightbox-clean::before,
.glightbox-clean::after,
.no-icon::before,
.no-icon::after {
    display: none !important;
    content: none !important;
}

/* Enhanced GLightbox Modal Styles */
.gslide-media {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.gslide-image img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gslide-image img:hover {
    transform: scale(1.05);
}

/* Lightbox Navigation Buttons */
.gbtn-next,
.gbtn-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
}

.gbtn-next:hover,
.gbtn-prev:hover {
    background: rgba(255, 74, 23, 0.95) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 74, 23, 0.4);
}

.gbtn-next svg,
.gbtn-prev svg {
    width: 24px;
    height: 24px;
    fill: #333;
    transition: fill 0.3s ease;
}

.gbtn-next:hover svg,
.gbtn-prev:hover svg {
    fill: #fff;
}

/* Close Button */
.gbtn-close {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    top: 20px;
    right: 20px;
}

.gbtn-close:hover {
    background: rgba(239, 68, 68, 0.95) !important;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.gbtn-close svg {
    width: 20px;
    height: 20px;
    fill: #333;
    transition: fill 0.3s ease;
}

.gbtn-close:hover svg {
    fill: #fff;
}

/* Lightbox Overlay */
.glightbox-overlay {
    background: rgba(0, 0, 0, 0.92) !important;
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

/* Ensure slides wrapper allows overflow for adjacent slides */
.glightbox-slides-wrapper {
    overflow: visible !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Lightbox Content Animation */
.gslide {
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Ensure slides container allows overflow for adjacent slides */
.glightbox-container {
    overflow: visible !important;
    position: relative !important;
}

.glightbox-slides {
    overflow: visible !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.glightbox-slides-wrapper {
    overflow: visible !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Ensure slides container allows overflow for adjacent slides */
.glightbox-slides {
    overflow: visible !important;
}

/* Adjacent slides container - allow positioning */
.glightbox-container .gslide {
    position: relative;
}

/* Counter/Description */
.glightbox-desc {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Thumbnail Navigation (if enabled) */
.glightbox-thumbs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.glightbox-thumb {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.glightbox-thumb:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.glightbox-thumb.active {
    border: 2px solid #ff4a17;
    transform: scale(1.05);
}

/* Property gallery slider: counter + thumbnail strip */
.property-lightbox-counter {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    z-index: 20;
    pointer-events: none;
}

.property-lightbox-thumbs {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    max-width: calc(100vw - 40px);
    overflow-x: auto;
    z-index: 20;
    scroll-behavior: smooth;
}

.property-lightbox-thumbs::-webkit-scrollbar {
    height: 6px;
}

.property-lightbox-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.property-lightbox-thumb {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #333;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, opacity 0.2s;
}

.property-lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-lightbox-thumb:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.property-lightbox-thumb.active {
    border-color: #ff4a17;
    box-shadow: 0 0 0 1px #ff4a17;
}

/* Loading Spinner */
.glightbox-loader {
    border-color: #ff4a17;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gbtn-next,
    .gbtn-prev {
        width: 40px;
        height: 40px;
    }
    
    .gbtn-next svg,
    .gbtn-prev svg {
        width: 20px;
        height: 20px;
    }
    
    .gbtn-close {
        width: 36px;
        height: 36px;
        top: 10px;
        right: 10px;
    }
    
    .gslide-media {
        border-radius: 8px;
    }
    
    .property-lightbox-counter {
        bottom: 80px;
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .property-lightbox-thumbs {
        bottom: 12px;
        padding: 8px 10px;
        max-width: calc(100vw - 24px);
    }
    
    .property-lightbox-thumb {
        width: 44px;
        height: 44px;
    }
}

/* ===== Property Title Section ===== */
.property-title-section {
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 40px 0;
}

/* Title section container uses main .container class */

.property-title-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
}

@media (min-width: 1024px) {
    .property-title-grid {
        grid-template-columns: 1fr 380px;
    }
}

.property-title-main h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.property-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.property-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(0,0,0,.6);
}

.property-meta-item i {
    color: var(--orange);
}

.property-meta-item span {
    font-weight: 400;
}

.property-meta-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 59, 20, .1);
    border-radius: var(--radius-999);
}

.property-meta-badge i {
    color: var(--orange);
    font-size: 14px;
}

.property-meta-badge span:first-of-type {
    font-weight: 900;
    color: var(--black);
}

.property-meta-badge span:last-of-type {
    font-size: 13px;
    color: rgba(0,0,0,.5);
}

.property-meta-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(59, 130, 246, .1);
    border-radius: var(--radius-999);
}

.property-meta-verified i {
    color: #3b82f6;
    font-size: 14px;
}

.property-meta-verified span {
    font-size: 13px;
    font-weight: 400;
    color: #1e40af;
}

.property-features-box {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-22);
    border: 1px solid rgba(0,0,0,.08);
}

.property-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.property-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-18);
    background: rgba(255, 59, 20, .1);
    display: grid;
    place-items: center;
}

.property-feature-icon i {
    color: var(--orange);
}

.property-feature-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
}

.property-feature-label {
    font-size: 11px;
    color: rgba(0,0,0,.5);
    font-weight: 400;
}

.property-feature-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,.1);
}

/* ===== Booking Card ===== */
.booking-card {
    position: sticky;
    top: 100px;
    background: var(--white);
    border-radius: var(--radius-26);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,.06);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
}

.booking-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.booking-price__amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--black);
}

.booking-price__unit {
    font-size: 16px;
    color: rgba(0,0,0,.5);
    font-weight: 500;
}

.booking-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #16a34a;
    font-weight: 400;
    margin-bottom: 24px;
}

.booking-btn {
    width: 100%;
    height: 56px;
    border-radius: var(--radius-999);
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.booking-btn:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.booking-feature {
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-18);
    border: 1px solid rgba(0,0,0,.08);
    text-align: center;
    font-size: 11px;
    color: rgba(0,0,0,.6);
}

.booking-feature i {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

/* ===== Property Container ===== */
.property-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .property-container {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 40px;
    }
}

.property-main {
    display: grid;
    gap: 32px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.property-sidebar {
    display: grid;
    gap: 24px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .property-sidebar {
        width: 380px;
        min-width: 380px;
        max-width: 380px;
    }
}

.property-section {
    padding: 60px 0;
    background: var(--white);
}

/* ===== Property Cards ===== */
.property-card {
    background: var(--white);
    border-radius: var(--radius-26);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,.06);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.property-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.property-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-18);
    background: rgba(255, 59, 20, .1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.property-card__icon i {
    color: var(--orange);
    font-size: 20px;
}

.property-card__title {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    line-height: 1.2;
}

.property-card__subtitle {
    margin: 4px 0 0;
    font-size: 14px;
    color: rgba(0,0,0,.5);
    font-weight: 400;
}

/* ===== Property Info Grid ===== */
.property-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.08);
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.property-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius-18);
    border: 1px solid rgba(0,0,0,.08);
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.property-info-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-18);
    background: rgba(255, 59, 20, .1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.property-info-icon i {
    color: var(--orange);
    font-size: 18px;
}

.property-info-label {
    font-size: 11px;
    color: rgba(0,0,0,.5);
    margin-bottom: 4px;
    font-weight: 400;
}

.property-info-value {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
}

/* ===== Amenities ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.amenity-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-22);
    border: 1px solid rgba(0,0,0,.08);
    transition: all 0.3s ease;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    word-wrap: break-word;
}

.amenity-item:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-18);
    background: rgba(255, 59, 20, .1);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.amenity-icon i {
    color: var(--orange);
    font-size: 20px;
}

.amenity-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 4px;
}

.amenity-desc {
    font-size: 13px;
    color: rgba(0,0,0,.6);
    line-height: 1.5;
}

/* ===== Tabs ===== */
.tab-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    padding: 4px;
    background: rgba(0,0,0,.04);
    border-radius: var(--radius-22);
}

.tab-btn {
    padding: 10px 20px;
    border-radius: var(--radius-18);
    font-weight: 400;
    font-size: 14px;
    border: none;
    background: transparent;
    cursor: pointer;
    color: rgba(0,0,0,.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn[aria-selected="true"] {
    background: var(--white);
    color: var(--black);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.tab-btn:hover {
    color: var(--orange);
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== Reviews ===== */
.review-card {
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-22);
    border: 1px solid rgba(0,0,0,.08);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-soft);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 59, 20, .1);
    display: grid;
    place-items: center;
}

.review-avatar i {
    color: var(--orange);
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--black);
}

.review-date {
    font-size: 12px;
    color: rgba(0,0,0,.5);
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars i {
    font-size: 14px;
    color: #fbbf24;
}

.review-text {
    font-size: 14px;
    color: rgba(0,0,0,.7);
    line-height: 1.6;
}

/* ===== Forms ===== */
.property-form-group {
    margin-bottom: 20px;
}

.property-form-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.property-form-input,
.property-form-textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-999);
    border: 1px solid rgba(0,0,0,.12);
    background: var(--white);
    font-size: 14px;
    color: var(--black);
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: all 0.2s ease;
}

.property-form-textarea {
    border-radius: var(--radius-22);
    resize: vertical;
    min-height: 120px;
}

.property-form-input:focus,
.property-form-textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 59, 20, .1);
}

.property-btn {
    padding: 14px 28px;
    border-radius: var(--radius-999);
    background: var(--orange);
    color: var(--white);
    font-weight: 800;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.property-btn:hover {
    filter: brightness(.95);
    transform: translateY(-1px);
}

.property-btn-secondary {
    background: rgba(0,0,0,.06);
    color: var(--black);
}

.property-btn-secondary:hover {
    background: rgba(0,0,0,.1);
}

/* ===== Star Rating ===== */
.star-rating {
    direction: ltr;
    display: flex;
    gap: 4px;
}

.star-input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 24px;
    transition: color 0.2s;
    color: #d1d5db;
}

.star-input:checked ~ label,
.star-input:checked ~ label ~ label {
    color: var(--orange) !important;
}

.star-rating:hover .star-input ~ label {
    color: var(--orange) !important;
}

.star-rating .star-input:hover ~ label {
    color: #d1d5db !important;
}

/* ===== Location Map ===== */
.map-container {
    position: relative;
    height: 384px;
    width: 100%;
    border-radius: var(--radius-18);
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(6px);
    padding: 8px 16px;
    border-radius: var(--radius-18);
    border: 1px solid rgba(0,0,0,.08);
}

.map-overlay-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.map-overlay-inner i {
    color: var(--orange);
}

.map-overlay-inner span {
    font-weight: 400;
    color: var(--black);
}

/* ===== Similar Properties ===== */
.similar-property-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border-radius: var(--radius-22);
    border: 1px solid rgba(0,0,0,.08);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 16px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.similar-property-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--orange);
}

.similar-property-image {
    width: 96px;
    height: 80px;
    border-radius: var(--radius-18);
    object-fit: cover;
    flex-shrink: 0;
}

.similar-property-content {
    flex: 1;
    min-width: 0;
}

.similar-property-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.similar-property-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.similar-property-price-value {
    font-size: 16px;
    font-weight: 900;
    color: var(--orange);
}

.similar-property-price-unit {
    font-size: 11px;
    color: rgba(0,0,0,.5);
}

.similar-property-arrow {
    color: rgba(0,0,0,.4);
    font-size: 14px;
    transition: all 0.3s ease;
}

.similar-property-item:hover .similar-property-arrow {
    transform: translateX(4px);
    color: var(--orange);
}

/* ===== Mobile CTA ===== */
.mobile-cta {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 70;
    padding-top: 16px;
    background: linear-gradient(to top, var(--white), var(--white), transparent);
    display: none;
}

.mobile-cta-inner {
    margin: 0 16px 16px;
    padding: 20px;
    border-radius: var(--radius-26);
    background: var(--white);
    border: 2px solid rgba(255, 59, 20, .2);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-cta-price-label {
    font-size: 10px;
    color: rgba(0,0,0,.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.mobile-cta-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.mobile-cta-price-value {
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
}

.mobile-cta-price-unit {
    font-size: 11px;
    color: rgba(0,0,0,.5);
}

/* ===== Responsive ===== */
/* Responsive Breakpoints */
@media (max-width: 1200px) {
    .property-container {
        padding: 0 24px;
    }
    
    .booking-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 1023px) {
    .property-title-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .property-container {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    
    .property-sidebar {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    
    .property-main {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .property-section {
        padding: 40px 0;
    }
    
    .property-container {
        padding: 0 16px;
        gap: 24px;
        grid-template-columns: 1fr !important;
    }
    
    .property-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
    
    .property-main {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .property-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .property-title-section {
        padding: 24px 0;
    }
    
    .property-title-grid {
        gap: 24px;
    }
    
    .property-title-main h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .property-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .property-features-box {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        padding: 16px;
    }
    
    .property-feature-divider {
        display: none;
    }
    
    .property-feature-item {
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,.08);
        gap: 16px;
    }
    
    .property-feature-item:last-child {
        border-bottom: none;
    }
    
    .property-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .booking-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .property-card {
        padding: 20px;
        border-radius: var(--radius-22);
    }
    
    .property-card__title {
        font-size: 22px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 4px;
    }
    
    .gallery-main {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
        min-height: 300px;
    }
    
    .gallery-item {
        height: 150px;
        min-height: 150px;
        grid-column: span 1 !important;
    }
    
    .gallery-info {
        position: static;
        margin: 12px 0;
        width: 100%;
    }
    
    .gallery-info-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .gallery-btn {
        position: static;
        width: 100%;
        margin: 12px 0 0;
        justify-content: center;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .breadcrumbs {
        padding: 12px 0;
    }
    
    .breadcrumbs-inner {
        flex-wrap: wrap;
        font-size: 12px;
    }
    
    .property-gallery {
        padding: 24px 0;
    }
}

@media (max-width: 480px) {
    .property-title-main h1 {
        font-size: 28px;
    }
    
    .property-card {
        padding: 16px;
    }
    
    .property-card__title {
        font-size: 20px;
    }
    
    .gallery-main {
        height: 250px;
        min-height: 250px;
    }
    
    .gallery-item {
        height: 120px;
        min-height: 120px;
    }
    
    .booking-price__amount {
        font-size: 36px;
    }
    
    .property-feature-value {
        font-size: 18px;
    }
    
    .amenity-item {
        padding: 16px;
    }
    
    .tab-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
}
