:root{
  --ocb-bar-bg:#fff;
  --ocb-text:#111;
  --ocb-muted:rgba(0,0,0,.75);
  --ocb-price:#2e7d32;
  --ocb-strike:rgba(0,0,0,.55);
  --ocb-btn-bg:#2e7d32;
  --ocb-btn-text:#fff;

  --ocb-bar-radius:0px;
  --ocb-pad-y:16px;
  --ocb-pad-x:18px;
  --ocb-gap:16px;

  --ocb-currency-font:22px;
  --ocb-price-font:30px;
  --ocb-strike-font:18px;
  --ocb-label-font:14px;

  --ocb-timer-font:24px;
  --ocb-units-font:10px;
  --ocb-units-ls:1px;

  --ocb-btn-radius:10px;
  --ocb-btn-pad-y:12px;
  --ocb-btn-pad-x:18px;
  --ocb-btn-minw:170px;
}

.ocb-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--ocb-gap);
  padding:var(--ocb-pad-y) var(--ocb-pad-x);
  background:var(--ocb-bar-bg);
  color:var(--ocb-text);
  border-radius:var(--ocb-bar-radius);
  width:100%;
}

.ocb-shadow{ box-shadow:0 6px 18px rgba(0,0,0,.12); }

.ocb-sticky{
  position:sticky;
  top:0;
  z-index:9999;
}

.ocb-left{
  display:flex;
  flex-direction:column;
  gap:6px;
  min-width:240px;
}

.ocb-price{
  display:flex;
  align-items:baseline;
  gap:10px;
  font-weight:700;
  line-height:1;
}

.ocb-currency{
  font-size:var(--ocb-currency-font);
  color:var(--ocb-price);
}

.ocb-current{
  font-size:var(--ocb-price-font);
  color:var(--ocb-price);
}

.ocb-original{
  font-size:var(--ocb-strike-font);
  color:var(--ocb-strike);
  text-decoration:line-through;
  font-weight:600;
}

.ocb-label{
  font-size:var(--ocb-label-font);
  color:var(--ocb-muted);
}

.ocb-timer{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
  flex:1;
}

.ocb-time{
  font-variant-numeric: tabular-nums;
  letter-spacing:1px;
  font-weight:800;
  font-size:var(--ocb-timer-font);
}

.ocb-colon{ margin:0 6px; opacity:.75; }

.ocb-units{
  display:grid;
  grid-template-columns:repeat(4, max-content);
  gap:14px;
  font-size:var(--ocb-units-font);
  letter-spacing:var(--ocb-units-ls);
  color:var(--ocb-muted);
  text-transform:uppercase;
}

.ocb-right{
  display:flex;
  justify-content:flex-end;
  min-width:200px;
}

.ocb-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:var(--ocb-btn-pad-y) var(--ocb-btn-pad-x);
  border-radius:var(--ocb-btn-radius);
  background:var(--ocb-btn-bg);
  color:var(--ocb-btn-text);
  text-decoration:none;
  font-weight:700;
  min-width:var(--ocb-btn-minw);
  box-shadow:0 6px 16px rgba(0,0,0,.12);
  transition:transform .08s ease, box-shadow .08s ease;
}

.ocb-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 20px rgba(0,0,0,.14);
}

@media (max-width: 900px){
  .ocb-bar{ flex-wrap:wrap; }
  .ocb-left{ min-width:unset; width:100%; }
  .ocb-timer{ width:100%; }
  .ocb-right{ width:100%; justify-content:stretch; min-width:unset; }
  .ocb-btn{ width:100%; }
  .ocb-units{ grid-template-columns:repeat(4, 1fr); width:100%; column-gap: 20px; margin-right: 50px; }
}
