.product-detail__quantity-selector
  .quantity-selector__rules
  span
  + span::before {
  content: " + ";
}

/* === Qty: single outer border, no inner borders === */
:root {
    /* tweak the accent once and it follows everywhere */
    --qty-accent: #B92454;
    --qty-height: var(--pdp-cta-height, 56px);
}

.product-detail__quantity-selector {
    width: max-content;
    /* like your fit-content tweak */
    height: auto;
}

.product-detail__quantity-selector theme-input-number {
    display: inline-flex;
    align-items: center;
    gap: 0;
    height: var(--qty-height);
    border: 2px solid var(--qty-accent);
    border-radius: 12px;
    overflow: hidden;
    /* hides any inner element edges */
    background: #fff;
    /* keeps white interior like your tweak */
    box-shadow: none !important;
    /* neutralize any theme shadows */
    
}

/* Buttons: no borders, white background, full height */
.product-detail__quantity-selector theme-input-number button {
    width: 44px;
    /* adjust if you want wider buttons */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: none;
    cursor: pointer;
}

/* Input: no border, centered text, full height */
.product-detail__quantity-selector theme-input-number input {
    height: 100%;
    /* space for 2–3 digits; tweak as needed */
    text-align: center;
    background: #fff !important;
    border: 0 !important;
    outline: none;
    box-shadow: none !important;
    appearance: textfield;
    font-size: 14px;
    font-weight: 800;
    font-family: "Roc Grotesk", sans-serif;
    color: #B92454;
    /* normalize number field look */
}

/* Remove native spinners (Chrome/Safari/Edge) */
.product-detail__quantity-selector theme-input-number input::-webkit-outer-spin-button,
.product-detail__quantity-selector theme-input-number input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Remove native spinners (Firefox) */
.product-detail__quantity-selector theme-input-number input[type="number"] {
    -moz-appearance: textfield;
}

/* Optional: keep disabled minus visual consistent */
.product-detail__quantity-selector theme-input-number button[disabled] {
    opacity: .4;
    cursor: not-allowed;
}

/* Ensure no theme “field” ring overlays this control */
.product-detail__quantity-selector.theme-field,
.product-detail__quantity-selector .field,
.product-detail__quantity-selector .field::after {
    border: 0 !important;
    box-shadow: none !important;
}

/* Compact qty: total width = 96px (includes the 2px border) */
:root {
    --qty-width: 96px;
    /* total control width */
    --qty-btn: 28px;
    /* width for each +/- button */
    --qty-pad: 6px;
    /* horizontal padding inside the input */
}

.product-detail__quantity-selector theme-input-number {
    width: var(--qty-width);
    box-sizing: border-box;
    /* include the 2px border in that 96px */
}

/* Buttons: fixed narrow width */
.product-detail__quantity-selector theme-input-number button {
    flex: 0 0 var(--qty-btn);
    width: var(--qty-btn);
    padding: 0;
}

/* Input: take remaining space, no arbitrary min-width */
.product-detail__quantity-selector theme-input-number input {
    flex: 1 1 auto;
    min-width: 0;
    /* important: override any min */
    padding: 0 var(--qty-pad);
    text-align: center;
}

/* Optional: slightly smaller icons to fit the compact control */
.product-detail__quantity-selector theme-input-number button svg {
    width: 12px;
    height: 12px;
}