:root {
    --luxe-gold: #D4AF37;
    --luxe-gold-light: #E4C76D;
    --luxe-dark: #1A1A2E;
    --luxe-text: #2C3E50;
    --luxe-text-light: #6C757D;
    --luxe-border: #E8E8E8;
    --luxe-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--luxe-text);
    background: #FAFAFA;
    overflow-x: clip; /* clip instead of hidden — prevents horizontal scroll without breaking position:sticky */
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide.luxe-property-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    width: 100%;
}

.luxe-property-layout {
    overflow-x: clip; /* clip instead of hidden — prevents horizontal scroll without breaking position:sticky */
    width: 100%;
}

.luxe-gallery-section {
    position: relative;
    overflow: hidden;
    margin: 0 0 2rem;
    padding: 0;
}

/* Sticky Top Bar */
.luxe-property-topbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: white;
    box-shadow: var(--luxe-shadow);
    border-bottom: 2px solid var(--luxe-gold);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.luxe-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.luxe-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.luxe-breadcrumb-nav a {
    color: var(--luxe-text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.luxe-breadcrumb-nav a:hover {
    color: var(--luxe-gold);
}

.luxe-breadcrumb-separator {
    color: var(--luxe-text-light);
}

.luxe-breadcrumb-current {
    color: var(--luxe-text);
    font-weight: 700;
}

.luxe-topbar-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.luxe-action-btn {
    height: 44px;
    padding: 0 1.25rem;
    border: 2px solid var(--luxe-border);
    border-radius: 8px;
    background: white;
    color: var(--luxe-text);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.luxe-action-btn:hover {
    border-color: var(--luxe-border);
    background: white;
    transform: translateY(-1px);
}

.luxe-action-btn.primary {
    background: white;
    border-color: var(--luxe-border);
    color: var(--luxe-text);
    box-shadow: var(--luxe-shadow);
}

.luxe-action-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--luxe-shadow);
}

.luxe-action-btn i {
    font-size: 0.875rem;
}

/* Mobile: Hide topbar actions (moved to bottom bar) */
@media (max-width: 768px) {
    .luxe-topbar {
        padding: 0.75rem 0;
    }
    
    .luxe-topbar-actions {
        display: none;
    }
    
    .luxe-breadcrumb {
        font-size: 0.75rem;
    }
    
    .luxe-action-btn {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
        border-radius: 8px;
        min-width: 44px;
    }
    
    .luxe-action-btn span {
        display: none;
    }
    
    .luxe-action-btn i {
        font-size: 1.25rem;
        margin: 0;
    }
    
    .luxe-breadcrumb-nav {
        font-size: 0.75rem;
    }
}

/* Gallery Section - Luxurious Grid Layout */
.luxe-gallery-section {
    padding: 0;
    margin-top: 1rem;
    margin-bottom: 2rem;
    background: white;
}

/* Desktop: Grid Layout - 1 grande esquerda + 2 pequenas direita */
.luxe-gallery-container {
    position: relative;
    display: grid !important;
    grid-template-columns: 1.35fr 0.65fr !important;
    grid-template-rows: 1fr 1fr !important;
    gap: 0.75rem;
    height: min(60vh, 480px);
    background: white;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.luxe-gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Círculo dourado de fundo */
.luxe-gallery-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    background: rgba(212, 175, 55, 0.95);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
    transform: scale(0);
}

.luxe-gallery-item:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Ícone de expandir moderno */
.luxe-gallery-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin-left: -12px;
    margin-top: -12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231A1A2E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cpolyline points='9 21 3 21 3 15'/%3E%3Cline x1='21' y1='3' x2='14' y2='10'/%3E%3Cline x1='3' y1='21' x2='10' y2='14'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 3;
    opacity: 0;
    transition: all 0.3s ease;
    transform: scale(0);
}

.luxe-gallery-item:hover::after {
    opacity: 1;
    transform: scale(1);
}

