/* ===============================
   WhatsApp FIX – MOBILE VISIBLE
================================ */

.whatsapp {
    position: fixed !important;
    right: 16px !important;
    bottom: 50px !important;
    z-index: 2147483647 !important;
    display: block !important;
    visibility: visible !important;
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
}

/* Small devices */
@media (max-width: 480px) {
    .whatsapp {
        right: 14px !important;
        bottom: 60px !important;
    }

    .whatsapp-icon {
        width: 44px;
        height: 44px;
    }
}

.whatsapp-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    height: 40px;
    /* same premium size */
    margin-top: 14px;

    background-color: #25D366;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;

    border-radius: 10px;
    transition: all 0.3s ease;
    margin-left: 65px;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.35);
}

.active-filter {
    background-color: #D4AF37 !important;
    /* GOLD */
    color: #000 !important;
    border-color: #D4AF37 !important;
}


/* 🔥 Product Card Hover Effect */
.product-hover {
    transition: transform 0.35s ease;
}


/* Image smooth zoom */
.product-hover img {
    transition: transform 0.6s ease;
}

.product-hover:hover img {
    transform: scale(1.06);
}

/* Desktop view */
@media (min-width: 1024px) {
    .hero-logo {
        width: 350px;
        height: 200px;
    }
}

.hero-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-box {
    height: 300px;
    /* mobile */
}

@media (min-width: 768px) {
    .map-box {
        height: 300px;
        /* tablet */
    }
}

@media (min-width: 1024px) {
    .map-box {
        height: 480px;
        /* desktop */
    }
}

/* Toggle button wrapper */
.filter-toggle-wrapper {
    text-align: center;
    margin: 12px 0;
}

/* Hidden initially */
#toggleFilters {
    display: none;
}

/* Collapse animation */
#filterSection {
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.hide-filters {
    max-height: 0;
    overflow: hidden;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border: none;
}