.offer-tags-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 10;
}

.offer-tag {
    display: inline-flex;
    height: 28px;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: linear-gradient(90deg, #C6A867 0%, #CCA655 100%);
}

.offer-tag.offer-tag-red {
    background: linear-gradient(98deg, #FF0138 0%, #990127 123.28%);
}

.offer-tag.offer-tag-blue {
    background: linear-gradient(90deg, #019EFF 0.23%, #1668A2 40.05%, #001EE0 91.58%);
}

.offer-tag.offer-tag-orange {
    background: linear-gradient(90deg, #CD6E2A 0%, #F5AA40 100%);
}

.offer-tag.offer-tag-green {
    background: linear-gradient(98deg, #45BF4F 0%, #1A591F 123.28%);
}

.offer-tag.offer-tag-black {
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(3px);
}

.offer-tag img {
    max-width: 16px;
    max-height: 16px;
}

.offer-tag p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

@media (max-width: 1000px) {
    .offer-tags-container {
        top: 10px;
        left: 10px;
    }
}