.luxe-gallery-item:first-child {
    grid-row: span 2 !important;
}

.luxe-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.luxe-gallery-item:hover img {
    transform: scale(1.08);
}

/* Lightbox Luxuoso */
.luxe-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.luxe-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.luxe-lightbox-content {
    position: relative;
    width: min(1240px, 96vw);
    max-height: 92vh;
    padding: 1.25rem 4.75rem 3.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.luxe-lightbox-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 80px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .luxe-lightbox-content {
        width: min(100vw, 100vw);
        max-height: 100vh;
        padding: 1rem 3.5rem 3.5rem;
    }

    .luxe-lightbox-image {
        max-width: 100vw;
        max-height: 80vh;
    }
}

.luxe-lightbox-close {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--luxe-dark);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxe-lightbox-close:hover {
    background: var(--luxe-gold);
    transform: rotate(90deg) scale(1.1);
}

.luxe-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--luxe-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 24;
}

.luxe-lightbox-nav:hover {
    background: var(--luxe-gold);
    transform: translateY(-50%) scale(1.1);
}

.luxe-lightbox-prev {
    left: 0.25rem;
}

.luxe-lightbox-next {
    right: 0.25rem;
}

.luxe-lightbox-counter {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: var(--luxe-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    z-index: 12;
}

/* Mobile: Carousel com Swiper */
@media (max-width: 768px) {
    .luxe-gallery-container {
        display: block !important;
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
    }
    
    .luxe-gallery-desktop {
        display: none !important;
    }
    
    .luxe-gallery-mobile {
        display: block !important;
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .luxe-lightbox-close,
    .luxe-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .luxe-lightbox-prev {
        left: 0;
    }

    .luxe-lightbox-next {
        right: 0;
    }
    
    .swiper-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .swiper-wrapper {
        height: 100%;
    }
    
    .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }
    
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .swiper-pagination {
        bottom: 20px !important;
    }

    /* Similar posts: evitar slides estreitos */
    #similarSwiper .swiper-slide {
        height: auto;
        align-items: stretch;
        justify-content: stretch;
    }

    #similarSwiper .luxe-property-card {
        width: 100%;
    }
    
    .swiper-pagination-bullet {
        background: white;
        opacity: 0.7;
    }
    
    .swiper-pagination-bullet-active {
        background: var(--luxe-gold);
        opacity: 1;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        color: white;
        background: rgba(0, 0, 0, 0.5);
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px;
    }
}

@media (min-width: 769px) {
    .luxe-gallery-mobile {
        display: none !important;
    }
    
    .luxe-gallery-desktop {
        display: grid !important;
    }
}

.luxe-gallery-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    display: flex;
    gap: 0.75rem;
    pointer-events: none;
}

.luxe-badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.luxe-badge.featured {
    background: linear-gradient(135deg, var(--luxe-gold) 0%, var(--luxe-gold-light) 100%);
    color: var(--luxe-dark);
}

.luxe-badge.new {
    background: #FF6B6B;
    color: white;
}

.luxe-gallery-count {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxe-gallery-count:hover {
    background: var(--luxe-gold);
    color: var(--luxe-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Main Content Layout */
.luxe-property-layout {
    padding: 2rem 0;
}

.luxe-content-grid {
    display: grid;
    grid-template-columns: 1fr var(--layout-sidebar-width);
    gap: 2rem;
    align-items: start;
}

/* Left Column - Main Content */
.luxe-main-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.luxe-content-card {
    background: white;
    border: 2px solid var(--luxe-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--luxe-shadow);
}

.luxe-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--luxe-gold);
}

.luxe-card-icon {
    color: var(--luxe-gold);
    font-size: 1.5rem;
}

.luxe-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--luxe-dark);
}

/* Property Title Section */
.luxe-property-title-section {
    margin-bottom: 2rem;
}

.luxe-property-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxe-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.luxe-property-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    color: var(--luxe-text-light);
    font-size: 0.9375rem;
}

