/* ─── SpaceArcade – Special Price | Frontend Styles ─────────────────────────
   Theme: spacearcade.in — white #ffffff, navy #0d2b5e, gold #f5a623
   ──────────────────────────────────────────────────────────────────────────── */

/* ─── Price wrap ─────────────────────────────────────────────────────────── */
.sa-sp-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.4;
}

/* ─── Regular Price row ──────────────────────────────────────────────────── */
.sa-sp-regular-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sa-sp-regular-price {
    font-size: 15px;
    color: #aaaaaa;
    text-decoration: line-through;
    font-weight: 500;
    text-decoration-color: #bbbbbb;
}

.sa-sp-regular-price .woocommerce-Price-amount {
    color: #aaaaaa;
}

/* ─── Special Price row ──────────────────────────────────────────────────── */
.sa-sp-special-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sa-sp-special-label {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.sa-sp-special-price {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.sa-sp-special-price .woocommerce-Price-amount {
    margin-left: -15px;
    color: #0d2b5e;
    font-size: 24px;
    font-weight: 900;
}

/* ─── Savings badge ──────────────────────────────────────────────────────── */
.sa-sp-savings-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f5a623, #e8941a);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: 3px;
    line-height: 1.4;
    white-space: nowrap;
    box-shadow: 0 1px 4px rgba(245, 166, 35, 0.35);
}

/* ─── Shop/category loop — tighter layout ────────────────────────────────── */
.products .sa-sp-price-wrap {
    gap: 2px;
}

.products .sa-sp-special-price {
    font-size: 18px;
}

.products .sa-sp-special-label {
    font-size: 11px;
}

.products .sa-sp-savings-badge {
    font-size: 11px;
    padding: 2px 7px;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media ( max-width: 480px ) {
    .sa-sp-special-price {
        font-size: 20px;
    }
}

/* ─── Hide REY theme's default discount badge on Special Price products ──────
   Scoped to body.sa-has-special-price so this ONLY applies to products
   that have a Special Price set — never globally, never on regular
   sale-price products. REY renders its discount % badge as .rey-discount
   inside the product summary and sometimes also on the gallery image.
   Both locations are covered here.
   ──────────────────────────────────────────────────────────────────────────── */
body.sa-has-special-price .rey-discount,
body.sa-has-special-price span.rey-discount,
body.sa-has-special-price .woocommerce-product-gallery .rey-discount,
body.sa-has-special-price .product_meta .rey-discount,
body.sa-has-special-price .summary .rey-discount {
    display: none !important;
}
