/* Shared Frontend Styles for Matjari Blocks */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

.matjari-products-block,
.matjari-categories-block,
.matjari-hero-block,
.matjari-trust-block,
.matjari-testimonials-block,
.matjari-flashsale-block,
.matjari-newsletter-block {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
}

.matjari-section-title {
    margin: 0 0 30px;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
}

/* Carousel Shared */
.matjari-carousel-track,
.matjari-categories-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0;
}

.matjari-carousel-track::-webkit-scrollbar,
.matjari-categories-carousel::-webkit-scrollbar {
    display: none;
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.matjari-product-card,
.matjari-category-card,
.matjari-trust-card,
.matjari-testimonial-card,
.matjari-flashsale-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Product image wrapper */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}
