.buy-x-pay-y-badge {
    display: inline-block;
    margin-top: 5px;
    padding: 5px 10px;
    background-color: #e2401c;
    color: #fff;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.buy-x-pay-y-badge:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.buy-x-pay-y-badge:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
} 