/* Promotion Title Custom - Simple & Reusable */
.promotion-title-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 1rem;
    margin-bottom: 0;
    position: relative;
}

.promotion-title-custom::before {
    content: "🔥";
    font-size: 2rem;
    margin-right: 0.5rem;
}

.promotion-title-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #da291c;
    position: relative;
}

.promotion-title-hot {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: #da291c;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    position: relative;
}

/* Responsive Design */
@media (max-width: 768px) {
    .promotion-title-custom {
        padding: 1rem;
    }

    .promotion-title-custom::before {
        font-size: 1.5rem;
    }

    .promotion-title-text {
        font-size: 1.25rem;
    }

    .promotion-title-hot {
        font-size: 1.25rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .promotion-title-custom::before {
        font-size: 1.25rem;
    }

    .promotion-title-text {
        font-size: 1.125rem;
    }

    .promotion-title-hot {
        font-size: 1.125rem;
        padding: 0.15rem 0.5rem;
    }
}
