body {
    font-family: "Inter", sans-serif;
    color: #000;
}

.small-text { font-size: 13px; font-weight: 400; }
.small-title { font-size: 15px; font-weight: 600; }

.text-orange { color: #f68409; }

.breadcrumb-bar.vendor-header-bg {
    background: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e") center/cover no-repeat;
}
.breadcrumb-bar.vendor-header-bg {
    padding: 155px 0 95px;
}
.section-title {
    font-weight: 600;
    margin-bottom: 12px;
}

.vendor-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 24px 20px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.06);
}

.vendor-image {
    border-radius: 14px;
    width: 100%;
    height: auto;
}

.about-text {
    line-height: 1.8;
    font-size: 13px;
    font-weight: 400;
}

/* Contact Form */
.contact-card {
    background: #ffffff;
    padding: 28px 24px;
    border-radius: 14px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.06);
}

.sticky-form {
    position: sticky;
    top: 90px;
    min-height: 580px;
}

/* Buttons */
.theme-btn {
    background-color: #f68409;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.theme-btn-outline {
    background-color: transparent;
    border: 1px solid #f68409;
    color: #f68409;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 13px;
}

/* Property Filters */
.filter-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn:hover {
    border-color: #f68409;
    color: #f68409;
}

.filter-btn.active {
    border-color: #f68409;
    color: #fff;
    background: #f68409;
}

/* Property Cards */
.property-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.property-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

.property-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-info {
    padding: 14px 14px 12px;
}

/* Tag */
.badge-tag {
    background: #f68409;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
}

/* View button inside card */
.btn-view {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    color: #f68409;
    border: 1px solid #f68409;
    border-radius: 4px;
    padding: 5px 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-view:hover {
    background: #f68409;
    color: #fff;
}

/* No properties text */
.no-properties {
    display: none;
    color: #777;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 991.98px) {
    .sticky-form {
        position: static;
        top: auto;
        min-height: auto;
        margin-top: 10px;
    }
}

@media (max-width: 575.98px) {
    .vendor-card {
        padding: 20px 16px;
    }
    .contact-card {
        padding: 20px 16px;
    }
    .property-card img {
        height: 190px;
    }
}
