/* =========================================================
   MORE OFFERS BUTTON
========================================================= */
.more-offers-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #3a0a23;
    border: 1.5px solid #d61b7f;
    color: #ffffff;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.more-offers-btn:hover {
    background-color: rgba(95, 10, 55, 1);
    border-color: #ff3ea5;
    color: #ffffff;
    transform: translateY(-2px);
}

.offer-icon,
.arrow-icon {
    width: 16px;
    height: 16px;
    color: #e94aa7;
    transition: all 0.3s ease;
}

.more-offers-btn:hover .offer-icon,
.more-offers-btn:hover .arrow-icon {
    color: #e94aa7;
}

.offer-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .more-offers-btn {
        width: auto;
        margin: 0 auto;
        justify-content: center;
        text-align: center;
    }
}