.product__bg--pop {
    border-radius: 22px;
}

.shield-new {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    background: #fecc00;
    border-radius: 50%;
    position: absolute;
    z-index: 5;
    left: 15px;
    top: 15px;
    font-size: 12px;
    text-transform: capitalize;
    font-weight: 700;
}

.product__button * {
    font-weight: bold;
}

.product__button--right {
    right: 10px;
}
@media (min-width: 1020px) {
    .product__button--right {
        right: 15px;
    }
}

/* ============================================================ mobile slider */
.card-image {
    position: relative;
}

.slider-mob-content {
    font-family: "Inter", sans-serif;
    position: absolute;
    left: 4%;
    top: 15%;
    bottom: 25%;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-items: start;
    align-items: start;
}

.slider-mob-content--white {
    color: #fff;
}

.slider-mob-content--small {
    width: 40%;
}

.slider-mob-content--big {
    width: 65%;
}

.slider-mob-title {
    font-weight: 900;
    margin-bottom: .25em;
    font-size: calc(16px + 2vw);
    line-height: 1;
}

.slider-mob-text:last-of-type {
    margin-bottom: auto;
    font-size: calc(5px + 2vw);
}

.prize-info-slider-mob {
    display: flex;
    gap: calc(5px + 2vw);
    align-items: center;
}

.prize-info-slider-mob__name {
    width: max-content;
    margin-bottom: 4px;
    font-size: calc(5px + 2vw);
    font-weight: 500;
    line-height: 1;
}

.prize-info-slider-mob__prize {
    width: max-content;
    font-size: calc(11px + 2vw);
    font-weight: 700;
    line-height: 1;
}

.slider-mob-content .timer {
    margin-bottom: 8px;
}

.slider-mob-action {
    position: absolute;
    left: 4%;
    bottom: 4%;
    font-weight: 400;
    font-size: calc(10px + 2vw);
    padding: 0.5em 1.5em;
    border-radius: 10px;
    transition: filter 0.3s ease-in-out;
}

@media (hover: hover) {
    .slider-mob-action:hover {
        filter: brightness(1.05);
    }
}

.slider-mob-action:active {
    filter: brightness(0.95);
}

@media (min-width: 500px) {
    .slider-mob-content--big {
        width: 50%;
    }

    .slider-mob-content {
        top: 25%;
    }
}