﻿

.img-fluid1 {
    max-width: 300px;
    height: 150px;
}


.popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.popup-content {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 20px;
    position: relative;
    max-width: 400px;
    margin: 10% auto;
}

.close {
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 10px;
    top: 10px;
}

    .close:hover {
        color: #473d27;
    }

h2 {
    text-align: center;
}

form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background-color: #473d27;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    padding: 10px 20px;
    width: 100%;
}

    button:hover {
        background-color: #473d27;
    }

#otpSection {
    display: none;
}

    #otpSection label,
    #otpSection input[type="text"],
    #otpSection button {
        margin-top: 10px;
    }

.popup-content:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    background: linear-gradient(-45deg, #473d27, #473d27);
    border-radius: 4px 0 0 0;
}



/*.stylish-image {
                    border-radius: 50%;
                    border: 2px solid #fff;
                    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                    transition: transform 0.3s ease;
                }

                    .stylish-image:hover {
                        transform: scale(1.1);
                    }*/





/*      .property-overview {
            list-style: none;
            padding: 0;
        }*/

/*.property-overview li {
            background: #f8f8f8;
            border-radius: 6px;
            padding: 8px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: background 0.3s ease;
            margin-bottom: 8px;
            text-align: center;
        }*/

.property-overview li:hover {
    background: #e0e0e0;
}

.property-overview li .property-feature-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.property-overview li img {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

.property-overview li .property-feature {
    font-size: 12px;
    font-weight: bold;
    color: #333;
}

.property-overview li .property-value {
    font-size: 14px;
    color: #444;
    margin: 0;
}

.property-overview {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around; /* Adjust as needed */
    flex-wrap: wrap; /* Wrap items to the next line if needed */
}

    .property-overview li {
        background: #f8f8f8;
        border-radius: 6px;
        padding: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        transition: background 0.3s ease;
        margin-bottom: 8px;
        text-align: center;
        flex: 0 1 200px; /* Adjust width as needed */
    }




/*-----for mainimg slider check--*/

.property-img img.main-img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
}

.slider-nav-thumbnails img.thumbnail-img {
    max-width: 100px; /* Set maximum width for thumbnail images */
    height: auto; /* Maintain aspect ratio */
    margin-right: 5px; /* Add some space between thumbnail images */
}


.property-img {
    width: 100%; /* Ensure image container takes full width */
    overflow: hidden; /* Hide overflow */
}

    .property-img img.main-img {
        width: 100%; /* Set image width to 100% of container */
        height: auto; /* Maintain aspect ratio */
    }

.thumbnail {
    width: auto; /* Allow thumbnails to adjust width */
    float: left; /* Float thumbnails to the left */
    margin-right: 10px; /* Add some space between thumbnails */
}

.thumbnail-img {
    max-width: 100px; /* Set maximum width for thumbnail images */
    height: auto; /* Maintain aspect ratio */
}



.review-form {
    margin-bottom: 1.5em;
}

.review-form input,
.review-form textarea {
    width: 100%;
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 0.5em;
    transition: border-color 0.3s ease;
}

    .review-form input:focus,
    .review-form textarea:focus {
        border-color: #007bff;
        outline: none;
    }

/* Label styling */
.rating-label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
}

/* Star rating styles */
.rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.2em; /* Space between stars */
}

    .rating input {
        display: none;
    }

    .rating label {
        font-size: 2em;
        color: #ccc; /* Unselected star color */
        cursor: pointer;
        transition: color 0.3s ease;
    }

        .rating label::before {
            content: "\2605"; /* Unicode star */
        }

        /* Highlight stars on hover */
        .rating label:hover,
        .rating label:hover ~ label {
            color: #FFD700; /* Highlight color */
        }

    /* Highlight stars when selected */
    .rating input:checked ~ label {
        color: #FFD700; /* Selected star color */
    }

        /* Maintain highlighted stars before selected one */
        .rating input:checked ~ label:hover,
        .rating input:checked ~ label:hover ~ label,
        .rating label:hover ~ input:checked ~ label {
            color: #FFD700; /* Hover highlight for selected stars */
        }

/* Form button styles */
.submit-btn button {
    background-color: #473d27;
    color: #fff;
    padding: 0.75em 1.5em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1em;
    transition: background-color 0.3s ease;
}

    .submit-btn button:hover {
        background-color: #473d27;
    }

/* Responsive adjustments */
@media (max-width: 767px) {
    .review-form {
        margin-bottom: 1em;
    }

    .submit-btn button {
        width: 100%;
    }
}

