.banner-variant {
    margin-top: 1rem;
    /*width: 220px;*/
    height: 80px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.banner-variant:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.variant-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.variant-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.variant-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.variant-4 {
    background: linear-gradient(135deg, #1aad0c 0%, #5e1010 100%);
    color: white;
}

.variant-5 {
    background: linear-gradient(135deg, #be15d1 0%, #0c9e4e 100%);
    color: white;
}

.variant-6 {
    background: linear-gradient(135deg, #556d81 0%, #2e9225 100%);
    color: white;
}

.variant-logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    flex-shrink: 0;

    font-size: 1.7rem;
}

.variant-name {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

@media screen and (max-width: 575px) {
    .variant-name {
        font-size: 0.9rem;
    }
}