.no-products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 260px;
    margin: 60px auto 0 auto;
    max-width: 480px;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    color: #333;
    padding: 36px 32px;
    text-align: center;
    gap: 18px;
}

.no-products h2 {
    font-size: 2em;
    font-weight: 600;
    margin-bottom: 8px;
    color: #28a745;
    letter-spacing: 0.5px;
}

.no-products p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 16px;
}

.no-products .btn {
    display: inline-block;
    padding: 10px 28px;
    background: #28a745;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    transition: background 0.2s;
    box-shadow: 0 2px 6px rgba(45,122,70,0.08);
}

.no-products .btn:hover {
    background: #1d8a37;
}
.offer-banner{
    background: #e0f7fa;
     color: #00796b; 
     padding: 8px 16px; 
     border-radius: 6px; 
     margin-bottom: 10px; 
     font-size: 15px; 
     font-weight: 500; 
     display: flex; 
     text-align:center; 
     justify-content:center; 
     align-items: center; 
     gap: 8px;
}
@media (max-width: 768px) {
    .offer-banner{
        gap: 0.4px;
        font-weight: 70; 
        font-size: 13px;
    }
    
}