.luxe-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.luxe-meta-item i {
    color: var(--luxe-gold);
    font-size: 1rem;
}

/* Property Price */
.luxe-property-price-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 46, 0.05) 100%);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.luxe-price-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--luxe-gold);
    margin-bottom: 0.5rem;
}

.luxe-price-frequency {
    font-size: 1.125rem;
    color: var(--luxe-text-light);
    font-weight: 600;
}

/* Property Features Grid */
.luxe-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.luxe-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    border: 2px solid var(--luxe-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.luxe-feature-item:hover {
    border-color: var(--luxe-gold);
    transform: translateY(-2px);
}

.luxe-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--luxe-gold) 0%, var(--luxe-gold-light) 100%);
    border-radius: 12px;
    color: var(--luxe-dark);
    font-size: 1.25rem;
}

.luxe-feature-info h4 {
    font-size: 0.875rem;
    color: var(--luxe-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.luxe-feature-info p {
    font-size: 1.125rem;
    color: var(--luxe-text);
    font-weight: 700;
}

/* Description */
.luxe-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--luxe-text);
}

/* Amenities Grid */
.luxe-amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.luxe-amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    border: 1px solid var(--luxe-border);
    border-radius: 10px;
    font-weight: 600;
    color: var(--luxe-text);
}

.luxe-amenity-item i {
    color: var(--luxe-gold);
    font-size: 1.125rem;
}

/* Right Column - Sidebar */
.luxe-sidebar-column {
    position: relative;
    max-height: none;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.luxe-sidebar-column::-webkit-scrollbar {
    width: 6px;
}

.luxe-sidebar-column::-webkit-scrollbar-track {
    background: var(--luxe-border);
    border-radius: 3px;
}

.luxe-sidebar-column::-webkit-scrollbar-thumb {
    background: var(--luxe-gold);
    border-radius: 3px;
}

.luxe-sidebar-card {
    background: white;
    border: 2px solid var(--luxe-border);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--luxe-shadow);
}

/* Contact Card */
.luxe-contact-card {
    text-align: left;
}

@media (min-width: 992px) {
    .luxe-property-layout,
    .container-wide.luxe-property-layout,
    .luxe-content-grid {
        overflow: visible;
        overflow-x: visible; /* explicitly override overflow-x: clip for sticky compatibility */
    }
    .luxe-sidebar-column {
        align-self: start;
        position: sticky;
        top: calc(var(--luxe-topbar-height, 90px) + 12px);
    }
    .luxe-sidebar-card.luxe-contact-card {
        position: static !important;
        top: auto;
        z-index: 1;
        height: fit-content;
    }
}

.luxe-agent-header {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.luxe-agent-avatar-inline {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--luxe-gold);
    object-fit: cover;
    flex-shrink: 0;
}

.luxe-agent-avatar-inline-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2518 0%, #b7a56a 100%);
    color: #fefcf5;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.luxe-agent-avatar-inline-fallback.is-hidden {
    display: none;
}

.luxe-agent-info {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.luxe-agent-text {
    flex: 1;
    min-width: 0;
}

.luxe-agent-info .luxe-card-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--luxe-dark);
}

.luxe-agent-subtitle {
    font-size: 0.875rem;
    color: var(--luxe-text-light);
    font-weight: 600;
    margin: 0;
}

/* Legacy styles for old avatar (keep for backup) */
.luxe-agent-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--luxe-gold);
    margin: 0 auto 1rem;
    object-fit: cover;
}

.luxe-agent-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--luxe-dark);
    margin-bottom: 0.5rem;
}

.luxe-agent-title {
    font-size: 0.9375rem;
    color: var(--luxe-text-light);
    margin-bottom: 1.5rem;
}

.luxe-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.luxe-form-group label {
    display: block;
    font-weight: 700;
    color: var(--luxe-dark);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.luxe-form-input,
.luxe-form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--luxe-border);
    border-radius: 10px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.luxe-form-input:focus,
