/* Property Showcase Styles */
.property-showcase {
    margin: 40px 0 !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
.property-showcase .showcase-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 24px !important;
}
.property-showcase .showcase-title {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    color: #111 !important;
}
.property-showcase .showcase-view-all {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0066cc !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.property-showcase .showcase-view-all:hover {
    color: #004499 !important;
}
.property-showcase .showcase-container {
    position: relative !important;
    overflow: visible !important;
}
.property-showcase.showcase-slider .showcase-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 24px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    padding: 4px !important;
}
.property-showcase.showcase-slider .showcase-track::-webkit-scrollbar {
    display: none !important;
}
.property-showcase.showcase-slider .showcase-card {
    flex: 0 0 320px !important;
    min-width: 320px !important;
    max-width: 320px !important;
}
.property-showcase.showcase-grid .showcase-track {
    display: grid !important;
    gap: 24px !important;
}
.property-showcase.showcase-grid.columns-2 .showcase-track {
    grid-template-columns: repeat(2, 1fr) !important;
}
.property-showcase.showcase-grid.columns-3 .showcase-track {
    grid-template-columns: repeat(3, 1fr) !important;
}
.property-showcase.showcase-grid.columns-4 .showcase-track {
    grid-template-columns: repeat(4, 1fr) !important;
}
.property-showcase .showcase-nav {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: white !important;
    border: 1px solid #ddd !important;
    font-size: 24px !important;
    color: #333 !important;
    cursor: pointer !important;
    z-index: 10 !important;
    transition: all 0.2s !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}
.property-showcase .showcase-nav:hover {
    background: #f5f5f5 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
}
.property-showcase .showcase-nav:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
}
.property-showcase .showcase-prev {
    left: -24px !important;
}
.property-showcase .showcase-next {
    right: -24px !important;
}
.property-showcase .showcase-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 20px !important;
}
.property-showcase .showcase-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: #ddd !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    padding: 0 !important;
}
.property-showcase .showcase-dot.active {
    background: #0066cc !important;
}
.property-showcase .showcase-card {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
    display: block !important;
}
.property-showcase .showcase-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
}
.property-showcase .showcase-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
}
.property-showcase .showcase-card-image {
    position: relative !important;
    aspect-ratio: 4/3 !important;
    overflow: hidden !important;
    background: #f0f0f0 !important;
    width: 100% !important;
}
.property-showcase .showcase-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}
.property-showcase .showcase-card-image .no-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100% !important;
    color: #999 !important;
    font-size: 14px !important;
}
.property-showcase .showcase-status {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    z-index: 5 !important;
}
.property-showcase .status-active,
.property-showcase .status-new {
    background: #22c55e !important;
    color: white !important;
}
.property-showcase .status-coming-soon {
    background: #3b82f6 !important;
    color: white !important;
}
.property-showcase .status-contingent {
    background: #8b5cf6 !important;
    color: white !important;
}
.property-showcase .status-under-agreement {
    background: #f59e0b !important;
    color: white !important;
}
.property-showcase .status-sold {
    background: #ef4444 !important;
    color: white !important;
}
.property-showcase .showcase-card-content {
    padding: 16px !important;
}
.property-showcase .showcase-price {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 4px !important;
}
.property-showcase .showcase-address {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin: 0 0 8px 0 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.property-showcase .showcase-details {
    display: flex !important;
    gap: 12px !important;
    font-size: 13px !important;
    color: #666 !important;
}
.property-showcase .showcase-details span:not(:last-child)::after {
    content: "•" !important;
    margin-left: 12px !important;
    color: #ccc !important;
}
.property-showcase-empty {
    text-align: center !important;
    padding: 40px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    color: #666 !important;
}
@media (max-width: 1024px) {
    .property-showcase .showcase-nav {
        display: none !important;
    }
    .property-showcase.showcase-grid.columns-4 .showcase-track {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 768px) {
    .property-showcase .showcase-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .property-showcase .showcase-title {
        font-size: 24px !important;
    }
    .property-showcase.showcase-slider .showcase-card {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        max-width: 280px !important;
    }
    .property-showcase.showcase-grid.columns-3 .showcase-track,
    .property-showcase.showcase-grid.columns-4 .showcase-track {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .property-showcase.showcase-grid.columns-2 .showcase-track,
    .property-showcase.showcase-grid.columns-3 .showcase-track,
    .property-showcase.showcase-grid.columns-4 .showcase-track {
        grid-template-columns: 1fr !important;
    }
    .property-showcase.showcase-slider .showcase-card {
        flex: 0 0 260px !important;
        min-width: 260px !important;
        max-width: 260px !important;
    }
}
