/* === Upsells under shipping (Elenys) === */
#co-upsells-under-shipping {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

#co-upsells-under-shipping .upsell-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  position: relative;
}

#co-upsells-under-shipping .upsell-row + .upsell-row {
  border-top: 1px solid #f0f0f0;
}

#co-upsells-under-shipping .upsell-name {
  font-weight: 600;
}

#co-upsells-under-shipping .upsell-check {
  width: 18px;
  height: 18px;
}

#co-upsells-under-shipping .upsell-price {
  margin-left: auto;
  font-weight: 700;
  color: #569c34; /* požadovaná zelená */
}

/* "i" icon and tooltip */
.upsell-i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid #9aa6b2;
  border-radius: 50%;
  font-size: 12px;
  line-height: 18px;
  cursor: help;
  user-select: none;
}

.upsell-tooltip {
  position: absolute;
  z-index: 30;
  max-width: 420px;
  background: #111;
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.upsell-tooltip:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 14px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent #111 transparent;
}

/* Optional: make ghost item in recap slightly toned */
.cart-item.ghost-cart-item {
  opacity: .85;
}