.luxe-form-textarea:focus {
    outline: none;
    border-color: var(--luxe-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.luxe-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.luxe-quick-contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.luxe-btn-quick-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid;
}

.luxe-btn-quick-contact.whatsapp {
    background: var(--brand-whatsapp);
    color: var(--bg-white);
    border-color: var(--brand-whatsapp);
    grid-column: 1 / -1;
}

.luxe-btn-quick-contact.whatsapp:hover {
    background: color-mix(in srgb, var(--brand-whatsapp) 85%, var(--secondary-color) 15%);
    border-color: color-mix(in srgb, var(--brand-whatsapp) 85%, var(--secondary-color) 15%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.luxe-btn-quick-contact.phone {
    background: white;
    color: var(--luxe-text);
    border-color: var(--luxe-border);
}

.luxe-btn-quick-contact.send {
    background: white;
    color: var(--luxe-text);
    border-color: var(--luxe-border);
}

.luxe-btn-quick-contact.phone:hover {
    background: var(--bg-light);
    color: var(--luxe-text);
    border-color: var(--luxe-border);
    transform: translateY(-1px);
    box-shadow: var(--luxe-shadow);
}

.luxe-btn-quick-contact.send:hover {
    background: var(--bg-light);
    color: var(--luxe-text);
    border-color: var(--luxe-border);
    transform: translateY(-1px);
    box-shadow: var(--luxe-shadow);
}

.luxe-btn-quick-contact i {
    font-size: 1.125rem;
}

.luxe-btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--luxe-gold) 0%, var(--luxe-gold-light) 100%);
    border: none;
    border-radius: 12px;
    color: var(--luxe-dark);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.luxe-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Share Card */
.luxe-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.luxe-share-btn {
    flex: 1;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 2px solid var(--luxe-border);
    background: white;
    color: var(--luxe-text);
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxe-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.luxe-share-btn.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.luxe-share-btn.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.luxe-share-btn.whatsapp:hover {
    background: var(--brand-whatsapp);
    border-color: var(--brand-whatsapp);
    color: var(--bg-white);
}

.luxe-share-btn.copy:hover {
    background: var(--luxe-gold);
    border-color: var(--luxe-gold);
    color: var(--luxe-dark);
}

/* Map Card */
.luxe-map-embed {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: 2px solid var(--luxe-border);
}

/* Similar Properties */
.luxe-similar-section {
    position: relative;
    margin: 4rem 0;
    padding: 3rem 0;
    overflow: hidden;
}

.luxe-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.luxe-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxe-dark);
    margin-bottom: 0.5rem;
}

.luxe-section-subtitle {
    font-size: 1.125rem;
    color: var(--luxe-text-light);
}

.luxe-property-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.luxe-property-card:hover {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    transform: translateY(-6px);
    color: var(--text-primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.luxe-property-image {
    position: relative;
    box-shadow: var(--luxe-shadow);
    overflow: hidden;
    height: 220px;
}

.luxe-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.luxe-property-card:hover .luxe-property-image img {
    transform: scale(1.1);
}

.luxe-property-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.luxe-property-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.luxe-property-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.luxe-property-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    min-height: 1.5em;
}

.luxe-property-specs {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: auto;
}

.luxe-property-specs span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.luxe-property-specs i {
    color: var(--primary-color);
}

/* Swiper Customization */
#similarSwiper {
    padding: 1rem 0 3rem;
    width: 100%;
    overflow: hidden;
}

.luxe-swiper-btn {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    color: var(--luxe-gold);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.luxe-similar-section:hover .luxe-swiper-btn {
    opacity: 1;
    pointer-events: auto;
}

.luxe-swiper-btn:hover {
    background: var(--luxe-gold);
    color: white;
}

.luxe-swiper-btn::after {
    font-size: 1.25rem;
    font-weight: 700;
}

.luxe-swiper-pagination {
    bottom: 0 !important;
}

.luxe-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--luxe-gold);
    opacity: 0.3;
}