.see-more-reviews {
    text-align: center;
    margin-top: 1em;
}

/* Hidden reviews */
.hidden-review {
    display: none;
}





.hidden-review {
    display: none;
}

.see-more-reviews {
    text-align: right;
    margin-top: 1em;
}

    .see-more-reviews button {
        font-size: 12px;
        padding: 5px 10px;
        background-color: #473d27;
        border: none;
        border-radius: 5px;
        color: white;
        cursor: pointer;
    }

        .see-more-reviews button:hover {
            background-color: #0056b3;
        }





      /*  new css 26/12/2025*/
.details-page {
    background: #f7f7fb;
}

/* PRICE BAR */
.price-bar {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

.title {
    margin: 6px 0;
    font-weight: 600;
}

.location {
    color: #666;
    font-size: 14px;
}

/* OVERVIEW */
.overview-strip {
    display: flex;
    gap: 22px;
    margin-top: 12px;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

/* IMAGE */
.gallery .main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.thumbs {
    display: flex;
    margin-top: 10px;
}

    .thumbs img {
        width: 90px;
        height: 70px;
        object-fit: cover;
        margin-right: 8px;
        cursor: pointer;
        border-radius: 6px;
        border: 2px solid transparent;
    }

        .thumbs img:hover {
            border-color: #473d27;
        }

/* CARD */
.section-card {
    background: #fff;
    border-radius: 8px;
    padding: 18px;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.section-title {
    font-weight: 600;
    margin-bottom: 12px;
}

/* DETAILS TABLE */
.details-table td {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* AMENITIES */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
    gap: 12px;
}

    .amenities-grid div {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
    }

/* CONTACT BOX */
.contact-box {
    position: sticky;
    top: 90px;
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

    .contact-box h6 {
        font-weight: 600;
    }

.btn-site {
    width: 100%;
    background: #473d27;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.btn-outline {
    width: 100%;
    border: 1px solid #473d27;
    color: #473d27;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
}
.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    font-size: 14px;
}

.detail-item {
    display: flex;
    flex-direction: column;
}

    .detail-item span {
        color: #777;
        font-size: 12px;
    }

    .detail-item strong {
        font-weight: 600;
        color: #222;
    }

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

    .amenity-item i {
        color: #473d2;
        font-size: 16px;
    }


.details-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px 30px;
}
.contact-box {
    position: sticky;
    top: 90px;
}

.gallery .main-img {
    height: 420px;
    object-fit: cover;
}

.amenity-item {
    background: #f9f9f9;
    border-radius: 8px;
}


.mb-details { background:#f6f7fb; }

.mb-card {
    background:#fff;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    overflow:hidden;
}

/* IMAGE */
.mb-image img {
    width:100%;
    height:420px;
    object-fit:cover;
}

.thumbs {
    display:flex;
    padding:10px;
}
.thumbs img {
    width:90px;
    height:70px;
    object-fit:cover;
    margin-right:8px;
    cursor:pointer;
    border-radius:6px;
}

/* SUMMARY */
.mb-summary {
    display:flex;
    gap:25px;
    padding:14px 18px;
    border-bottom:1px solid #eee;
    font-size:14px;
}
.mb-summary div {
    display:flex;
    align-items:center;
    gap:6px;
}

/* FACT GRID */
.mb-facts {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    padding:18px;
}
.fact-item span {
    font-size:12px;
    color:#777;
}
.fact-item strong {
    font-size:14px;
    font-weight:600;
}

/* SECTIONS */
.mb-section {
    background:#fff;
    margin-top:16px;
    padding:18px;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

/* AMENITIES */
.amenities-grid {
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:14px;
}
.amenity-item {
    background:#f9f9f9;
    padding:10px 12px;
    border-radius:8px;
    display:flex;
    gap:10px;
    align-items:center;
}

/* CONTACT */
.contact-box {
    position:sticky;
    top:90px;
    background:#fff;
    padding:18px;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}
.btn-site {
    width:100%;
    background:#473d27;
    color:#fff;
    border:none;
    padding:12px;
    border-radius:6px;
    font-weight:600;
}

.mb-details {
    background: #f6f7fb;
}

.mb-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    overflow: hidden;
}

/* IMAGE */
.mb-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.thumbs {
    display: flex;
    padding: 10px;
}

    .thumbs img {
        width: 90px;
        height: 70px;
        object-fit: cover;
        margin-right: 8px;
        cursor: pointer;
        border-radius: 6px;
    }

/* SUMMARY */
.mb-summary {
    display: flex;
    gap: 25px;
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

    .mb-summary div {
        display: flex;
        align-items: center;
        gap: 6px;
    }

/* FACT GRID */
.mb-facts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    padding: 18px;
}

.fact-item span {
    font-size: 12px;
    color: #777;
}

.fact-item strong {
    font-size: 14px;
    font-weight: 600;
}

/* SECTIONS */
.mb-section {
    background: #fff;
    margin-top: 16px;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* AMENITIES */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(180px,1fr));
    gap: 14px;
}

.amenity-item {
    background: #f9f9f9;
    padding: 10px 12px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* CONTACT */
.contact-box {
    position: sticky;
    top: 90px;
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.btn-site {
    width: 100%;
    background: #473d27;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
}



.mb-more-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    font-size: 14px;
}

.mb-more-item {
    display: flex;
    flex-direction: column;
}

    .mb-more-item span {
        font-size: 12px;
        color: #777;
    }

    .mb-more-item strong {
        font-size: 14px;
        font-weight: 600;
        color: #222;
    }



  /*  code 27/12/2025*/

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-list li {
        display: flex;
        gap: 10px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .why-list i {
        color: #473d2;
        margin-top: 3px;
    }



.about-text {
    font-size: 14px;
    line-height: 1.6;
    max-height: 70px;
    overflow: hidden;
}

    .about-text.expanded {
        max-height: none;
    }

.read-more {
    font-size: 13px;
    font-weight: 600;
    color: #473d2;
    cursor: pointer;
}


.dealer-box {
    display: flex;
    gap: 14px;
    align-items: center;
}

.dealer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}


.price-insight > div {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
}


.rating-box h2 {
    font-size: 32px;
    font-weight: 700;
}

.review-card {
    border-top: 1px solid #eee;
    padding-top: 12px;
    margin-top: 12px;
}
/* Placeholder color black */
.section-card .form-control::placeholder {
    color: #b08d57 !important;
    opacity: 1 !important; /* Firefox ke liye */
}

/* Safari / Edge old support */
.section-card .form-control::-webkit-input-placeholder {
    color: #b08d57 !important;
}

.section-card .form-control:-ms-input-placeholder {
    color: #b08d57 !important;
}

.section-card .form-control::-ms-input-placeholder {
    color: #b08d57 !important;
}


.dealer-box {
    display: flex;
    gap: 14px;
    align-items: center;
}

.dealer-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #eee;
}

.dealer-box h6 {
    font-weight: 600;
    margin-bottom: 2px;
}


.login-card {
    padding: 28px;
    border-radius: 12px;
    position: relative;
}

.close-login {
    position: absolute;
    right: 12px;
    top: 12px;
}

.phone-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    gap: 10px;
}

    .phone-box input {
        border: none;
        outline: none;
        width: 100%;
    }

.otp-box {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

    .otp-box input {
        width: 42px;
        height: 42px;
        text-align: center;
        font-size: 18px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

.resend {
    font-size: 13px;
    color: #1976d2;
}

#btnViewNumber.revealed {
    background: #e0f2fe;
    border-color: #473d27;
    color: #473d27;
    font-weight: 600;
    cursor: default;
}

.section-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.section-title {
    font-size: 17px;
    font-weight: 600;
    color: #1f2937;
}

.about-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #374151;
}
.amenity-item {
    background: linear-gradient(180deg,#fafafa,#f4f4f4);
    border: 1px solid #eee;
}
.why-list li i {
    color: #473d2;
    font-size: 16px;
}
.contact-box {
    border: 1px solid #eee;
    background: linear-gradient(180deg,#fff,#fafafa);
}




/* ===== REVIEWS ===== */
.premium-reviews .subtext {
    font-size: 13px;
    color: #6b7280;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* RATING SUMMARY */
.rating-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 18px 0;
}

.rating-score {
    font-size: 42px;
    font-weight: 700;
}

.rating-stars i {
    color: #facc15;
    margin-right: 2px;
}

.rating-count {
    font-size: 14px;
    color: #555;
}

/* REVIEW CARD */
.review-card.premium {
    background: #fafafa;
    border-radius: 10px;
    padding: 16px;
    margin-top: 14px;
}

.review-top {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    background: #473d27;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-stars i.active {
    color: #facc15;
}

.review-text {
    margin-top: 10px;
    color: #374151;
    font-size: 14px;
}

/* MODAL */
.premium-modal {
    padding: 28px;
    border-radius: 14px;
}

.star-picker {
    display: flex;
    gap: 8px;
    font-size: 30px;
    cursor: pointer;
}

    .star-picker i.active {
        color: #facc15;
    }
.rating-label-text {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}



/* ================== PREMIUM REVIEWS – RESPONSIVE ================== */

/* MOBILE */
@media (max-width: 767px) {

    .premium-reviews {
        padding: 16px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .reviews-header .premium-btn {
            width: 100%;
            text-align: center;
            font-weight: 600;
        }

    .rating-summary {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }

    .rating-score {
        font-size: 36px;
        line-height: 1;
    }

    .rating-stars {
        font-size: 18px;
    }

    .rating-count {
        font-size: 13px;
    }

    .review-card.premium {
        padding: 14px;
    }

    .review-top {
        align-items: flex-start;
    }

    .review-date {
        font-size: 12px;
        margin-left: auto;
        color: #888;
    }

    .avatar {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .review-text {
        font-size: 13.5px;
        line-height: 1.6;
    }
}
@media (max-width: 480px) {

    .premium-modal {
        padding: 20px;
        border-radius: 12px;
    }

    .star-picker {
        justify-content: center;
        font-size: 28px;
    }

    .rating-label-text {
        text-align: center;
        font-size: 13px;
    }

    #reviewTitle,
    #reviewComment {
        font-size: 14px;
    }

    #btnSubmitReview {
        padding: 14px;
        font-size: 15px;
    }
}
@media (max-width: 767px) {

    .mb-summary {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px 14px;
        font-size: 13px;
    }

        .mb-summary div {
            justify-content: center;
            background: #f8f8f8;
            padding: 8px 6px;
            border-radius: 8px;
        }
}
@media (max-width: 767px) {
    .mb-image img {
        height: 240px;
    }

    .thumbs img {
        width: 70px;
        height: 54px;
    }
}
@media (max-width: 767px) {

    .mb-facts {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .fact-item strong {
        font-size: 13px;
    }

    .fact-item span {
        font-size: 11px;
    }
}
@media (max-width: 767px) {
    .mb-more-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .contact-box {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 999;
        border-radius: 12px 12px 0 0;
    }

    body {
        padding-bottom: 90px;
    }
}
@media (max-width: 767px) {
    .price-insight {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}
/* ================= MOBILE CONTACT OWNER – FINAL ================= */
@media (max-width: 767px) {

    .contact-box {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: #ffffff;
        padding: 14px 16px;
        border-radius: 14px 14px 0 0;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        border-top: 1px solid #eee;
    }

        .contact-box h6 {
            display: none; /* mobile pe heading unnecessary */
        }

        .contact-box .btn-site {
            font-size: 16px;
            padding: 14px;
            border-radius: 10px;
        }

    body {
        padding-bottom: 96px; /* CTA ke liye space */
    }
}
@media (max-width: 767px) {
    .contact-box {
        animation: slideUp 0.35s ease;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

/* 🔥 HIDE DESKTOP SIDEBAR ON MOBILE */
@media (max-width: 767px) {
    .mb-details .row > .col-lg-4 {
        display: none !important;
    }
}


.sticky-tabs {
    position: sticky;
    top: 64px;
    z-index: 999;
    background: #fff;
    display: flex;
    gap: 28px;
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
}

    .sticky-tabs .tab {
        font-size: 14px;
        font-weight: 600;
        color: #555;
        text-decoration: none;
        padding-bottom: 6px;
    }

        .sticky-tabs .tab.active {
            color: #473d27;
            border-bottom: 2px solid #473d27;
        }



.shortlist-btn {
    border: 1px solid #ddd;
    background: #3a2323e8;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
}

    .shortlist-btn.active {
        background: #ffecec;
        color: #d32f2f;
        border-color: #f44336;
    }
.feedback-tab {
    position: fixed;
    right: 0;
    top: 45%;
    background: #473d27;
    color: #fff;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px 0 0 6px;
    z-index: 1000;
    writing-mode: vertical-rl;
}
@media (max-width: 767px) {
    .feedback-tab {
        display: none;
    }

    .sticky-tabs {
        overflow-x: auto;
        gap: 20px;
    }
}




/* ===== MEDIA ACTIONS (99ACRES STYLE) ===== */
.media-actions {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.media-btn {
    background: rgba(0,0,0,0.75);
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .media-btn.video {
        background: rgba(71,61,39,0.9);
    }

    .media-btn:hover {
        opacity: 0.9;
    }
.mb-image {
    position: relative;
}
