/* ==========================================================
   MITZUMA_PDP_RRP_SAVE_V1
   Custom Mitzuma RRP + SAVE presentation.
   ========================================================== */


/* ----------------------------------------------------------
   PDP SAVE badge
   ---------------------------------------------------------- */

body.catalog-product-view
.mitzuma-gallery-card
.mitzuma-pdp-save-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;

    z-index: 40;

    min-width: 68px;
    height: 54px;

    padding: 6px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: #2146CF;
    color: #ffffff;

    border-radius: 8px 0 10px 0;
    box-shadow: none;

    line-height: 1;
    text-align: center;

    pointer-events: none;
}

body.catalog-product-view
.mitzuma-pdp-save-badge__label {
    display: block;

    margin-bottom: 3px;

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: .03em;
}

body.catalog-product-view
.mitzuma-pdp-save-badge__value {
    display: block;

    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}


/*
 * Existing Amasty brand logo currently occupies the
 * top-left of the gallery.
 *
 * Only move it down when the SAVE badge actually exists.
 */

body.catalog-product-view
.mitzuma-gallery-card--rrp-saving
.mitzuma-gallery-brand-slot {
    top: 72px !important;
}


/* ----------------------------------------------------------
   PDP RRP price line
   ---------------------------------------------------------- */

body.catalog-product-view
.mitzuma-pdp-rrp {
    display: flex;
    align-items: center;
    gap: 5px;

    width: 100%;

    margin: 0 0 3px 0;

    font-size: 14px;
    line-height: 1.3;

    color: #6b7280;
}

body.catalog-product-view
.mitzuma-pdp-rrp__label {
    font-weight: 500;
}

body.catalog-product-view
.mitzuma-pdp-rrp__value {
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-thickness: 1px;
}


/* ----------------------------------------------------------
   Mobile
   ---------------------------------------------------------- */

@media (max-width: 639px) {

    body.catalog-product-view
    .mitzuma-gallery-card
    .mitzuma-pdp-save-badge {
        min-width: 58px;
        height: 46px;

        padding: 5px 8px;

        border-radius: 8px 0 8px 0;
    }

    body.catalog-product-view
    .mitzuma-pdp-save-badge__label {
        margin-bottom: 2px;
        font-size: 10px;
    }

    body.catalog-product-view
    .mitzuma-pdp-save-badge__value {
        font-size: 17px;
    }

    body.catalog-product-view
    .mitzuma-gallery-card--rrp-saving
    .mitzuma-gallery-brand-slot {
        top: 58px !important;
    }

    body.catalog-product-view
    .mitzuma-pdp-rrp {
        font-size: 13px;
    }
}

