/* ==========================================
   TRENDING ANIMATION + CARDS
========================================== */
.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.slider-track:hover { animation-play-state: paused; }

@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Product cards */
.product-card {
    min-width: 240px;
    padding: 18px;
    background: #fff;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-card:hover { transform: translateY(-6px); }

/* ==========================================
   CONTACT SECTION
========================================== */
.contact-section {
    background: var(--muted);
    padding: 40px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.contact-box {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(8px);
    padding: 18px 16px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.contact-box:hover { transform: translateY(-4px); }

/* ==========================================
   REVIEWS SECTION
========================================== */
.reviews-section { background: #F2EFE8; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.review-card {
    background: #fff;
    padding: 26px;
    border-radius: 16px;
    transition: 0.3s ease;
}

.review-card:hover { transform: translateY(-6px); }

/* ==========================================
   LOGIN MODAL
========================================== */
.login-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.35);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.login-content {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    width: 90%;
    max-width: 380px;
}

/* ==========================================
   PRODUCT MODAL
========================================== */
.product-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.product-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    width: 90%;
    max-width: 420px;
}

/* ==========================================
   FLOATING BUTTONS
========================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 14px 16px;
    border-radius: 50%;
    font-size: 1.7rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #0b5a40;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    gap: 6px;
}

/* ==========================================
   MOBILE OPTIMIZATION BUBBLE
========================================== */
@media (max-width: 600px) {
    body { overflow-x: hidden; }

    .contact-grid,
    .reviews-grid {
        grid-template-columns: 1fr !important;
    }

    .floating-cart {
        left: 90%;
        transform: translateX(-50%);
        bottom: 100px;
    }
}
