/* Modern Banner Styles */
.modern-banner {
    position: relative;
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    height: 180px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.modern-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.banner-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.banner-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.banner-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.banner-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.banner-content strong {
    color: #333;
    font-weight: 600;
}

.banner-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.modern-banner:hover .banner-decoration {
    transform: scale(1.2);
    opacity: 0.2;
}

/* Specific banner styles */
.banner-shipping {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-left: 4px solid #2196f3;
}

.banner-shipping .banner-icon {
    background: linear-gradient(135deg, #2196f3, #1976d2);
}

.banner-shipping .banner-decoration {
    background: #2196f3;
}

.banner-sale {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    border-left: 4px solid #e91e63;
}

.banner-sale .banner-icon {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.banner-sale .banner-decoration {
    background: #e91e63;
}

.banner-products {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border-left: 4px solid #4caf50;
}

.banner-products .banner-icon {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.banner-products .banner-decoration {
    background: #4caf50;
}

/* Responsive design for banners */
@media (max-width: 768px) {
    .modern-banner {
        height: 160px;
        padding: 25px 20px;
        gap: 15px;
    }
    
    .banner-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .banner-content h4 {
        font-size: 16px;
    }
    
    .banner-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .modern-banner {
        height: 140px;
        padding: 20px 15px;
        gap: 12px;
    }
    
    .banner-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .banner-content h4 {
        font-size: 15px;
    }
    
    .banner-content p {
        font-size: 12px;
    }
    
    .banner-decoration {
        width: 80px;
        height: 80px;
    }
}
