/* Gold "new product" ribbon used by product cards in listings and sliders. */
.product-card.js-product-miniature,
.product-miniature.js-product-miniature {
    position: relative;
}

.ag-product-card-new-flag {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 12;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 7px 14px;
    border-radius: 7px 7px 7px 2px;
    background: linear-gradient(135deg, #f7df8b 0%, #d8af4f 48%, #b98827 100%);
    color: #fff;
    box-shadow: 0 10px 20px rgba(132, 91, 18, 0.24);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    text-shadow: 0 1px 1px rgba(92, 62, 10, 0.28);
    transform: rotate(-9deg);
    transform-origin: center;
    pointer-events: none;
    white-space: nowrap;
}

.ag-product-card-new-flag::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: 0;
    width: 13px;
    height: 13px;
    border-radius: 2px 2px 4px 2px;
    background: linear-gradient(135deg, #b98827 0%, #8f651e 100%);
    transform: skewX(-18deg);
    z-index: -1;
}

body#index .elementor-widget-product-carousel .ag-product-card-new-flag,
body#product .product-slider-wrapper .ag-product-card-new-flag {
    top: 16px;
    left: 16px;
}

@media (max-width: 767px) {
    .ag-product-card-new-flag {
        top: 12px;
        left: 12px;
        min-width: 68px;
        padding: 6px 10px;
        border-radius: 6px 6px 6px 2px;
        font-size: 0.65rem;
        letter-spacing: 0.035em;
        transform: rotate(-8deg);
    }

    .ag-product-card-new-flag::after {
        right: -6px;
        width: 10px;
        height: 10px;
    }
}
