/* ========================================
   COMMON
======================================== */

.property-widget-loading,
.property-widget-error,
.property-widget-empty {
    padding: 30px;
    text-align: center;
}


.property-card {
    height: 100%;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #00000021;
}


.property-image {
    height: max-content;
    position: relative;
    overflow: hidden;
    background: #111827;
}


.property-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.property-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}


.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.90)
    );
}


.property-top-content {
    position: absolute;
    inset: 0;
    padding: 15px;
    z-index: 2;
}


.property-status {
    color: #5bd4f3;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.property-ask-price {
    margin-top: 8px;
    color: #fff500;
    font-size: 28px;
    font-weight: 800;
}


.property-operating {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: #67d4e9;
    font-size: 12px;
    font-weight: 600;
}


.property-content {
    padding: 14px;
    min-height: 120px;
}


.property-main-price {
    margin-bottom: 8px;
    color: #000000;
    font-size: 20px;
    font-weight: 600;
}


.property-title {
    margin: 0;
   color: #374151;
    font-size: 16px;
}


.property-actions {
    display: flex;
    gap: 8px;
    padding: 0 14px 14px;
}


.property-btn {
    flex: 1;
    padding: 6px 10px;
    border-radius: 30px;
    background: #132333;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    border: 0;
    cursor: pointer;
}


.property-btn:hover {
    background: #1ca7e0;
}


.nda-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}


/* ========================================
   GRID LAYOUT
======================================== */

.property-grid {
    display: grid;
    grid-template-columns: repeat(
        var(--property-columns, 4),
        minmax(0, 1fr)
    );
    gap: 20px;
}


.property-grid .property-item {
    min-width: 0;
}


/* ========================================
   OWL CAROUSEL
======================================== */

.property-carousel .property-item {
    padding: 0 2px;
}


.property-carousel .owl-stage {
    display: flex;
}


.property-carousel .owl-item {
    display: flex;
}


.property-carousel .property-item {
    width: 100%;
}


.property-carousel .owl-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    pointer-events: none;
}


.property-carousel .owl-nav button {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #132333 !important;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    font-size: 28px !important;
}


.property-carousel .owl-nav .owl-prev {
    left: -20px;
}


.property-carousel .owl-nav .owl-next {
    right: -20px;
}


.property-carousel .owl-dots {
    margin-top: 15px;
    text-align: center;
}


/* ========================================
   RESPONSIVE GRID
======================================== */

@media (max-width: 1199px) {

    .property-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


@media (max-width: 991px) {

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 575px) {

    .property-grid {
        grid-template-columns: repeat(1, 1fr);
    }


    /*.property-image {*/
    /*    height: 240px;*/
    /*}*/

}
