/* Mobile view (below 768px) */
@media (max-width: 767px) {

    .ratings-total {
        font-size: 12px !important;
        padding: 3px 5px !important;
    }

    .product-location {
        font-size: 12px !important;
    }

    .loc-city {
        font-size: 12px !important;
    }

    .product-category {
        font-size: 11px !important;
        padding: 2px 6px !important;
    }

    .product-category span {
        font-size: 11px !important;
    }

    .fa-location-dot {
        font-size: 12px !important;
    }

    /* Optional: reduce spacing */
    .d-flex > div {
        margin-right: 4px !important;
    }
}
/* Mobile view */
@media (max-width: 767px) {

    .nav-tabs .nav-link {
        font-size: 12px !important;
        padding: 6px 8px !important;
    }

    /* Optional: make tabs more compact */
    .nav-tabs .nav-item {
        margin-right: 4px;
    }

    /* Optional: reduce Claim button size */
    .nav-tabs .btn-primary {
        font-size: 12px !important;
        padding: 5px 10px !important;
    }
}

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

    h3 {
        font-size: 16px !important;
        line-height: 1.3;
    }

}

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

    .info-grid {
        gap: 8px; /* optional: tighter spacing */
    }

    .info-cell {
        padding: 8px !important;
    }

    .info-cell i {
        font-size: 14px !important;
    }

    .info-title {
        font-size: 13px !important;
        margin-bottom: 2px;
    }

    .info-cell span {
        font-size: 11px !important;
    }

}


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

    .overview-item {
        padding: 8px !important;
    }

    .overview-icon i {
        font-size: 14px !important;
    }

    .overview-content p:first-child {
        font-size: 12px !important; /* label */
        margin-bottom: 2px;
    }

    .overview-content p:last-child {
        font-size: 13px !important; /* value */
        font-weight: 500;
    }

}

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

    .review-form h3 {
        font-size: 16px !important;
    }

    .review-form label {
        font-size: 12px !important;
    }

    .review-form .form-control {
        font-size: 13px !important;
        padding: 8px 10px !important;
    }

    .review-form textarea {
        font-size: 13px !important;
    }

    .review-form .rating span {
        font-size: 16px !important;
    }

    .review-form .btn {
        font-size: 13px !important;
        padding: 8px 14px !important;
    }

}

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

    .faq-area h3 {
        font-size: 16px !important;
    }

    .accordion-text {
        font-size: 13px !important;
    }

    .accordion-body p {
        font-size: 12px !important;
        line-height: 1.4;
    }

    .faq-accordion-icon {
        font-size: 12px !important;
    }

    .accordion-item {
        margin-bottom: 12px !important;
    }

}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.slider-item {
    min-width: 300px; /* adjust based on design */
    max-width: 300px;
    margin-right: 15px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.slider-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.swiper-container {
    position: relative;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100; /* 🔥 IMPORTANT */

    width: 40px;
    height: 40px;

    background: #fff;
    border-radius: 50%;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* Position */
.slider-btn-prev { left: 10px; }
.slider-btn-next { right: 10px; }