/* Unique styling for Rishabh Product Banner */
.rishabh-product-banner {
    position: relative;
    width: 100%;
    height: 400px; /* Default banner height for desktop */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 8px; /* Optional rounded edges */
}

.rishabh-product-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Dark overlay for readability */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px; /* Prevent text overflow on small screens */
    box-sizing: border-box;
}

.rishabh-product-banner-title {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    z-index: 2;
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .rishabh-product-banner {
        height: 300px;
    }
    .rishabh-product-banner-title {
        font-size: 28px;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .rishabh-product-banner {
        height: 220px;
    }
    .rishabh-product-banner-title {
        font-size: 22px;
    }
}
