/* =========================================
   STYLES SPÉCIFIQUES À LA PROMO "MIRACLE"
========================================= */

/* Carte produit Miracle */
ul.products li.product.rpshop-miracle-product {
    border: 2px dashed #cc0000;
    background-color: #fffdf8;
    position: relative;
    overflow: hidden;
}

/* Hover spécifique promo miracle */
ul.products li.product.rpshop-miracle-product:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.15);
}

/* Conteneur interne */
.rpshop-product-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Badge PROMO */
.rpshop-badge-promo {
    position: absolute;
    top: 1px;
    left: 1px;
    background-color: #e5ddc9;
    color: black;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 10;
}

/* Ruban 6+X — large */
.rpshop-promo-ribbon {
    position: absolute;
    top: -10px;
    left: -12px;
    width: 200%;
    background: #cc0000;
    color: white;
    padding: 10px 0;
    transform: rotate(45deg);
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Prix en Avenir Light */
ul.products li.product .price {
    font-family: 'Avenir', 'Avenir Next', sans-serif;
    font-weight: 300;
}

/* Bouton personnalisé */
ul.products li.product .button {
    font-family: 'Avenir', 'Avenir Next', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 13px;
    padding: 8px 16px;
    margin-bottom: 6px !important;
}



/* Responsive */
@media (max-width: 480px) {
    .rpshop-promo-ribbon {
        font-size: 11px;
        top: 0;
        left: -40px;
    }
}

@media (max-width: 768px) {
    .rpshop-badge-promo {
        top: 4px;
        left: 4px;
        font-size: 11px;
        padding: 4px 8px;
    }

    .rpshop-promo-ribbon {
        font-size: 11px;
        top: 0;
        left: -40px;
    }
}