:root {
  --evo-brand-primary: #284871;
  --evo-brand-secondary: #284871;
  --evo-brand-accent: #E6EFFB;
  --evo-header-background: #fff;
}
.center-70p { width: 70%; margin: 0 auto; }
.shopnowCTA { flex-wrap: wrap; background: #da171c; }
.shopnowCTArow { background: #da171c; }

/* Adding spacing between form labels */
label {
    display: inline-block;
    font-weight: 400;
    margin-bottom: 12px;
    margin-top: 12px;
}

/* Centering Titles and Adding Styling */
.creditappform h2 {
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}




/* Target both Delivery and Collection “Out of Stock” labels */
span.live-inventory-v2-shipping.text-danger.out-stock,
span.live-inventory-v2-collection.text-danger.out-stock {
    position: relative;
    color: transparent !important; /* Hide original text (not just recolor) */
}

/* Overlay the new text, fully centered */
span.live-inventory-v2-shipping.text-danger.out-stock::after,
span.live-inventory-v2-collection.text-danger.out-stock::after {
    content: "Call to Order";
    color: #000 !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center; /* Keeps “Call to Order” perfectly centered */
}