/**
 * Štýl pre riadok ceny zo Sheetu (nad štandardnou cenou Shoptetu).
 * OPC variant: červený pás podľa predlohy (biely text, jeden riadok).
 */
.sheet-drive-price {
  display: block;
  margin: 0 0 0.35em 0;
  padding: 0;
  font: inherit;
  line-height: inherit;
  color: inherit;
}

/* Červený pás: vľavo popis OPC, vpravo cena + „s DPH“
   font-size nastavuje JS z hlavnej ceny (px + strop); záloha ak by JS nebežal. */
.sheet-drive-price--with-opc {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em 0.75em;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0 0.4em 0;
  padding: 1em;
  font-size: clamp(0.75rem, 0.704rem + 0.28vw, 0.95rem);
  line-height: 1.2;
  color: #fff;
  background: #c4122e;
  border: none;
  border-radius: 12px;
}

.sheet-drive-price__opc {
  flex: 1 1 auto;
  min-width: 0;
  font-family: inherit;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sheet-drive-price__opc-bold {
  font-weight: 700;
}

.sheet-drive-price__opc-suffix {
  font-weight: 400;
}

.sheet-drive-price__tail {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.4em 0.55em;
  flex: 0 0 auto;
  margin-left: auto;
}

.sheet-drive-price__from-sheet {
  font-family: inherit;
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.sheet-drive-price__vat {
  font-family: inherit;
  font-weight: 300;
  font-size: 0.88em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  opacity: 0.95;
}

.sheet-drive-price--muted {
  font-weight: 400;
  font-size: 0.95em;
  color: #555;
}