.luxe-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.luxe-similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .luxe-content-grid {
        grid-template-columns: 1fr;
    }
    
    .luxe-sidebar-column {
        position: static;
        max-height: none;
    }
    
    .luxe-gallery-container {
        height: 400px;
    }
    
    .luxe-property-title {
        font-size: 2rem;
    }
    
    .luxe-price-main {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .container-wide {
        padding: 0 1rem;
    }

    .container-wide.luxe-property-layout {
        padding: 0 1rem;
    }
    
    .luxe-gallery-section {
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
    
    .luxe-gallery-container {
        height: 280px;
        border-radius: 0;
    }
    
    .luxe-gallery-item:first-child {
        grid-row: span 1;
    }
    
    .luxe-property-title {
        font-size: 1.5rem;
    }
    
    .luxe-price-main {
        font-size: 1.75rem;
    }
    
    .luxe-features-grid {
        grid-template-columns: 1fr;
    }
    
    .luxe-topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .luxe-quick-contact-buttons {
        grid-template-columns: 1fr;
    }
}

/* Mobile Bottom Bar */
.luxe-mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--luxe-gold);
    padding: 0.75rem 1rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .luxe-mobile-bottom-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
    }
    
    body {
        padding-bottom: 80px;
    }
}

.luxe-agent-mini {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 0;
}

.luxe-agent-mini-link {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex: 1;
    min-width: 0;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.luxe-agent-mini-link:hover,
.luxe-agent-mini-link:active {
    opacity: 0.85;
}

.luxe-agent-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--luxe-gold);
    object-fit: cover;
    flex-shrink: 0;
}

.luxe-agent-mini-avatar-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c2518 0%, #b7a56a 100%);
    color: #fefcf5;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.luxe-agent-mini-avatar-fallback.is-hidden {
    display: none;
}

.luxe-agent-mini-info {
    flex: 1;
    min-width: 0;
}

.luxe-agent-mini-info h4 {
    font-size: 0.813rem;
    font-weight: 700;
    color: var(--luxe-dark);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.luxe-agent-mini-info p {
    font-size: 0.688rem;
    color: var(--luxe-text-light);
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.luxe-mobile-bottom-bar .luxe-back-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid var(--luxe-border);
    background: white;
    color: var(--luxe-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.luxe-mobile-bottom-bar .luxe-back-btn:hover,
.luxe-mobile-bottom-bar .luxe-back-btn:active {
    border-color: var(--luxe-border);
    background: var(--bg-light);
}

.luxe-mobile-bottom-bar .luxe-back-btn i {
    font-size: 1.25rem;
}

.luxe-mobile-actions-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.luxe-mobile-actions-group .luxe-action-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid var(--luxe-border);
    background: white;
    color: var(--luxe-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxe-mobile-actions-group .luxe-action-btn:hover,
.luxe-mobile-actions-group .luxe-action-btn:active {
    border-color: var(--luxe-border);
    background: var(--bg-light);
}

.luxe-mobile-actions-group .luxe-action-btn.primary {
    background: white;
    border-color: var(--luxe-border);
    color: var(--luxe-text);
    box-shadow: var(--luxe-shadow);
}

.luxe-mobile-actions-group .luxe-action-btn.primary:hover,
.luxe-mobile-actions-group .luxe-action-btn.primary:active {
    box-shadow: var(--luxe-shadow);
    transform: translateY(-1px);
}

.luxe-mobile-actions-group .luxe-action-btn i {
    font-size: 1.25rem;
}

/* Back to Top - Mobile Adjustment */
@media (max-width: 768px) {
    #backToTop {
        bottom: 5rem !important;
        right: 1rem !important;
        width: 45px !important;
        height: 45px !important;
        z-index: 999 !important;
    }
}

/* Contact Modal - estilos globais em plugins/moderntheme/css/custom.css */
